diff options
-rw-r--r-- | npc/003-1/ched.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/npc/003-1/ched.txt b/npc/003-1/ched.txt index 41d977cf4..0ad1e8e83 100644 --- a/npc/003-1/ched.txt +++ b/npc/003-1/ched.txt @@ -50,6 +50,8 @@ mesc l("Your Score: @@", @ched), 1; mes ""; ScoreSSC; + closedialog; + goodbye; close; } @@ -61,7 +63,7 @@ @ched=getq2(SQuest_Ched); .@claimed=getq3(SQuest_Ched); // Required to prevent rewriting scoreboards - if (season() == SUMMER && @ched <= 0) goto L_Summer; + if (season() == SUMMER && !$@GM_OVERRIDE) goto L_Summer; if ((season() == AUTUMN && !.@claimed) || is_gm()) goto L_Autumn; hello; end; @@ -107,6 +109,8 @@ L_Autumn: // TODO: Do whatever reward whatever way you want whatever whatevers. Zeny=Zeny+@ched; setq3 SQuest_Ched, 1; + closedialog; + goodbye; close; OnInit: |