The problem is the following two blocks:
[codebox]IF
GlobalGT("Chapter","GLOBAL",3)
Exists("Montaron")
!InParty("Montaron")
THEN
RESPONSE #100
ActionOverride("Montaron",DestroySelf())
END
IF
GlobalGT("Chapter","GLOBAL",3)
Exists("Xzar")
!InParty("Xzar")
THEN
RESPONSE #100
ActionOverride("Xzar",DestroySelf())
END[/codebox]
Apparently "DestroySelf()" doesn't block "Exists", for some weird reason.
Adding a blocking global or changing "exists" to "InActiveArea" will fix the problem.
Edited by OneEyedPhoenix, 30 September 2009 - 11:43 AM.