(04-03-2013, 10:12 PM)Beto V Wrote: Hey brother can you modify this macro so when X monsters on screen to use stealth ring, then putt the ring off. Please I give Rep+.
You can do it yourself very easily.
Code:
500 {Stealth Ring by C} ID:=3049 IDON:=3086 BP:=0 Creatures.ByName(Cyclops)>0 [cyc1] Self.Inventory.Ring()<>!IDON! Self.Equip.Ring(!ID!) Exit() {cyc1} Creatures.ByName(Cyclops Drone)>0 [cyc2] Self.Inventory.Ring()<>!IDON! Self.Equip.Ring(!ID!) Exit() {cyc2} Creatures.ByName(Cyclops Smith)>0 [cyc3] Self.Inventory.Ring()<>!IDON! Self.Equip.Ring(!ID!) Exit() {cyc3} Self.Inventory.Ring()==!IDON! Self.UnEquip.Ring(!BP!) Exit()
See this parts: Creatures.ByName(Cyclops)>0 Creatures.ByName(Cyclops Drone)>0 Creatures.ByName(Cyclops Smith)>0
Just change 0 to the number of creatures you want to use. If you want with 1 creature, leave at 0, if you want with 2, put 1, and so on.