1. Mana shield gem
(If you use it on yourself it will cast a mesage ON/ use it again and it turns it OFF)
2. Freeze crystal
(Use on target/ stops moving/ casting spells/ using runes for 10sec.
I always rep++
Thanks in advance.
EDIT: found the freeze crystal
(If you use it on yourself it will cast a mesage ON/ use it again and it turns it OFF)
2. Freeze crystal
(Use on target/ stops moving/ casting spells/ using runes for 10sec.
I always rep++
Thanks in advance.
EDIT: found the freeze crystal
Code:
local t =
{
item = xxxx ---- ID of the item you want to use
timemute = xx ---- How long should the player be muted
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.itemid == t.item then
doMutePlayer(cid, t.timemute)
end
return TRUE
end