summaryrefslogtreecommitdiff
path: root/world/map/npc/items/unreleased_item.txt
blob: 72d24b70451a0fe295ad1954d1a22f2fe5a9b6ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// ------------------------------------------------------------
// Variables passed to this script:
//  @slotId	The slot in which the item would have been equipped in. This is passed automagically when called in an equip script.
// ------------------------------------------------------------

function	script	UnreleasedItem	{
	if (debug || getgmlevel(0)) end; // If the server allows equipping unreleased items or if the active character is staff, do nothing.
	message strcharinfo(0), "You have difficulties equipping this item, as if it is not yet fully in this world.";
	unequipbyid @slotId;
	end;
}