Q10472_WindsOfFate_EncroachingShadows improvements.

Contributed by Stayway.
This commit is contained in:
MobiusDev 2016-03-29 06:28:19 +00:00
parent 090ac70e0b
commit 20f842a24e
2 changed files with 4 additions and 8 deletions

View File

@ -1,5 +1,5 @@
<html><body>Karla:<br> <html><body>Karla:<br>
<font color="LEVEL">%charname%</font>? You look so much stronger than before! I heard that you're on a mission after some Counterfeit Atelia. You've become quite a reliable warrior!<br> <font color="LEVEL">%name%</font>? You look so much stronger than before! I heard that you're on a mission after some Counterfeit Atelia. You've become quite a reliable warrior!<br>
But what happened to you? I can feel the Giants' power swirling inside you.<br> But what happened to you? I can feel the Giants' power swirling inside you.<br>
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10472_WindsOfFate_EncroachingShadows 33933-02.html">"Well..."</Button> <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10472_WindsOfFate_EncroachingShadows 33933-02.html">"Well..."</Button>
</body></html> </body></html>

View File

@ -440,10 +440,7 @@ public class Q10472_WindsOfFate_EncroachingShadows extends Quest
{ {
final String html = getHtm(player.getHtmlPrefix(), "33491-01.html"); final String html = getHtm(player.getHtmlPrefix(), "33491-01.html");
return html.replace("%name%", player.getName()); return html.replace("%name%", player.getName());
}
htmltext = "33491-01.html";
{
break;
} }
} }
case KARLA: case KARLA:
@ -453,15 +450,14 @@ public class Q10472_WindsOfFate_EncroachingShadows extends Quest
final String html = getHtm(player.getHtmlPrefix(), "33933-01.html"); final String html = getHtm(player.getHtmlPrefix(), "33933-01.html");
return html.replace("%name%", player.getName()); return html.replace("%name%", player.getName());
} }
htmltext = "33933-01.html";
}
if (qs.isCond(19)) if (qs.isCond(19))
{ {
htmltext = "33933-04.html"; htmltext = "33933-04.html";
} }
break; break;
}
} }
return htmltext; return htmltext;
} }