Stealth Ring Script / Macro - 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: Stealth Ring Script / Macro (/thread-6932.html) |
Stealth Ring Script / Macro - LinkerZz - 01-31-2013 I'd like a Script / Macro that puts on a stealth ring when there are four or more tarantulas on screen, and only takes off when there is less than four. How do I do this? RE: Stealth Ring Script / Macro - Kimoszin - 02-01-2013 Configure: [macro]1000 {Equip Ring} COUNT:=3 ID_RING:=9998 ID_USEDRING:=9999 Creatures.ByName(CREATURE_NAME)>=!COUNT! [desequi] Self.Inventory.Ring()<>!ID_USEDRING! Self.Equip.Ring(!ID_RING!) Exit() {desequi} Self.Inventory.Ring()==!ID_USEDRING! Self.UnEquip.Ring(0)[/macro] |