BBot - The best bot of the world
Macro Avalanche - 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: Macro Avalanche (/thread-19161.html)



Macro Avalanche - Markos - 01-16-2016

I've looked all over the forum and did not find, need a macro that uses sd when you have one monster and when you have more than 2 use avalanche without player on screen . AngryAngryAngry


RE: Macro Avalanche - kaiquegabriel - 01-16-2016

SD on 1 creature
Code:
1000 {ShootSD} target:=Creature.Target() IDRUNE:=3155 Creatures.Beside()==1 Creature.ShootOn(!target!, !IDRUNE!)

Avalanche on 2+ creatures
Code:
50 {ShootAVA} target:=Creature.Target() IDRUNE:=3161 Creatures.PlayersOnScreen()<=2  Creatures.Beside()>=2 Creature.ShootOn(!target!, !IDRUNE!)

If works, please rep me. Thank you.


RE: Macro Avalanche - Markos - 01-16-2016

Yes work but can be add player safe??
Your reputation rating has successfully been added for this user.


RE: Macro Avalanche - kaiquegabriel - 01-16-2016

(01-16-2016, 03:06 AM)Markos Wrote: Yes work but can be add player safe??
Your reputation rating has successfully been added for this user.

Try.
Code:
50 {ShootAVA} target:=Creature.Target() IDRUNE:=3161 Creatures.PlayersOnScreen()<=2  Creatures.Beside()>=2 Creature.ShootOn(!target!, !IDRUNE!)