NEED A MACRO FOR... - 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: NEED A MACRO FOR... (/thread-8650.html) |
NEED A MACRO FOR... - jayko7 - 04-14-2013 Someone can create a macro for me? I need to kills with sd when 3 or more workers golems in the screen . thaanks I created this, but doesnt work fine: 1000 {Sd target} Self.Mana()>=300 Creatures.OnScreen()>=3 Target.Shoot(3155) RE: NEED A MACRO FOR... - spiff26 - 04-15-2013 [macro]2000 {SD Target} Creatures.OnScreen()>=3 Target.Foe() Target.Shoot(3155) Exit()[/macro] RE: NEED A MACRO FOR... - jayko7 - 04-18-2013 (04-15-2013, 02:11 AM)spiff26 Wrote: [macro]2000 {SD Target} Creatures.OnScreen()>=3 Target.Foe() Target.Shoot(3155) Exit()[/macro] thanks for the macro, is very usefull, but i need a macro that use Sd When 3 "worker golems", not sd when 1 worker and 2 dragon hatchling or damaged worker golem. Could u send me ? RE: NEED A MACRO FOR... - Coizado - 04-18-2013 (04-18-2013, 02:24 PM)jayko7 Wrote:(04-15-2013, 02:11 AM)spiff26 Wrote: [macro]2000 {SD Target} Creatures.OnScreen()>=3 Target.Foe() Target.Shoot(3155) Exit()[/macro] There you go friend: Code: 2000 {SD Target by C} Creatures.ByName(Worker Golem)>=3 Target.Foe() Target.Shoot(3155) Exit() REP++ |