summaryrefslogtreecommitdiff
path: root/world/map/npc/items/unequipcb.txt
blob: 649b2912ad3b6cf0c48f592f9f09ad0e3b1d5af8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 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;
}