diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-05-19 18:52:19 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-05-19 18:52:19 -0300 |
commit | f92b2d13b09cc87736b15a878f2d0255f7474433 (patch) | |
tree | d417c19a71780658d967f6eedf9331ce26897cf6 /npc/004-3-1/falkrun.txt | |
parent | 714d3807ccfe48049bf80027d29b53bf76d96b16 (diff) | |
download | serverdata-f92b2d13b09cc87736b15a878f2d0255f7474433.tar.gz serverdata-f92b2d13b09cc87736b15a878f2d0255f7474433.tar.bz2 serverdata-f92b2d13b09cc87736b15a878f2d0255f7474433.tar.xz serverdata-f92b2d13b09cc87736b15a878f2d0255f7474433.zip |
Testing The Episode. It is fine, but one part is a tad too hard
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); |