summaryrefslogtreecommitdiff
path: root/npc/items/unreleased_item.txt
blob: c88df13743751315db6b834c11a024cdad276b84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
function	script	UnreleasedItem	{
    // If the server allows equipping unreleased items or if the active character is staff, do nothing.
    if (debug || getgmlevel())
        goto L_Return;
    message strcharinfo(0), "You have difficulties equipping this item, as if it is not yet fully in this world.";
    callfunc "UnequipLater";
    goto L_Return;

L_Return:
    return;
}