![]() |
Exori 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: Exori Macro (/thread-15261.html) |
Exori Macro - KarimEhab - 06-14-2014 I need a macro to do exori when 2 creatures are arround me and no players are on screen , because i play pvpe world. Thanks in advance ^^ RE: Exori Macro - mr. Kris - 06-14-2014 Erleo macro: Quote:500 {Exori} Criaturas:=2 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() RE: Exori Macro - KarimEhab - 06-14-2014 it works but there is alittle problem, if he's low on mana he doesn't use a mana pot RE: Exori Macro - mr. Kris - 06-15-2014 Try this Quote:500 {Exori} Criaturas:=2 Wait:=1 VarMult(Wait, 12) Creatures.PlayersOnScreen()>=2 [sp] Time:=0 Exit() {sp} VarAdd(Time, 1) Creatures.Beside()>=!Criaturas! !Time!>=!Wait! Self.Mana()>100 Self.Say(exori) Exit()or Quote:500 {Exori} Criaturas:=2 Wait:=1 VarMult(Wait, 12) Creatures.PlayersOnScreen()>=2 Self.Mana()>100 [sp] Time:=0 Exit() {sp} VarAdd(Time, 1) Creatures.Beside()>=!Criaturas! !Time!>=!Wait! Self.Say(exori) Exit() set Your manas to use when low than 110 mana points RE: Exori Macro - KarimEhab - 06-15-2014 i need the bot to use mana pot only when he needs to use exori RE: Exori Macro - mr. Kris - 06-15-2014 Quote:500 {Exori} Criaturas:=2 Wait:=1 VarMult(Wait, 12) Creatures.PlayersOnScreen()>=2 [sp] Time:=0 Exit() {sp} VarAdd(Time, 1) Creatures.Beside()>=!Criaturas! Hotkey.Use(268) !Time!>=!Wait! Self.Say(exori) Exit() |