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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Move Backwards a Few Steps

celldweller

New Member
Joined
Dec 7, 2012
Messages
3
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