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
Life Ring / Ring of Healing
#1
This script is quite simple. When you get below 300 mana you will equip Ring Of Healing, and when you are above 301 it will equip Life Ring =)

local MANA_EQUIP_HIGH = 301                     -- Mana to equip Life Ring
local MANA_EQUIP_LOW = 300                 -- Mana to equip Ring Of Healing

local ring_item = finger()
local player_mana = mp()
if player_mana <= MANA_EQUIP_LOW and (ring_item.id == 0 or ring_item.id ~= 3089) then
    moveitems(3098, 'finger', '')
    wait(500, 800)
elseif player_mana >= MANA_EQUIP_HIGH and ring_item.id == 3100 then
    moveitems(3052, '0', 'finger')
    wait(500, 800)
end
Reply

#2
|Only Registered members can see download links. | Click here to buy subscription or here to register.
you made an error in your script the => its wrong its >=


local MANA_EQUIP_HIGH = 1000                    -- Mana to equip Life Ring
local MANA_EQUIP_LOW = 700                -- Mana to equip Ring Of Healing
local ring_item = finger()
local player_mana = mp()
if player_mana <= MANA_EQUIP_LOW and (ring_item.id == 0 or ring_item.id ~= 3089) then
    moveitems(3098, 'finger', '')
    wait(500, 800)
elseif player_mana >= MANA_EQUIP_HIGH and ring_item.id == 3100 then
    moveitems(3052, '0', 'finger')
    wait(500, 800)
end
but ty it work well after that
|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