summaryrefslogtreecommitdiff
path: root/npc/items/unequipcb.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/items/unequipcb.txt')
-rwxr-xr-xnpc/items/unequipcb.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/items/unequipcb.txt b/npc/items/unequipcb.txt
new file mode 100755
index 00000000..a1c7881d
--- /dev/null
+++ b/npc/items/unequipcb.txt
@@ -0,0 +1,22 @@
+- script UnequipCB NPC32767,{
+ end;
+
+OnUnequip:
+ unequipbyid (@unequip_slot - 1);
+ @unequip_slot = 0;
+ end;
+}
+
+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;
+
+ @unequip_slot = (@slotId + 1);
+ addtimer 0, "UnequipCB::OnUnequip";
+ goto L_Return;
+
+L_Return:
+ return;
+}