(06-26-2013, 12:30 PM)Kubeush Wrote:(06-10-2013, 08:03 AM)November Wrote: 1000 {Stealth Ring} Self.Attacking()==1 Creatures.NPCOnScreen()>=3 [else] Self.Equip.Ring(3049) Exit() {else} Self.UnEquip.Ring(0) Exit()Bot don't unequip the ring
Make two different macros.
For example:
Quote:EquipStealthRing
1000 {EquipStealthRing}
a:=Creatures.OnScreen()
!a!>3
Self.Equip.Ring(3049)
Quote:UnEquipStealthRing
1000 {UnEquipStealthRing}
a:=Creatures.OnScreen()
!a!<3
Self.UnEquip.Ring(0)
(3049)
That should work.