needs a 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: needs a macro (/thread-17004.html) |
needs a macro - kiritopgw - 12-26-2014 macro needs to establish a stealth ring when it is with me three monsters RE: needs a macro - wedel92 - 12-26-2014 Create 2 macros, 1 macro for each monster: PHP Code: 500 {Stealth 1} ID:=3049 Creatures.ByName(Corym Charlatan)>=2 [corym1] Self.Equip.Ring(!ID!) Exit() {corym1} Self.UnEquip.Ring(0) Exit() PHP Code: 500 {Stealth 2} ID:=3049 Creatures.ByName(Corym Skirmisher)>=2 [corym2] Self.Equip.Ring(!ID!) Exit() {corym2} Self.UnEquip.Ring(0) Exit() RE: needs a macro - kiritopgw - 12-26-2014 hmm is a small problem because he wears the ring and takes off or even kill monsters RE: needs a macro - wedel92 - 12-26-2014 PHP Code: 500 {stealth ring} ring:=3049 Creatures.ByName(Corym Sharlatan)>=1 [jump] RE: needs a macro - kiritopgw - 12-26-2014 but even if they took off the ring that would be great but I Reput flies; p RE: needs a macro - wedel92 - 12-26-2014 sorry i cant help more cuz i found this macro on forum and i cant do more maybe u must add a "Self.UnEquip.Ring"? RE: needs a macro - kiritopgw - 12-26-2014 okay thanks Experiment a great thing; p RE: needs a macro - mr. Kris - 12-26-2014 Hmmm maby this: Code: 500 {Stealth Ring} Self.Attacking()==1 Creatures.OnScreen()>=3 [jump] Self.Equip.Ring(3049) Creatures.OnScreen()<3 {jump} Self.UnEquip.Ring(0) Exit() RE: needs a macro - kiritopgw - 12-26-2014 implies but does not replace ;( working |