local config =
{
pontaDeCima = {x=592, y=1013, z=7},
pontaDeBaixo = {x=592, y=1014, z=7},
toPos = {x=512, y=958, z=7},
minLevel = 80
local function isInRange(position, fromPosition, toPosition)
return (position.x >= fromPosition.x and position.y >= fromPosition.y and position.z >= fromPosition.z and position.x <= toPosition.x and position.y <= toPosition.y and position.z <= toPosition.z)
end
function onSay(cid, words, param, channel)
if getPlayerLevel(cid) >= config.minLevel then
if not isInRange(getCreaturePosition(cid), config.pontaDeCima, config.pontaDeBaixo) then
doPlayerSendCancel(cid, "Voc\ê não está nos SQMs brancos do templo para entrar na Arena PVP Livre.")
else
doTeleportThing(cid, config.toPos, TRUE)
doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "BAIXA O SARRAFO NELES!")
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
end
else
doPlayerSendCancel(cid, "Voc\ê precisa ser level "..config.minLevel.." para entar na arena.")
end
return TRUE
end
Essa e a script mas n tem a posiçao ki o player tem ki fikar para dar !arena.N consegui ajeitar isso!