Ir para conteúdo
  • 0

Não Perder Skill e Magic Level


Bernalzz

Pergunta

Olá, eu tenho 1 ot de war que estou fazendo mas eu gostaria de que após os players morrerem perderem somente level, skill e magic level permanecessem. Obrigado.

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

3 respostass a esta questão

Posts Recomendados

  • 0

achei um do vodkart .

 

em data / creaturescripts / scripts .

 

function onDeath(cid, corpse, deathList)
local config = {
onlypremium = true, -- se precisa ser premium para não perder nada
exp = true, -- se ao morrer o jogador irá perder exp
skills = false, -- se ao morrer vai perder skills
magic = false, -- se vai perder magic level
loot = false, -- se ao morrer o jogador irá perder o loot
level = 700000 -- até que level irá proteger o player
}
if isPlayer(cid) and getPlayerLevel(cid) <= config.level then
if config.onlypremium == true and not isPremium(cid) then return TRUE end
if config.loot == false then doCreatureSetDropLoot(cid, false) end
if config.magic == false then doPlayerSetLossPercent(cid, PLAYERLOSS_MANA, 0) end
if config.skills == false then doPlayerSetLossPercent(cid, PLAYERLOSS_SKILLS, 0) end
if config.exp == false then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, 0) end
return TRUE end return TRUE end

 

em creaturescripts.xml

 

<event type="death" name="ProtectLevel" event="script" value="levelprotection.lua"/>

 

creaturescripts / scripts / login.lua adicione

 

registerCreatureEvent(cid, "ProtectLevel")

 

agora divirta-se

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...