Histórico de Curtidas
-
snop deu reputação a gabriel28 em (Resolvido)Life e Mana - Subindo muito rápidoVai no vocation.xml e vê o gainhpticks, gainmanaticks, gainmanaamount e gainhpamount.
gainmanaamount e gainhpamount, quanto maior o valor, mais mana/hp ele vai ganhar e os outros dois, quanto menos o valor, mais rápido ele ganhará a quantidade de mana/hp que está em gainmanaamount e gainhpamount.
-
snop deu reputação a 9k22 em Mudar a cor da magiaEm config.lua procure por
emoteSpells = true
troque para
emoteSpells = false
-
snop deu reputação a luanluciano93 em [ERRO] Elemental Spheresfunction onDeath(cid, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified) local pid = Player(mostdamagekiller) local t = boss[Creature(cid):getName():lower()] pid:setStorageValue(t.p_storage, 1) setGlobalStorageValue(t.g_storage, -1) return true end por esta:
function onDeath(cid, corpse, lasthitkiller, mostdamagekiller, lasthitunjustified, mostdamageunjustified) local pid = Player(mostdamagekiller) if pid then local t = boss[Creature(cid):getName():lower()] if t then pid:setStorageValue(t.p_storage, 1) setGlobalStorageValue(t.g_storage, -1) end end return true end