What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Move Backwards a Few Steps

celldweller

New Member
Joined
Dec 7, 2012
Messages
3
Reaction score
0
I am trying to modify an addon to make my character move backwards a few steps when a given criteria is met. I have it working currently with Shadowmeld, but now I would like it to just move my toon back a few steps. Can someone tell me how to do this?

Thanks
 
I am trying to modify an addon to make my character move backwards a few steps when a given criteria is met. I have it working currently with Shadowmeld, but now I would like it to just move my toon back a few steps. Can someone tell me how to do this?

Thanks

Hi, Celldweller,

The C# code you're probably looking for, looks like this:

using Styx.WoWInternals;

WoWMovement.Move(WoWMovement.MovementDirection.Backwards, TimeSpan.FromMilliseconds(1000));

In the future, these kinds of questions belong in the Developer forum.

cheers & good luck with your project,
chinajade
 
Back
Top