Macro 3 Posted December 4, 2018 Share Posted December 4, 2018 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 https://wrobot.eu/forums/topic/10466-how-can-i-do-two-actions-at-once/ Share on other sites More sharing options...
Droidz 2738 Posted December 5, 2018 Share Posted December 5, 2018 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); Pudge and Macro 1 1 Link to comment https://wrobot.eu/forums/topic/10466-how-can-i-do-two-actions-at-once/#findComment-49742 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now