diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-11-24 14:44:15 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-11-24 14:44:15 -0800 |
commit | 14b0731f8a74aad602e004fa726c53584bb72029 (patch) | |
tree | e86b6f2762680809c560047234e77543a650e4df /world/map/npc/items/unequipcb.txt | |
parent | 5b7768879adf803278e425bc20961c2dc4bc4147 (diff) | |
download | serverdata-14b0731f8a74aad602e004fa726c53584bb72029.tar.gz serverdata-14b0731f8a74aad602e004fa726c53584bb72029.tar.bz2 serverdata-14b0731f8a74aad602e004fa726c53584bb72029.tar.xz serverdata-14b0731f8a74aad602e004fa726c53584bb72029.zip |
Fix style and logic of UnequipCB
Diffstat (limited to 'world/map/npc/items/unequipcb.txt')
-rw-r--r-- | world/map/npc/items/unequipcb.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/world/map/npc/items/unequipcb.txt b/world/map/npc/items/unequipcb.txt index ec185f02..62dc7715 100644 --- a/world/map/npc/items/unequipcb.txt +++ b/world/map/npc/items/unequipcb.txt @@ -6,7 +6,7 @@ botcheck.gat,0,0,0|script|UnequipCB|-1,-1,-1 { OnUnequip: - unequipbyid (@unequip_slot -1); + unequipbyid (@unequip_slot - 1); set @unequip_slot, 0; end; } @@ -14,11 +14,11 @@ OnUnequip: // Paired with unequipcb function|script|UnequipLater|, { - if(@unequip_slot) + // if there are multiple items that want to be removed, + // only schedule one timer - scripts will be called again + if (@unequip_slot) goto L_Return; - goto L_ReturnTimer; -L_ReturnTimer: set @unequip_slot, (@slotId + 1); addtimer 0, "UnequipCB::OnUnequip"; |