Ir para conteúdo

Anunciar morte de boss (O player x matou o boss x!)


larissaots

Posts Recomendados

Créditos à zipter98. happy.png

 

Objetivo

Aparecerá uma mensagem no Local Chat avisando que x jogador matou x boss.

O player [NickDoPlayer] matou o boss [NomeDoBoss]!

 

Tutorial

Vá em data/creaturescripts/scripts e crie o arquivo anunciomonstro.lua

local monster = "monster_name"               --Nome do monstro.
function onDeath(cid, corpse, deathList)
    if isMonster(cid) and getCreatureName(cid) == monster and isPlayer(deathList[2] or deathList[1]) then
        broadcastMessage("O player "..getCreatureName(deathList[2] or deathList[1]).." matou o boss "..monster.."!")
    end
    return true
end

Em data/creaturescripts, abra o arquivo creaturescripts.xml e coloque a tag (coloque antes de </creaturescripts>):

<event type="death" name="anuncioServer" event="script" value="anunciomonstro.lua"/>

Depois, em data/monster, abra o arquivo XML do monstro e coloque, antes do </monster>, isso:

    <script>
        <event name="anuncioServer"/>
    </script>
Link para o comentário
Compartilhar em outros sites

  • 5 months later...
×
×
  • Criar Novo...