Hey, guys! Today I bring you a simple persistent: a stealth ring equiper. Since it's been a while since I've programed, the script itself is pretty simple, but it seems to be working fine.
It will equip a stealth ring when there are more than a choosen amount of monsters (you can specify which ones) in the screen and unequip it after. Edit it according to your needs, the variable's names are pretty intuitive. Hope it proves useful!
Did the script help you? Then REP+ and help me growing!!Code:-- Made by Talendar (Alemao)
init start
local monsters = {"Cyclops", "Cyclops Drone", "Cyclops Smith"}
local RingBP= "brown backpack"
local minMonsters = 4
init end
auto(200)
if itemcount('stealth ring', RingBP) > 0 and maround(5,unpack(monsters)) >= minMonsters then
if $finger.id == 0 then
equipitem("stealth ring", "finger", RingBP)
wait(1500, 2200)
end
elseif $finger.id ~= 0 then
unequipitem('finger')
wait(1500, 2200)
end
Found any bugs or have sugestions? Feel free to post below!