Tenta assim:
Vai em creaturescript crie um arquivo e cole isso dentro:
local fromPostion = { x = 1, y = 1, z = 1 } -- Posição da arena formando um quandrado
local toPosition = { x = 1, y = 1, z = 1 } -- Posição da arena formando um quandrado
function onStatsChange(cid, attacker, type, combat, value)
if not isPlayer(cid) then return false end
hit = value
if isInArray(getThingPos(cid), fromPostion, toPosition) then
if hit >= getCreatureHealth(cid) then
doTeleportThing(cid, math.random(fromPosition, toPosition), true)
doSendMagicEffect(getThingPos(cid, 21))
end
end
end
Depois disso vá em login.lua e registre a seguinte linha:
registerCreatureEvent(cid, "ArenaKill")
Agorá vai em creaturescript.xml e cole isso:
<event type="statschange" name="ArenaKill" event="script" value="nome do seu arquivo.lua"/>