![]() |
Utani hur when... 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: Utani hur when... MACRO (/thread-15843.html) |
Utani hur when... MACRO - lordekbyku - 08-13-2014 Hello! I need macro which will cast utani hur ONLY when there're at least 1 monster on screen! Ofc I'll give rep+ ![]() Thanks in advance ![]() RE: Utani hur when... MACRO - lordekbyku - 08-13-2014 Also please make macro which will cast exori when nobody except of me on screen, but it will casy exori only when creatures by name beside me ( for example trolls, and swamp trolls) 2+ monsters. Ty in advance ![]() RE: Utani hur when... MACRO - finha182 - 08-22-2014 (08-13-2014, 09:29 PM)lordekbyku Wrote: Also please make macro which will cast exori when nobody except of me on screen, but it will casy exori only when creatures by name beside me ( for example trolls, and swamp trolls) 2+ monsters. Do not forget to change the amount of monsters and the name of the creature Code: 500 {Utani hur if monster} monstersCount:=1 Creatures.ByName(Rotworm)>=!monstersCount! Status.Haste()==0 Self.Say(Utani hur) Exit() change monstersCount to the number of creatures on screen and name on Creatures.ByName macro to exori : Code: 2000 {AutoAreaAttack!} Creatures.PlayersOnScreen()<=1 Creatures.ByNameBeside(swamp trolls)>=2 Self.Mana()>=150 Self.Say(exori) |