Configurate area spells - 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: Configurate area spells (/thread-16768.html) |
Configurate area spells - georgeshoter1 - 12-01-2014 Good Morning, I would like to know how i can configurate are spells for special situations, like: "Shot exori if 3 or more monster" "Shot exori gran if 4 or more monster" We have this option? How i can configurate that? RE: Configurate area spells - dawid_xxx9 - 12-01-2014 You have to create a macro. Code: 1000 {exori} Self.Mana>=200 Self.Attacking==01 Creatures.Beside>=3 Self.Say(exori) It have to be two separate macros RE: Configurate area spells - georgeshoter1 - 12-01-2014 (12-01-2014, 12:48 PM)dawid_xxx9 Wrote: You have to create a macro. Thank you bro, it's working alredy May i ask more 1 thing? Have an option to avoid specific sqm? Found Alredy... Thank you xD (12-01-2014, 01:18 PM)georgeshoter1 Wrote:(12-01-2014, 12:48 PM)dawid_xxx9 Wrote: You have to create a macro. RE: Configurate area spells - mr. Kris - 12-02-2014 I think that would be better macros (safier) by ErLeo Code: 500 {Exori} Criaturas:=4 Wait:=1 VarMult(Wait, 12) Creatures.PlayersOnScreen()>=2 [sp] Time:=0 Exit() {sp} VarAdd(Time, 1) Creatures.Beside()>=!Criaturas! !Time!>=!Wait! Self.Say(exori) Exit() Code: 500 {Exori Gran} Criaturas:=4 Wait:=1 VarMult(Wait, 12) Creatures.PlayersOnScreen()>=2 [sp] Time:=0 Exit() {sp} VarAdd(Time, 1) Creatures.Beside()>=!Criaturas! !Time!>=!Wait! Self.Say(exori gran) Exit() |