BBot - The best bot of the world

Full Version: Stealth ring macro
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey! i have a macro to use stealth ring when there is more than 4 creatures on screen but can someone change it so it equips it only when it's 4x tarantulas on screen please?

1000 {Stealth Ring} Self.Attacking()==1 Creatures.NPCOnScreen()>=4 [else] Self.Equip.Ring(3049) Exit() {else} Self.UnEquip.Ring(0) Exit() Angel
Look this
http://wiki.bmega.net/doku.php?id=sample...x_monsters

Also, your macro dont work, the way you did it is checking for 4 more NPCs on the screen, and not 4 monsters (there is Creatures.NPCOnScreen()>=4 in place of Creatures.OnScreen()>=4). The right would be like this:
[macro]1000 {Stealth Ring} Self.Attacking()==1 Creatures.OnScreen()>=4 [else] Self.Equip.Ring(3049) Exit() {else} Self.UnEquip.Ring(0) Exit()[/macro]