diff options
-rw-r--r-- | npc/005-1/zegas.txt | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/npc/005-1/zegas.txt b/npc/005-1/zegas.txt index bc67a8149..b7d5c5a4c 100644 --- a/npc/005-1/zegas.txt +++ b/npc/005-1/zegas.txt @@ -22,7 +22,7 @@ L_Meet: setq CandorQuest_Barrel, 1; menu l("Sure."),L_Start, - l("Maybe some other time."),L_close; + l("Maybe some other time."),L_Close; L_Find: mesn; @@ -31,18 +31,18 @@ L_Find: mesq l("Please help me find the bug bomb Eomie gave us is in one of the store room barrels?"); menu l("Sure."),L_Start, - l("Maybe some other time."),L_close; + l("Maybe some other time."),L_Close; L_Start: mesn; mesq l("Thanks, come back and see me once you found the bug bomb and set it off."); setq CandorQuest_Barrel, 2; - goto L_close; + goto L_Close; L_Looking: mesn; mesq l("Still haven't found it? Well keep looking I know it's in there, somewhere."); - goto L_close; + goto L_Close; L_QuestEnd: mesn; @@ -51,14 +51,14 @@ L_QuestEnd: getexp 50, 0; Zeny = (Zeny + 50); setq CandorQuest_Barrel, 4; - goto L_close; + goto L_Close; L_Thanks: mesn; mesq l("Thanks for Helping with clear out the store room!"); - goto L_close; + goto L_Close; -L_close: +L_Close: close; OnInit: @@ -75,19 +75,19 @@ OnInit: menu l("Yes."), L_Reset, l("Barrel"),L_Cheat, - l("No."), L_close; + l("No."), L_Close; L_Reset: setq CandorQuest_Barrel, 0; mes l("Reset!"); - goto L_close; + goto L_Close; L_Cheat: setq CandorQuest_Barrel, 3; mes l("Quest Complete!"); - goto L_close; + goto L_Close; -L_close: +L_Close: showavatar; // hide close; |