Jump to content

How can I do two actions at once?


Macro

Recommended Posts

I would like to do two actions at once - cast a spell while moving back or jump while moving forward.

 

When I try this script

{

wManager.Wow.Helpers.Move.Forward(Move.MoveAction.PressKey, 1500);
wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP);

}

It waits until the first action is done until doing the second action. How do I run two actions at once?

Link to comment
Share on other sites

Hello,

        wManager.Wow.Helpers.Move.Forward(Move.MoveAction.DownKey);
        wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.JUMP);
        System.Threading.Thread.Sleep(1500);
        wManager.Wow.Helpers.Move.Forward(Move.MoveAction.UpKey);

or

        wManager.Wow.Helpers.Move.Forward(Move.MoveAction.DownKey);
        wManager.Wow.Helpers.Move.JumpOrAscend();
        System.Threading.Thread.Sleep(1500);
        wManager.Wow.Helpers.Move.Forward(Move.MoveAction.UpKey);

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...