Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Persistent for ring of healing and life ring
#1
I need a persistent that uses ring of healing with mana% 1>60 and use life ring with mana% 61>95 and with 96% or more unequip the rings. Anyone could help?

#2
Hello.

I think this is gonna work.
local RINGS = {
    { valueEquip = 1, valueUnequip = 60, inUseId = 3088, notInUseId = 3051, BP = 'red backpack' },
    { valueEquip = 61, valueUnequip = 96, inUseId = 3089, notInUseId = 3052, BP = 'red backpack' },
}

local value = mppc()

local ring_item = finger()
for _, ring in ipairs(RINGS) do
    if value <= ring.valueEquip and ring_item.id == 0 then
        moveitems(ring.notInUseId, 'finger', ring.BP)
        wait(500, 800)
        ring_item = finger()
    elseif value >= ring.valueUnequip and ring_item.id == ring.inUseId then
        moveitems(ring.inUseId, ring.BP, 'finger')
        wait(500, 800)
        ring_item = finger()
    end
end

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.

What is notInUseId = 3051 & 3052? ?

#4
Ids. Most rings have different IDs when in use.



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016