Ok this is better macro for burla
and here is macro for Srox
So these macros are yet UNTESTED,
I made them in simple NOTEPAD, but im 100% sure they will work as intended
and change the range:=... to whatever range u want your bot to check monsters for
Just put them in macros, name them whatever u want, and set auto 1000 whatever
Code:
ringna:=3086
ringbp:=3049
range:=4
ringON:=Self.Inventory.Ring()
procs:=0
p1:=Creatures.ByRangeName(!range!, cyclops smith)
p2:=Creatures.ByRangeName(!range!, cyclops drone)
VarAdd(procs, !p1!)
VarAdd(procs, !p2!)
!procs!>=1 [zak]
!ringON!<>!ringna!
Self.Equip.Ring(!ringbp!)
exit()
{zak}
!ringON!==!ringna!
Self.UnEquip.Ring(0)
exit()
and here is macro for Srox
Code:
ringna:=3086
ringbp:=3049
range:=4
ringON:=Self.Inventory.Ring()
procs:=0
p1:=Creatures.ByRangeName(!range!, Rat)
p2:=Creatures.ByRangeName(!range!, Bat)
p3:=Creatures.ByRangeName(!range!, Wolf)
VarAdd(procs, !p1!)
VarAdd(procs, !p2!)
VarAdd(procs, !p3!)
!procs!>=3 [zak]
!ringON!<>!ringna!
Self.Equip.Ring(!ringbp!)
exit()
{zak}
!ringON!==!ringna!
Self.UnEquip.Ring(0)
exit()
So these macros are yet UNTESTED,
I made them in simple NOTEPAD, but im 100% sure they will work as intended
and change the range:=... to whatever range u want your bot to check monsters for
Just put them in macros, name them whatever u want, and set auto 1000 whatever