Ir para conteúdo
  • 0

Firewalker Boss


Thiigoo

Pergunta

10 respostass a esta questão

Posts Recomendados

  • 0

Eu testei e funcionou sim. Você fez algo errado, vou te passar as 3 possibilidades de scripts:

 

function onKill(cid, target)

local pos = {x=, y=, z=}

if isMonster(target) and getCreatureName(target) == 'pythius the rotten' then
doTeleportThing(cid, pos)
end
return TRUE
end

 

OU:

 

function onKill(cid, target)

local pos = {x=, y=, z=}

if isMonster(target) and string.upper(getCreatureName(target)) == 'PYTHIUS THE ROTTEN' then
doTeleportThing(cid, pos)
end
return TRUE
end

 

OU:

 

function onKill(cid, target)

local pos = {x=, y=, z=}

if isMonster(target) and string.lower(getCreatureName(target)) == 'pythius the rotten' then
doTeleportThing(cid, pos)
end
return TRUE
end

 

Agora as tags:

 

CreatureScripts.xml

 

<event type="kill" name="Rotten" script="NomeDoArquivo.lua"/>

 

Login.lua

 

registerCreatureEvent(cid, "Rotten")

 

Certamente funciona.

Link para o comentário
Compartilhar em outros sites

  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...