summaryrefslogtreecommitdiff
path: root/world/map/npc/items/unequipcb.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/items/unequipcb.txt')
-rw-r--r--world/map/npc/items/unequipcb.txt27
1 files changed, 0 insertions, 27 deletions
diff --git a/world/map/npc/items/unequipcb.txt b/world/map/npc/items/unequipcb.txt
deleted file mode 100644
index 649b2912..00000000
--- a/world/map/npc/items/unequipcb.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-// Note: the client (I think) has a display bug if this is called
-// during the intial connection's equip hook
--|script|UnequipCB|32767
-{
- end;
-
-OnUnequip:
- unequipbyid (@unequip_slot - 1);
- set @unequip_slot, 0;
- end;
-}
-
-// Paired with unequipcb
-function|script|UnequipLater
-{
- // 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;
-
- set @unequip_slot, (@slotId + 1);
- addtimer 0, "UnequipCB::OnUnequip";
- goto L_Return;
-
-L_Return:
- return;
-}