BBot - The best bot of the world
MACRO - Stealth Ring - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html)
+--- Forum: Requests (https://forums.bmega.net/forum-17.html)
+--- Thread: MACRO - Stealth Ring (/thread-10136.html)



MACRO - Stealth Ring - Seeken - 06-09-2013

Hi, i'm looking for macro, wich equiping STEALTH RING, when more than 3 creatures on screen, and unequping when there is less than 3 creatures on screen.

I can't find it here!

Big rep, for working one!


RE: MACRO - Stealth Ring - November - 06-10-2013

1000 {Stealth Ring} Self.Attacking()==1 Creatures.NPCOnScreen()>=3 [else] Self.Equip.Ring(3049) Exit() {else} Self.UnEquip.Ring(0) Exit()


RE: MACRO - Stealth Ring - Kimoszin - 06-10-2013

http://wiki.bmega.net/doku.php?id=samples#equip_unequip_ring_with_x_monsters


RE: MACRO - Stealth Ring - Kubeush - 06-26-2013

(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 Sad


RE: MACRO - Stealth Ring - Seeken - 06-26-2013

(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 Sad


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.