Help with macro alert - 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: Help with macro alert (/thread-5328.html) |
Help with macro alert - whey - 11-12-2012 Hey i need help i want to make 2x macros i want one when i enter the cave and one when i leave the cave. I want the first one too activate the (player on screen) and the second one disable (player on screen) when i leave the cave. i tried Protectors.Disable(Player on Screen) But it didn't work, so i guess i miss alot of actions in the macro? help pls RE: Help with macro alert - spiff26 - 11-12-2012 when you get in the cave you need to add a macro (in cavebot) and call the following macro Code: 0 {Protector Enable} Protectors.Enable(Player on Screen) Exit() And make the same process when u leave, but add this macro Code: 0 {Protector Disnable} Protectors.Disable(Player on Screen) Exit() |