Quote
I think the best thing to do is to paste some more of your code up here, as it's difficult to find the problem like this.
All right, I will do that
Well, what should happen is this: There are three ways to end the dialogue. The first is to save the
NPC:
DAREAN.D
IF ~~ THEN BEGIN 4
SAY ~Hn, that's too bad. In that case I'll leave for now.~
IF ~~ THEN DO ~SetGlobal("SavedLayne","GLOBAL",1)~ EXIT
END
Then this part of the script should be triggered:
DAREAN.BCS
IF
InParty("Layne")
Allegiance(Myself,NEUTRAL)
Global("SavedLayne","GLOBAL",1)
THEN
RESPONSE #100
EscapeArea()
END
If I choose this option, he leaves and when he's out of sight this script is triggered...
LAYNE.BCS
IF
InParty(Myself)
!See("Darean")
Global("SavedLayne","GLOBAL",1)
!Global("EndLayne","GLOBAL",1)
THEN
RESPONSE #100
Dialogue(Player1)
END
...and this dialog begins.
LAYNE.D
IF ~Global("SavedLayne","GLOBAL",1) !Global("LayneTalked","GLOBAL",1)~ THEN BEGIN LS1
SAY ~Thank you, <CHARNAME. I think I owe you an explanation.~
...
This part works out nicely.
The second path starts like this:
DAREAN.D
IF ~~ THEN BEGIN 7
SAY ~No more hide and seek, girl. I'll get your head now.~
IF ~~THEN DO ~SetGlobal("LeftLayne","GLOBAL",1)~ EXIT
END
Then Layne should leave the party and attack Darean, while Darean should just attack her:
DAREAN.BCS
IF
!InParty("Layne")
Allegiance(Myself,NEUTRAL)
Global("LeftLayne","GLOBAL",1)
THEN
RESPONSE #100
Attack("Layne")
END
IF
!InParty("Layne")
Allegiance(Myself,NEUTRAL)
Global("LeftLayne","GLOBAL",1)
Dead("Layne")
THEN
RESPONSE #100
Dialogue(Player1)
END
LAYNE.BCS
IF
InParty(Myself)
Global("LeftLayne","GLOBAL",1)
THEN
RESPONSE #100
LeaveParty()
Attack("Darean")
END
IF
!InParty(Myself)
Global("LeftLayne","GlOBAL",1)
Killed("Darean")
THEN
RESPONSE #100
Dialogue(Player1)
END
After the fight, the survivor has a line before s/he leaves the area:
Darean.D
IF ~Global("LeftLayne","GLOBAL",1)~ THEN BEGIN 9
SAY ~Good bye, <CHARNAME>. We won't meet again.~
IF ~~THEN DO ~SetGlobal("EndLayne","GLOBAL",1) EscapeArea()~ EXIT
END
LAYNE.D
IF ~Global("LeftLayne","GLOBAL",1)~ THEN BEGIN ED7
SAY ~One day you will pay for this, <CHARNAME>.~
IF ~~ THEN DO ~SetGlobal("EndLayne","GLOBAL",1) EscapeArea()~ EXIT
END
What happens is that Layne leaves the party and attacks Darean, but he makes his little speech and leaves. I never found out what would happen if Layne killed Darean, though.
The third way for the PC is to turn against Layne. She wouldn't be too pleased, of course...
LAYNE.D
IF ~~ THEN BEGIN ED6
SAY ~No. NO! You won't get me without a fight!~
IF ~~ THEN DO ~SetGlobal("SoldLayne","GLOBAL",1)~ EXIT
END
Then she turns hostile while Darean attacks her with the party:
LAYNE.BCS
IF
InParty(Myself)
Global("SoldLayne","GLOBAL",1)
THEN
RESPONSE #100
LeaveParty()
Enemy()
END
DAREAN.BCS
IF
!InParty("Layne")
Allegiance(Myself,NEUTRAL)
Global("SoldLayne","GLOBAL",1)
THEN
RESPONSE #100
Attack("Layne")
END
IF
!InParty("Layne")
Allegiance(Myself,NEUTRAL)
Global("SoldLayne","GLOBAL",1)
Dead("Layne")
THEN
RESPONSE #100
Dialogue(Player1)
END
Until now it works out as well. After Layne died Darean should pay up and leave, but as above he starts talking too early:
DAREAN.D
IF ~Global("SoldLayne","GLOBAL",1)~ THEN BEGIN 10
SAY ~It was a pleasure to do business with you, <CHARNAME>.~
IF ~~ THEN DO ~GiveGoldForce(250)~ GOTO 11
END
This should be it. Hope this is sufficient
(Oh, I'm sure this will be a complete and utterly stupid mistake...)
Edited by Adder, 13 June 2005 - 05:21 AM.