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
Energy Ring On Persistent
#1
Question 
I would like a script that equips the energy ring with 60% hp and unequips it with 95%, the ones I found didn't work.

The tools auto ring doesn't leave a life ring equipped if you have the health to take the energy ring.

Can someone help me???? Please i need  that.

#2
Just follow this steps:

1 - Go to Hotkeys Section.

2 - Add New Hotkey.
3 - At Hotkey, press the key to activate this action.
4 - At Type, select Equip Item.
5 - At Item Id, write 3051.
6 - At Location, select Finger.
7 - Check Enabled.

#3
I haven't tested. So test it yourself. I'm just trying to help:


LifeToEquip = 60 -- In percents
LifeToUnequip = 95 -- In percents


EnergyRing = itemid('energy ring')
if hppc() <= LifeToEquip and finger.id() ~= EnergyRing then
    if finger().id ~= 0 then
        moveitems(finger().id, 'back', 'finger') -- If there's another ring equiped, move it to main bp
        wait(300)
    end
    moveitems(EnergyRing, 'finger') -- Equip energy ring
elseif hppc() >= LifeToUnequip and finger().id == EnergyRing then
    moveitems(EnergyRing, 'back', 'finger') -- UnEquip energy ring
end


It should take the energy ring from any opened backpack,
and always will unequip it for your main backpack.
It also check if you are with another ring equiped, and unequip it before equip the energy ring.



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016