blob: c88df13743751315db6b834c11a024cdad276b84 (
plain) (
tree)
|
|
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;
}
|