diff options
Diffstat (limited to 'npc/025-4/clauquer.txt')
-rw-r--r-- | npc/025-4/clauquer.txt | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/npc/025-4/clauquer.txt b/npc/025-4/clauquer.txt index d61a5b4a..2a38bce7 100644 --- a/npc/025-4/clauquer.txt +++ b/npc/025-4/clauquer.txt @@ -3,8 +3,8 @@ // 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 >= 16 || FLAGS & FLAG_ROSSI_COMPLETED) goto L_Rescued; + if (Rossy_Quest == 15) goto L_Hmmm; if (Rossy_Quest == 14) goto L_Help; if (Rossy_Quest <= 13) goto L_Huh; @@ -61,4 +61,8 @@ L_Huh: L_No: close; +L_Rescued: + mes "[Clauquer]"; + mes "Put something here. He talks about you rescuing the girl."; + close; } |