Ir para conteúdo

[23:57:36.844] (Luadoplayeradditem) Player Not Found


pounkan

Posts Recomendados

sou scripter novo, to tentando fazer um em que vc mate o player na area X voce ganhe um item.

 

mas esta dando este errro

 

[23:57:36.841] [Error - CreatureScript Interface]

[23:57:36.842] data/creaturescripts/scripts/monster.lua:onPrepareDeath

[23:57:36.843] Description:

[23:57:36.844] (luaDoPlayerAddItem) Player not found

 

local arena = {

frompos = {x=32499, y=32369, z=7},

topos = {x=32567, y=32418, z=7},

exit = {x=32370, y=32231, z=5}

}

 

function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)

if isPlayer(cid) == TRUE then

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

 

doPlayerAddItem(lastHitKiller, 2160,10)

end

end

return TRUE

end

Link para o comentário
Compartilhar em outros sites

Ta aew:

local arena = {
frompos = {x=32499, y=32369, z=7},
topos = {x=32567, y=32418, z=7},
exit = {x=32370, y=32231, z=5}
}


function onKill(cid, target, lastHit)

if (isPlayer(cid) == TRUE) then
  if (isInArea(getPlayerPosition(target), arena.frompos, arena.topos)) then
  doPlayerAddItem(cid, 2160,10)
  end
end
return TRUE
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...