Ir para conteúdo
  • 0

Anel anti-paralyze


Nyedson

Pergunta

3 respostass a esta questão

Posts Recomendados

  • 0

TAG em creaturescripts.xml:

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

Adicione essa parte no login.lua, embaixo dos outros registerCreatureEvent:

registerCreatureEvent(cid, "antiparalyze")

Crie um arquivo em creaturescripts/scripts chamado antiparalyze.lua:

function onStatsChange(cid, attacker, type, combat, value)
	local ring_id = 2124
	if getPlayerSlotItem(cid, 9).itemid == ring_id then
		if getCreatureCondition(cid, 32) then
			doRemoveCondition(cid, 32)
		end
	end
	return true
end

Se o jogador for paralizado, mas perder vida ou mana e estiver com o anel, vai sair na hora. Testa aí pra ver se serve pro que você queria.

 

OBS.: testado com sucesso em 8.6

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

×
×
  • Criar Novo...