diff options
Diffstat (limited to 'npc/004-3-1/falkrun.txt')
-rw-r--r-- | npc/004-3-1/falkrun.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/004-3-1/falkrun.txt b/npc/004-3-1/falkrun.txt index 162e92402..d719f1bb9 100644 --- a/npc/004-3-1/falkrun.txt +++ b/npc/004-3-1/falkrun.txt @@ -123,10 +123,10 @@ L_Episode: if (getq(LoFQuest_EPISODE) != 11) goto L_Main; if (getq3(LoFQuest_EPISODE) && - mobcount(getmap(), all) <= 0) + mobcount(getmap(), "all") <= 0) goto L_EpFinish; if (getq3(LoFQuest_EPISODE) && - mobcount(getmap(), all) > 0) { + mobcount(getmap(), "all") > 0) { npctalk l("Good luck, %s! There are more monsters nearby!", strcharinfo(0)); end; } @@ -152,6 +152,7 @@ L_Episode: SC_Bonus(90, SC_KAIZEL, 80); percentheal 100, 100; .@m$ = getmap(); + // FIXME TODO - TOO DIFFICULT, split them a bit apart monster(.@m$, 42, 31, "Lost", BlueSlimeMother, 1); monster(.@m$, 45, 31, "Lost", CopperSlimeMother, 1); monster(.@m$, 43, 32, "Lost", YellowSlimeMother, 1); |