local hp = 30000
local toPos = {x = 1248, y = 727, z = 7} --pos para onde o player vai ser teleportado
local tempo = 30 --tempo q ele vai ficar la... em segs
local function teleport(cid, pos)
if isCreature(cid) then
doSendMagicEffect(pos, 21)
doTeleportThing(cid, pos, false)
end
end
function onCastSpell(cid, var)
local pos = getPlayerPosition(cid)
doTeleportThing(cid, toPos, false)
doCreatureAddHealth(cid, hp)
doSendMagicEffect(pos, 21)
addEvent(teleport, tempo*1000, cid, pos)
return true
end
Aonde ta o HP, e quanto ira healar de vida... se quer full life ponha uns 500k por ai depende da quantidade do sangue dos jogadores.