Quest 10333 condition check.

Contributed by spider.
This commit is contained in:
MobiusDev 2015-08-03 21:23:30 +00:00
parent cb4955bafa
commit a90ac81efc

View File

@ -110,11 +110,14 @@ public class Q10333_DisappearedSakum extends Quest
} }
case "33508-03.html": case "33508-03.html":
{ {
giveAdena(player, ADENA_REWARD, true); if (qs.isCond(3))
addExpAndSp(player, EXP_REWARD, SP_REWARD); {
qs.exitQuest(false); giveAdena(player, ADENA_REWARD, true);
htmltext = event; addExpAndSp(player, EXP_REWARD, SP_REWARD);
break; qs.exitQuest(false);
htmltext = event;
break;
}
} }
} }
return htmltext; return htmltext;