How To Move WoW Player in C# menu

User Tag List

Results 1 to 7 of 7
  1. #1
    zamba1587's Avatar Member
    Reputation
    15
    Join Date
    Jan 2008
    Posts
    6
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    How To Move WoW Player in C#

    Hi Every One,

    Just Wanted to Share Method on How To Move a Player using C#

    Offsets are for WoW Version 4.2.0 14333 http://www.mmowned.com/forums/world-...mp-thread.html

    Code:
           
            private void ClickToMove(float newX, float newY, uint baseWoW, BlackMagic wow)
            {
                uint CTM = 0x995350;
                uint CTM_PUSH = CTM + 0x1C;
                uint CTM_X = CTM + 0x8C;
                uint CTM_Y = CTM_X + 0x4;
                uint CTM_Z = CTM_Y + 0x4;
    
                wow.WriteFloat(baseWoW + CTM_X, newX);
                wow.WriteFloat(baseWoW + CTM_Y, newY);
                wow.WriteUInt(baseWoW + CTM_PUSH, 4);
            }
    Thanks For Reading I hope I have help some one!
    Last edited by zamba1587; 08-06-2011 at 06:30 AM.

    How To Move WoW Player in C#
  2. #2
    streppel's Avatar Active Member
    Reputation
    78
    Join Date
    Mar 2007
    Posts
    196
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for later implementation of flying you should write to CTM_Z too.
    and while in a project context, you should use a class for all the moving/interacting where you could have an instance of blackmagic you could access and won't have to pass it as argument all the time.

  3. #3
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    You need to implement z for normal movement. If a Waypoint is on the side of a hill then your character will try to walk into the hill as if the world is flat. This has been posted a 100x and you did not even do a good job, people don't just give rep away. Next time come up with something better like this http://www.mmowned.com/forums/world-...explained.html

  4. #4
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1460
    Join Date
    Apr 2007
    Posts
    751
    Thanks G/R
    183/834
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    You need to implement z for normal movement. If a Waypoint is on the side of a hill then your character will try to walk into the hill as if the world is flat. This has been posted a 100x and you did not even do a good job, people don't just give rep away. Next time come up with something better like this http://www.mmowned.com/forums/world-...explained.html
    That wouldnt be a problem if you were on a flying mount although if you want to record simple waypoints and use them you wouldnt be having a problem like running into a wall.
    That also depends on the distance between each waypoint
    This might've helped someone, just because you did not earn anything from it doesn't mean everyone else didn't.
    Anyways, because you zamba is contributing I'll give you the rep you deserve
    Last edited by Neer; 08-06-2011 at 03:31 PM.

  5. #5
    DarkLinux's Avatar Former Staff
    CoreCoins Purchaser Authenticator enabled
    Reputation
    1627
    Join Date
    May 2010
    Posts
    1,846
    Thanks G/R
    193/539
    Trade Feedback
    16 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    I did a little Image so you get the idea...



    I simplified to x and y. If you don't set the y then your character is trying to get to the inside of the hill. You will end up spazzing your way up the hill if you spam 1,0. If you dont, you will move a little and the stop.

    @alche001
    WTF? "That also depends on the distance between each waypoint"?? This will help the people who cant use the search bar, give it a week and it will be on the 2nd page and then it will help no one lols.
    Last edited by DarkLinux; 08-06-2011 at 06:34 PM.

  6. #6
    Neer's Avatar Trend Rider Authenticator enabled
    Reputation
    1460
    Join Date
    Apr 2007
    Posts
    751
    Thanks G/R
    183/834
    Trade Feedback
    6 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by DarkLinux View Post
    I did a little Image so you get the idea...



    I simplified to x and y. If you don't set the y then your character is trying to get to the inside of the hill. You will end up spazzing your way up the hill if you spam 1,0. If you dont, you will move a little and the stop.

    @alche001
    WTF? "That also depends on the distance between each waypoint"?? This will help the people who cant use the search bar, give it a week and it will be on the 2nd page and then it will help no one lols.
    How To Move WoW Player in C#-4e3dfe5a41006_wakapow-png
    There you go.

  7. #7
    cvccbum's Avatar Member
    Reputation
    1
    Join Date
    Sep 2009
    Posts
    26
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alche001 View Post
    How To Move WoW Player in C#-4e3dfe5a41006_wakapow-png
    There you go.
    You, my friend, should probably stop posting..
    Not writing to the Z value while doing CTM is retarded.. Arguing about it is even worse.

Similar Threads

  1. How to move player from A to B
    By Vixentrix in forum Tree of Savior Exploits|Hacks
    Replies: 2
    Last Post: 11-15-2015, 10:47 AM
  2. [Exploit] How to crash other players/server on wow 3.3.5a (private)
    By pilattao in forum WoW UI, Macros and Talent Specs
    Replies: 5
    Last Post: 11-26-2014, 02:36 AM
  3. OwnedCore Survey: How Many WoW Players Actively Bot?
    By Jeremiah in forum Articles and Interviews
    Replies: 1
    Last Post: 09-12-2011, 07:21 PM
  4. How to get WoW and their Patches with Hack?
    By fReAk in forum World of Warcraft General
    Replies: 0
    Last Post: 06-11-2006, 01:41 AM
All times are GMT -5. The time now is 02:57 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search