Hotkey.use macro - 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: Hotkey.use macro (/thread-3451.html) |
Hotkey.use macro - garst123 - 07-26-2012 Hello guys, i am working at upgrading one of my scripts, i wants to make macro which would be using explosion rune if there are more than 4 monster arount you, my macrio looks like that: 2000 {explosion } Self.Mana>=0 Self.Attacking Creatures.Beside>=4 Creatures.PlayersOnScreen=01 Hotkey.Use(3200) for exori everything is working fine, do some1 else had problem with Hotkey.Use() macro? RE: Hotkey.use macro - Dexter - 07-26-2012 To use explosion in the target, try this: Code: 2000 {explosion } Self.Mana>=0 Self.Attacking Creatures.Beside>=4 Creatures.PlayersOnScreen=01 Target.Shoot(3200) To use explosion in itself, try this way (Not sure ir it's works): Code: 2000 {explosion } Self.Mana>=0 Self.Attacking Creatures.Beside>=4 Creatures.PlayersOnScreen=01 Target.Self Target.Shoot(3200) RE: Hotkey.use macro - garst123 - 07-26-2012 working good;d thaks;p;p |