![]() |
need sword ring macro help - 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: need sword ring macro help (/thread-16309.html) |
need sword ring macro help - mrbql - 10-05-2014 hi! the one i found doesnt work, it equips the ring when there are no monsters ![]() Code: 1000 {Sword Ring} Creatures.OnScreen()>=2 Self.Equip.Ring(3091) Exit() Creatures.OnScreen()<=1 Self.UnEquip.Ring(0) Exit() RE: need sword ring macro help - erleo - 10-05-2014 Try this [macro]100 {Auto Sword Ring} Creatures.ByName(NAME OF MONSTER)>=4 [else] Self.Inventory.Ring()<>3091 Misc.ItemCountEx(3094)>0 Self.Equip.Ring(3094) Exit() {else} Creatures.ByName(NAME OF MONSTER)<=3 Self.Inventory.Ring()==3091 Self.UnEquip.Ring(0) Exit() [/macro] This is with creatures screen [macro]100 {Auto Sword Ring} Creatures.OnScreen()>=4 [else] Self.Inventory.Ring()<>3091 Misc.ItemCountEx(3094)>0 Self.Equip.Ring(3094) Exit() {else} Creatures.OnScreen()<=3 Self.Inventory.Ring()==3091 Self.UnEquip.Ring(0) Exit() [/macro] RE: need sword ring macro help - mrbql - 10-06-2014 Hi! Unfortunately it doesn't work ![]() RE: need sword ring macro help - erleo - 10-06-2014 ID of sword ring? RE: need sword ring macro help - mrbql - 10-06-2014 (10-06-2014, 06:22 AM)erleo Wrote: ID of sword ring? 3091 |