Se a base do seu servidor for PDA:
data/lib, newStatusSyst.lua.
Acima de:
if isSummon(ret.id) and getPokemonBoost(ret.id) ~= 0 and math.random(1, 100) <= getPokemonBoost(ret.id) then --sistema "pegou no boost"
if ret.cond and not isInArray({"Poison", "Leech", "Fear"}, ret.cond) then
doSendAnimatedText(getThingPosWithDebug(ret.id), "BOOST", 215) --alterado v1.8
return true
end
end
Adicione:
local miss_imunity = {"Zapdos", "Moltres", "Articuno"} --Pokémons imunes à status negativos.
if not isSummon(ret.id) then
if isInArray(miss_imunity, getCreatureName(ret.id)) then
return true
end
end




info
Grupo: Artesão
Registrado: 14/06/11
Posts: 112
Reputação: +11
Gênero: Masculino
Queria saber como faço pra fazer alguns pokemons lendarios não levarem miss, podem me ajudar?