diff options
author | mekolat <mekolat@gmail.com> | 2014-10-30 14:11:59 -0400 |
---|---|---|
committer | mekolat <mekolat@gmail.com> | 2014-10-30 14:44:48 -0400 |
commit | b2aaa61286c1e3a107df7fcd8d63086b360aa0f6 (patch) | |
tree | 0d8d06c4b25734c240c1909a064e4b6d9acfad5f /world/map/npc/009-7/eventHandler.txt | |
parent | 7486b2b9f4447b7b5b7f5d8c5ec13b867a2978c7 (diff) | |
download | serverdata-b2aaa61286c1e3a107df7fcd8d63086b360aa0f6.tar.gz serverdata-b2aaa61286c1e3a107df7fcd8d63086b360aa0f6.tar.bz2 serverdata-b2aaa61286c1e3a107df7fcd8d63086b360aa0f6.tar.xz serverdata-b2aaa61286c1e3a107df7fcd8d63086b360aa0f6.zip |
add global death handler
Diffstat (limited to 'world/map/npc/009-7/eventHandler.txt')
-rw-r--r-- | world/map/npc/009-7/eventHandler.txt | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/world/map/npc/009-7/eventHandler.txt b/world/map/npc/009-7/eventHandler.txt index 6e560f35..4098e14a 100644 --- a/world/map/npc/009-7/eventHandler.txt +++ b/world/map/npc/009-7/eventHandler.txt @@ -129,30 +129,4 @@ L_Intrusion: cmdothernpc "#FightClub#utils", "Intrusion"; // we can not attach a second timer to this npc so we use another one callfunc "fightclub_Intrusion"; goto L_StartTimer; - -OnPCKilledEvent: // fired with the RID of the victim - set @killer, 0; - if(@Duel_Fighter != 1) end; - if(getmap() != "009-7") end; - set $@duel_loser, getcharid(3); // grab the rid of the victim - set $@duel_winner, @killerrid; // grab the rid of the killer - set @killerrid, 0; // reset killerid - callfunc "fightclub_death"; - end; - -OnPCDieEvent: // fired with the RID of the victim - callfunc "fightclub_GoBack"; // TODO: we need a unified death handler - set @killer, 0; - if(@Duel_Fighter != 1) end; - if (($@Duel_CurrentDuel < 1) || ($@Duel_Started != 1)) goto L_Reset; - if(getmap() != "009-7") end; - set @killerrid, 0; // since the player was not murdered, the killerrid is 0 - set $@duel_loser, getcharid(3); // grab the rid of the victim - callfunc "fightclub_death"; - end; - -L_Reset: // the player has duel_fighter but no duel is ongoing (happens if the player quit before fightclub_exit can be called) - if(debug) donpcevent "Debug#Duels::OnVictimInDuelNoDuel"; - callfunc "fightclub_DestroyMe"; // here we attempt to resume the interrupted procedure - end; } |