Ir para conteúdo
  • 0

Aol Especiais


sumbel

Pergunta

Hola gostaria de fazer um pedido na verdade 2!

quero um amuleto infinito igual o do rozinx como ele funciona:

 

ele protege level, loot , skill estando skull ou sem, e também adiciona 20 porcento de vida e mana!

 

já o outro só protegeria loot,skill adicionaria vida e life também, a unica coisa que não faria e proteger level!

Link para o comentário
Compartilhar em outros sites

6 respostass a esta questão

Posts Recomendados

  • 0

tente usa o script assim .

 

		    function onDeath(cid, corpse, deathList)
if (getPlayerSlotItem(cid, 2).itemid == 2196) then
doPlayerRemoveItem(cid, 2196, 1)
doCreatureSetDropLoot(cid, false) 
end
return true
end

Link para o comentário
Compartilhar em outros sites

  • 0

so usar assim

 

function onDeath(cid, corpse, deathList)
if (getPlayerSlotItem(cid, 2).itemid == 2196) then
doPlayerRemoveItem(cid, 2196, 1)
doCreatureSetDropLoot(cid, false)
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, 0)
end
return true
end

 

e se for proteger skill tbm

 

usa assim

 

function onDeath(cid, corpse, deathList)
if (getPlayerSlotItem(cid, 2).itemid == 2196) then
doPlayerRemoveItem(cid, 2196, 1)
doCreatureSetDropLoot(cid, false)
doPlayerSetLossSkill(cid, false)
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, 0)
end
return true
end

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

  • 0

Tenta assim:

function onDeath(cid, corpse, deathList)
if (getPlayerSlotItem(cid, 2).itemid == 2196) then
doPlayerRemoveItem(cid, 2196, 1)
doCreatureSetDropLoot(cid, false) 
doPlayerSetLossPercent(cid, 1, 0)
doPlayerSetLossPercent(cid, 2, 0)
doPlayerSetLossPercent(cid, 3, 0)
doPlayerSetLossPercent(cid, 4, 0)
doPlayerSetLossPercent(cid, 5, 0)
doPlayerSetLossPercent(cid, 6, 0)
doPlayerSetLossPercent(cid, 7, 0)
doPlayerSetLossPercent(cid, 8, 0)
end
return true
end

Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...