Lord Ganja
New member
Can anyone test this script and see if you experience what im experiencing..
Coz the OnPCDieEvent is always triggered twice.. Idk why. I already checked if I might have duplicates of the script on other files but there's none.
So I was wondering why is it triggered twice? Help will always be appreciated. Thanks in advance.
Here's the script:
OnPCDieEvent: if( strcharinfo(3) == "guild_vs1" && ) { @dead_pts += 1; if ( @dead_pts == 1 ) { message strcharinfo(0), "Reviving. . . . . . ."; sleep2 3000; atcommand "@alive"; message strcharinfo(0), "1 more life left."; end; } if ( @dead_pts >= 2 ) { @dead_pts = 0; message strcharinfo(0), "Sorry, but you failed the quest. Better luck next time!"; sleep2 5000; warp "SavePoint",0,0; end; } } end;
Here's the result:

Coz the OnPCDieEvent is always triggered twice.. Idk why. I already checked if I might have duplicates of the script on other files but there's none.
So I was wondering why is it triggered twice? Help will always be appreciated. Thanks in advance.
Here's the script:
OnPCDieEvent: if( strcharinfo(3) == "guild_vs1" && ) { @dead_pts += 1; if ( @dead_pts == 1 ) { message strcharinfo(0), "Reviving. . . . . . ."; sleep2 3000; atcommand "@alive"; message strcharinfo(0), "1 more life left."; end; } if ( @dead_pts >= 2 ) { @dead_pts = 0; message strcharinfo(0), "Sorry, but you failed the quest. Better luck next time!"; sleep2 5000; warp "SavePoint",0,0; end; } } end;
Here's the result:

Last edited by a moderator: