i wanna make ninja amulet
the one where it changes your size
how would i go about coding this?
the one where it changes your size
how would i go about coding this?
else if (ItemParts[0] == "723583") // Ninja Amulet
{
if (Model == 1004 || Model == 2002)
Model -= 1;
else if (Model == 1003 || Model == 2001)
Model += 1;
General.MyPackets.Vital(UID, 12, ulong.Parse(Avatar.ToString() + Model.ToString()));
World.UpdateSpawn(this);
RemoveItem(ItemUID);
}