samuel157
/root
- Joined
- Mar 19, 2010
- Messages
- 518
- Solutions
- 3
- Reaction score
- 71
- Location
- São Paulo, Brazil
- GitHub
- Samuel10M
LUA:
function onSay(cid, words, param)
local pos = {x=154, y=51, z=7}
if getCreatureCondition(cid, CONDITION_INFIGHT) then
doPlayerSendCancel(cid, "Voce nao pode fazer isso em luta")
else
doSendMagicEffect(getPlayerPosition(cid),53)
doPlayerSendCancel(cid,"Parabens Voce foi teleportado Com Sucesso")
doTeleportThing(cid,pos)
end
return true
end