// Unreleased items function script UnreleasedItem { // If the server allows equipping unreleased items or if the active character is staff, do nothing. // If you can equip *anything*, this restriction is moot if (debug || has_permission(PERM_USE_ALL_EQUIPMENT, getcharid(3))) return; .@me=getarg(0); message strcharinfo(0), "You have difficulties equipping this item, as if it is not yet fully in this world."; unequip(.@me); goto L_Return; L_Return: return; }