diff options
Diffstat (limited to 'npc/025-4/clauquer.txt')
-rw-r--r-- | npc/025-4/clauquer.txt | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/npc/025-4/clauquer.txt b/npc/025-4/clauquer.txt index 68fdeeba..d61a5b4a 100644 --- a/npc/025-4/clauquer.txt +++ b/npc/025-4/clauquer.txt @@ -1,8 +1,12 @@ 025-4.gat,30,30,0 script Clauquer 169,{ - if (Rossy_Quest >= 15) goto L_Done; +// if (Rossy_Quest >= 15) goto L_Hmmm Character already talked to Clauquer up to the end of the conversation. +// if (Rossy_Quest == 14) goto L_Help Character just entered the Main HAll and still needs to talk to Clauquer to be able to enter the Battle Caves. +// if (Rossy_Quest <= 13) goto L_Huh Character is not supposed to be here, can be because of the use of GM powers. + + if (Rossy_Quest >= 15) goto L_Hmmm; if (Rossy_Quest == 14) goto L_Help; - if (Rossy_Quest <= 13) goto L_Hmmm; + if (Rossy_Quest <= 13) goto L_Huh; L_Help: mes "[Clauquer]"; @@ -49,7 +53,7 @@ L_Hmmm: mes "It seems you know everything you should know. Dangerous secrets must be kept... You now know what to do!"; close; -L_Done: +L_Huh: mes "[Clauquer]"; mes "Why are you here? Get out."; close; |