Posts: 6
Threads: 2
Joined: Sep 2023
Reputation:
0
is there any script what i can use with custom rings when low hp put utamo ring and above health % attack ring?
Posts: 6
Threads: 2
Joined: Sep 2023
Reputation:
0
Ty for answer, i using the script but he only puts the utamo ring on when hp lower than 40% and not putting the protection ring back on when its hp % is above 80% i use this now i changed some IDS
local LOW_RING_EQUIPPED_ID = 3005
local LOW_RING_UNEQUIPPED_ID = 3005
local LOW_RING_HPPC = 60 -- If hppc LOWER than this value then equip ring above.
local HIGH_RING_EQUIPPED_ID = 5488
local HIGH_RING_UNEQUIPPED_ID = 5488
local HIGH_RING_HPPC = 80 -- If hppc HIGHER than this value then equip ring above.
local ring_item = finger()
local value = hppc()
if value <= LOW_RING_HPPC and (ring_item.id == 5484 or ring_item.id ~= LOW_RING_EQUIPPED_ID) then
moveitems(LOW_RING_UNEQUIPPED_ID, 'finger', '')
wait(500, 800)
elseif value >= HIGH_RING_HPPC and (ring_item.id == 5488 or ring_item.id ~= HIGH_RING_EQUIPPED_ID) then
moveitems(HIGH_RING_UNEQUIPPED_ID, 'finger', '')
wait(500, 800)
end