![]() |
Macro [utamo vita] - 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: Macro [utamo vita] (/thread-11020.html) |
Macro [utamo vita] - ociep02 - 07-22-2013 Hello! Can somebody help me with create script which use utamo vita when character are attacking by 3 or more monsters? I would be greatfull ![]() RE: Macro [utamo vita] - Grue - 07-23-2013 Macro: Creature.Attacking()=>3 Self.Mana()50 Self.Say(utamo vita) RE: Macro [utamo vita] - voonart - 07-23-2013 (07-23-2013, 10:37 AM)Grue Wrote: Macro: LoL..... 800 {Utamo} Creatures.Beside()>=3 Self.Mana()>=50 Self.Say(Utamo Vita) It will cast Utamo Vita when 3 monsters are 1sqm from you. note: if you want to cast utamo when 3 monsters are on screen use: 800 {Utamo} Creatures.OnScreen()>=3 Self.Mana()>=50 Self.Say(Utamo Vita) note: if you want to cast utamo when 3 monsters are on screen in range less than 3 800 {Utamo} Creatures.ByRange(3)>=3 Self.Mana()>=50 Self.Say(Utamo Vita) Please test it before use and share if is it working propely. U can rep me also ![]() |