Ir para conteúdo

[Fechado] Explicasão De Um Script


ka9

Posts Recomendados

Estou aqui hoje pendino uma ajuda ou uma explicação de um script que eu tenho.

Esse Script e para um Evento (Quem Morrer nao pede level).

 

esta aqui ele.

 

local arena = {

frompos = {x=96, y=577, z=7},

topos = {x=89, y=573, z=7},

exit = {x=109, y=573, z=7}

}

 

function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)

if isPlayer(cid) == TRUE then

if isInArea(getPlayerPosition(cid), arena.frompos, arena.topos) then

if doCreatureAddHealth(cid, getCreatureMaxHealth(cid) - getCreatureHealth(cid), TRUE) == TRUE then

if doTeleportThing(cid, arena.exit) == TRUE then

doSendMagicEffect(arena.exit, 10)

doPlayerSendTextMessage(mostDamageKiller,MESSAGE_STATUS_CONSOLE_BLUE,'[ARENA] You have defeated '..getPlayerName(cid)..'!')

doPlayerSendTextMessage(cid,MESSAGE_STATUS_CONSOLE_BLUE,'[ARENA] You where defeated by '..getPlayerName(mostDamageKiller)..'!')

return FALSE

end

end

end

end

return TRUE

end

 

 

Eu queria Saber o que eu coloco em Frompos e Topos.

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...