-- Critical --
if isSummon (attack) and isPlayer(getCreatureMasterAttack) then
local Tiers = {
[85] = {chance = Critical1},
[86] = {chance = Critical2},
[87] = {chance = Critical3},
[88] = {chance = Critical4},
[89] = {chance = Critical5},
[90] = {chance = Critical6},
[91] = {chance = Critical7}
}
local ball = getPlayerSlotItem(getCreatureMasterAttack, 8)
local Tier = getItemAttribute(ball.uid, "heldx")
if Tier and Tier > 84 and Tier < 92 then
if math.random(1,100) <= Tiers[Tier].chance then
valor = valor * 2
doSendAnimatedText(getThingPos(cid), "STK "..(valor * 0.25), 115)
end
end
end
-- Critical --
@Marcelo Junior
PROBLEMA RESOLVIDO COM ESSE SCRIPT!