diff options
Diffstat (limited to 'world/map/npc/xmas/2011/chiefHelper.txt')
-rw-r--r-- | world/map/npc/xmas/2011/chiefHelper.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/world/map/npc/xmas/2011/chiefHelper.txt b/world/map/npc/xmas/2011/chiefHelper.txt index 7be2f143..6324c1c9 100644 --- a/world/map/npc/xmas/2011/chiefHelper.txt +++ b/world/map/npc/xmas/2011/chiefHelper.txt @@ -48,8 +48,12 @@ goto L_Close; L_Helping: + callfunc "xmas2011points"; mes "[Chief Warrick]"; - mes "\"I hope you're doing well.\""; + if ((@sabotagepoints + @helppoints) < $@xmas2011_totalpoints) + mes "\"I hope you're doing well.\""; + if ((@sabotagepoints + @helppoints) == $@xmas2011_totalpoints) + mes "\"It seems we're catching up with the tasks to do, thanks to your help.\""; goto L_Close; L_NoEvent: @@ -73,6 +77,8 @@ L_NoHelp: goto L_Close; L_Close: + set @sabotagepoints, 0; + set @helppoints, 0; close; } |