diff options
author | Ali-G <gauvain.dauchy@free.fr> | 2011-06-08 08:04:58 +0200 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2011-06-12 14:45:23 -0700 |
commit | 542245ac51681dec73891058498e526ac74117bb (patch) | |
tree | 7bc4f3797711ec4583aa4c3442f51ccc241d47f2 /npc/025-4/clauquer.txt | |
parent | 824cfe8c821b802e4c856aeda5c5383ce01b8a85 (diff) | |
download | serverdata-542245ac51681dec73891058498e526ac74117bb.tar.gz serverdata-542245ac51681dec73891058498e526ac74117bb.tar.bz2 serverdata-542245ac51681dec73891058498e526ac74117bb.tar.xz serverdata-542245ac51681dec73891058498e526ac74117bb.zip |
Fixed something Dark_Mage thought was a mistake. Added a description to make him understand.
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; |