Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
586 B
6
Indexable
local ring = 3048
local equip_ammy = null
if getFinger() then equip_ammy = getFinger():getId() end
mig_Pvp=macro(50, "Auto Might Ring", "Delete", function()
    if hppercent() <= 100 and (getFinger() == null or getFinger():getId() ~= ring) then
            g_game.equipItemId(ring)
            delay(200)
    elseif hppercent() >= 102 and (getFinger() == null or equip_ammy and getFinger():getId() ~= equip_ammy) then
        g_game.equipItemId(equip_ammy)
        delay(200)
    end
end)
addIcon("(RP) PvP", {item=3048, text="Auto Might"}, function(icon, isOn)
mig_Pvp.setOn(isOn)
end)
Leave a Comment