Ir para conteúdo
  • 0

Nao perde ML ao morrer


SkyDarkyes

Pergunta

Tipo do script:creaturescripts

Protocolo (versão do Tibia):8.54

Servidor utilizado:Naruto tibia

Nível de experiência:30

Adicionais/Informações:Quando o player morrer nao perde ml,

 

 

JA tentei varios scripts e nada PF ME AJUDEM VALENDO REP+++

Link para o comentário
Compartilhar em outros sites

8 respostass a esta questão

Posts Recomendados

  • 0

Utilize esse script do vodkart .

 

vá em data / creaturescripts / scripts / renome algum arquivo para levelprotection.lua é adicione .

 

function onDeath(cid, corpse, deathList)
local config = {
onlypremium = false, -- se precisa ser premium para não perder nada
exp = true, -- se ao morrer o jogador irá perder exp
skills = true, -- se ao morrer vai perder skills
magic = false, -- se vai perder magic level
loot = true, -- se ao morrer o jogador irá perder o loot
level = 7121727 -- 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 adicione.
	  
<event type="death" name="ProtectLevel" event="script" value="levelprotection.lua"/> 

em data / creaturescripts / scripts / login.lua adicione .

 

		
registerCreatureEvent(cid, "ProtectLevel") 

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

×
×
  • Criar Novo...