diff options
Diffstat (limited to 'npc/024-16/generals.txt')
-rw-r--r-- | npc/024-16/generals.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/npc/024-16/generals.txt b/npc/024-16/generals.txt index b5a0ddfcb..5d051de52 100644 --- a/npc/024-16/generals.txt +++ b/npc/024-16/generals.txt @@ -19,6 +19,13 @@ function script FrostiaTaskMaster { setq .@q, .@q1, .@q2, 0; } + // Maybe there is no monster to kill + if (!.@q2) { + mesn; + mesq l("You've already completed this quest today. Try again tomorrow."); + return true; + } + // Maybe you finished the quest? if (.@q3 >= 100) { mesn; @@ -34,13 +41,6 @@ function script FrostiaTaskMaster { return false; } - // Maybe there is no monster to kill - if (!.@q2) { - mesn; - mesq l("You've already completed this quest today. Try again tomorrow."); - return true; - } - mesn; mesq l("So, please kill @@/100 @@ for us and make the world a safer place!", .@q3, getmonsterlink(.@q2)); return false; |