Ir para conteúdo
  • 0

[RESOLVIDO] Party Member


craigmabbit

Pergunta

5 respostass a esta questão

Posts Recomendados

  • 0

Boa tarde ^^ Tentemos desta forma:

 

Vá em data/creaturescripts/scripts, crie um arquivo chamado partyAttack.lua e adicione dentro:

function onStatsChange(cid, attacker, type, combat, value)

if type == STATSCHANGE_HEALTHLOSS then
    if getPlayerParty(cid) == getPlayerParty(attacker) then
        return false
    end

    return true
end

Na mesma pasta abra o arquivo login.lua, procure por:

registerCreatureEvent

E cole próximo á ele:

registerCreatureEvent(cid, "partyAttack")

Agora em creaturescripts.xml adicione a tag:

<event type="statschange" name="partyAttack" event="script" value="partyAttack.lua"/>

Reinicie o servidor e boa sorte :D

Editado por Roksas
Link para o comentário
Compartilhar em outros sites

  • 0

ele pediu para PARTY kk' ta cego rok? ;p e eu ja tinha mandado pra ele no skype ^^

if isInParty(cid) then
   local party = getPartyMembers(cid)
   if isInArray(party, target) then
      ...
   end
else
   ...
end
Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...