tfs 0.4
What function do I use to add fire permission to throw items and also be teleported?
What function do I use to add fire permission to throw items and also be teleported?
LUA:
local pos = {x = 33207, y = 32590, z = 8}
function onStepIn(cid, item, position, fromPosition)
if getPlayerAccess(cid) then
doTeleportThing(cid, pos)
doSendMagicEffect(getThingPos(cid), 37)
end
return true
end