![]() |
Stealth ring macro - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Support (https://forums.bmega.net/forum-6.html) +--- Forum: Support & Help (https://forums.bmega.net/forum-8.html) +--- Thread: Stealth ring macro (/thread-10153.html) |
Stealth ring macro - whey - 06-09-2013 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() ![]() RE: Stealth ring macro - spiff26 - 06-11-2013 Look this http://wiki.bmega.net/doku.php?id=samples#equip_unequip_ring_with_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] |