Can somebody change this script,I need change this teleport scroll for only premiums player.
PHP:
function onUse(cid, item, frompos, item2, topos)
if hasCondition(cid, CONDITION_INFIGHT) == TRUE then
doPlayerSendCancel(cid, "You cant use this in battle!")
return FALSE
end
tppos = {x=703, y=600, z=7, stackpos=1}
if item.itemid == 7844 then
doTeleportThing(cid, tppos)
doPlayerSendTextMessage(cid,22,"Fly...")
doPlayerRemoveItem(cid,7844,1)
end
end