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
ring of healing and life ring
#1
hello sir i have tried the persistent who put ring of healing at a certain% of mana and to another unequip and equip an life ring but he put ring of healing and unequip it and put life ring, im lower 50% mana 

local RINGS = {
    { valueEquip = 50, valueUnequip = 60, inUseId = 3100, notInUseId = 3098, BP = 'blue backpack' },
    { valueEquip = 61, valueUnequip = 96, inUseId = 3089, notInUseId = 3052, BP = 'blue 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)
    elseif value >= ring.valueUnequip and ring_item.id == ring.inUseId then
        moveitems(ring.inUseId, ring.BP, 'finger')
        wait(500, 800)
    end
end
Reply

#2
Hello.

You didn't specified what's going on, so i'm not sure what's your request. But if the script is not working then check the ring ids and BPs.

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

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.
no worry i have search for like 3-4hour before doing a post and yes i have specified whats going bad with the persistent the first line. Its not my first time using this bot or some other bot, i have using the huds, show cursor info for the id and the backpack its the good. It just put the ring of healing for a second and put the life ring but the mana its below the 50%
Reply

#4
Hello.

You did not. Your first line (and only line) is not enough to understand the problem or your goal. Just because the problem/goal is clear to you doesn't mean it will be to others.

Try this code.
local RINGS = {
    { valueEquip = 50, valueUnequip = 60, inUseId = 3100, notInUseId = 3098, BP = 'blue backpack' },
    { valueEquip = 61, valueUnequip = 96, inUseId = 3089, notInUseId = 3052, BP = 'blue 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
Reply

#5
|Only Registered members can see download links. | Click here to buy subscription or here to register.
it work now ty really appreciate
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Smile" title="Smile" class="smilie smilie_1" />
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016