Fix for quest 10424.
Contributed by sinsegi001.
This commit is contained in:
		| @@ -1,4 +1,4 @@ | ||||
| <html><body>Captain Andrei:<br> | ||||
| Huh? <font color="LEVEL">Kekropus</font> sent you here again, then. Good! Let me cut to the chase. We just received a report from <font color="LEVEL">Lugonnes</font>, one of the Giant's Minions. Apparently a clone of a monster called <font color="LEVEL">Sakum</font> is heading right for the <font color="LEVEL">Ketra Orc Outpost</font>.<br>Are you at all familiar with <font color="LEVEL">Sakum</font>?<br> | ||||
| <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10424_KekropusLetterBelosWhereabouts 31292-02.html">Just a little...</Button> | ||||
| <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10424_KekropusLetterBelosWhereabouts 31292-02.htm">Just a little...</Button> | ||||
| </body></html> | ||||
| @@ -1,4 +1,4 @@ | ||||
| <html><body>Captain Andrei:<br> | ||||
| What?! You're the one who defeated <font color="LEVEL">Sakum</font> in the Wasteland? I'm sorry that I didn't recognize a hero like you. I guess <font color="LEVEL">Kekropus</font> trusted you for a reason! You're something of a legend around here.<br> | ||||
| <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10424_KekropusLetterBelosWhereabouts 31292-03.html">"Tell me about the monster."</Button> | ||||
| <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10424_KekropusLetterBelosWhereabouts 31292-03.htm">"Tell me about the monster."</Button> | ||||
| </body></html> | ||||
| @@ -1,4 +1,4 @@ | ||||
| <html><body>Giant's Minion Lugonnes:<br> | ||||
| Well met! <font color="LEVEL">Kekropus</font> sent word of your visit, saying that you defeated <font color="LEVEL">Sakum</font> in the <font color="LEVEL">Wasteland</font>. After that, this should be no trouble for you at all... Well, maybe a little.<br> | ||||
| <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Q10424_KekropusLetterBelosWhereabouts 33852-02.html">"Tell me about the monster."</Button> | ||||
| <Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10424_KekropusLetterBelosWhereabouts 33852-02.htm">"Tell me about the monster."</Button> | ||||
| </body></html> | ||||
| @@ -53,7 +53,7 @@ public final class Q10424_KekropusLetterBelosWhereabouts extends LetterQuest | ||||
| 		addSeeCreatureId(INVISIBLE_NPC); | ||||
| 		setIsErtheiaQuest(false); | ||||
| 		setLevel(MIN_LEVEL, MAX_LEVEL); | ||||
| 		setStartQuestSound("Npcdialog1.kekrops_quest_9"); | ||||
| 		setStartQuestSound("Npcdialog1.kekrops_quest_10"); | ||||
| 		setStartLocation(SOE_TOWN_OF_GODDARD, TELEPORT_LOC); | ||||
| 		registerQuestItems(SOE_TOWN_OF_GODDARD, SOE_KETRA_ORC_OUTPOST); | ||||
| 	} | ||||
| @@ -70,12 +70,12 @@ public final class Q10424_KekropusLetterBelosWhereabouts extends LetterQuest | ||||
| 		String htmltext = null; | ||||
| 		switch (event) | ||||
| 		{ | ||||
| 			case "31292-02.html": | ||||
| 			case "31292-02.htm": | ||||
| 			{ | ||||
| 				htmltext = event; | ||||
| 				break; | ||||
| 			} | ||||
| 			case "31292-03.html": | ||||
| 			case "31292-03.htm": | ||||
| 			{ | ||||
| 				if (qs.isCond(1)) | ||||
| 				{ | ||||
| @@ -86,7 +86,7 @@ public final class Q10424_KekropusLetterBelosWhereabouts extends LetterQuest | ||||
| 				} | ||||
| 				break; | ||||
| 			} | ||||
| 			case "33852-02.html": | ||||
| 			case "33852-02.htm": | ||||
| 			{ | ||||
| 				if (qs.isCond(2)) | ||||
| 				{ | ||||
| @@ -121,11 +121,11 @@ public final class Q10424_KekropusLetterBelosWhereabouts extends LetterQuest | ||||
| 		{ | ||||
| 			if ((npc.getId() == ANDREI) && st.isCond(1)) | ||||
| 			{ | ||||
| 				htmltext = "31292-01.html"; | ||||
| 				htmltext = "31292-01.htm"; | ||||
| 			} | ||||
| 			else if (st.isCond(2)) | ||||
| 			{ | ||||
| 				htmltext = npc.getId() == ANDREI ? "31292-04.html" : "33852-01.html"; | ||||
| 				htmltext = npc.getId() == ANDREI ? "31292-04.htm" : "33852-01.htm"; | ||||
| 			} | ||||
| 		} | ||||
| 		return htmltext; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 MobiusDev
					MobiusDev