summaryrefslogtreecommitdiff
path: root/world/map/npc/001-3
diff options
context:
space:
mode:
authormekolat <mekolat@gmail.com>2014-10-28 22:45:32 -0400
committermekolat <mekolat@gmail.com>2014-10-30 14:21:17 -0400
commit7377f8576c897329e4a96feb45848717b4f26848 (patch)
treeea686917861db54feae1ac3f938e0b6be5b53889 /world/map/npc/001-3
parent1407e7d012b52d425228b5f05c0220f2585b3160 (diff)
downloadserverdata-7377f8576c897329e4a96feb45848717b4f26848.tar.gz
serverdata-7377f8576c897329e4a96feb45848717b4f26848.tar.bz2
serverdata-7377f8576c897329e4a96feb45848717b4f26848.tar.xz
serverdata-7377f8576c897329e4a96feb45848717b4f26848.zip
use bitmasking & merge death handler
Diffstat (limited to 'world/map/npc/001-3')
-rw-r--r--world/map/npc/001-3/guards.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/001-3/guards.txt b/world/map/npc/001-3/guards.txt
index 7b18f252..0c79d3a2 100644
--- a/world/map/npc/001-3/guards.txt
+++ b/world/map/npc/001-3/guards.txt
@@ -15,12 +15,12 @@ L_Sure:
mes "[Phaet the Royal Guard]";
mes "\"Ok.\"";
next;
- if(Duel_PVP == 1) goto L_FightClub;
+ if(DUELS & $@DuelPvpBit) goto L_FightClub;
warp "001-2.gat", 25, 23;
close;
L_FightClub:
- set Duel_PVP, 0;
+ set DUELS, DUELS &~ $@DuelPvpBit;
warp "009-7.gat", 39, 37;
close;
}