[3.2] Click To Move menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [3.2] Click To Move

    Hello,

    I've got a problem with click to move, i do have the right addresses and offsets.

    The thing is, my character does start to walk when i write 4 to `0x01281854`, after writing the Positions in the correct addresses, but he isnt moving in the right way. The values of `012818C4` (ClickToMove-XPosition) differ greatly from my X position (Usually a negative number, but it does change when i walk).

    For example, my X would be `-4254.382`, but when i look at ClickToMove, it seems to be `3290439247`.

    Search didnt help much, nor did wow.dev.

    Please MMowned, pimp my Click2Move!

    [3.2] Click To Move
  2. #2
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1415
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/571
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    lololololol fail at reading memory. I am 99% sure that an address with decimals is not classified as a 4byte.

  3. #3
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wait.. right.. Ok..

    Thanks /blush.

    *Fixed now* Guess you cant just copy-paste after all..
    Last edited by Kamuuk; 08-15-2009 at 08:36 AM.

  4. #4
    Kryso's Avatar Active Member
    Reputation
    40
    Join Date
    Jul 2009
    Posts
    97
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    private const uint ctmBase = 0x01281838;
    
    private const uint ctmTurnScale = ctmBase + 0x04;
    private const uint ctmDistance = ctmBase + 0x0c;
    private const uint ctmAction = ctmBase + 0x1c;
    private const uint ctmTarget = ctmBase + 0x20;
    private const uint ctmDestinationX = ctmBase + 0x8C;
    private const uint ctmDestinationY = ctmDestinationX + 0x4;
    private const uint ctmDestinationZ = ctmDestinationY + 0x4;
    edit: nvm

  5. #5
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It wasnt the offsets, it was the data type. Thanks for the fast responses though, on to the next error!
    Last edited by Kamuuk; 08-15-2009 at 08:47 AM.

  6. #6
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A lot of other Radars and tutorials seem to read them as floats, is there any reason for that?

    I'm trying to make a radar, to test out my Library. Is there any good way to convert from these uint coordinates to radar coords? Been trying all sorts of stuff the whole afternoon, cant really make a nice formula

  7. #7
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This thread makes me cry irl.

  8. #8
    furang's Avatar Member
    Reputation
    19
    Join Date
    Jul 2009
    Posts
    84
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    A lot of other Radars and tutorials seem to read them as floats, is there any reason for that?
    You may not belive, but they are really float. And you shouldn't convert coords from uint to float. You should read them as float from the begining.

  9. #9
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by furang View Post
    You may not belive, but they are really float. And you shouldn't convert coords from uint to float. You should read them as float from the begining.
    The fact that someone even has to state this for the OP is testament to the fact that all he knows how to do is copy+paste and hence doesn't deserve the help anyway.

    He doesn't want to learn and help himself, he wants to fix his copypasta.

  10. #10
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Tbh, i dont like copy pasting, and i'm trying really hard to learn and do everything myself.

    Guess i'm doing it wrong...

  11. #11
    Sychotix's Avatar Moderator Authenticator enabled
    Reputation
    1415
    Join Date
    Apr 2006
    Posts
    3,942
    Thanks G/R
    285/571
    Trade Feedback
    1 (100%)
    Mentioned
    7 Post(s)
    Tagged
    0 Thread(s)
    thats why i said what i said =P
    lololololol fail at reading memory. I am 99% sure that an address with decimals is not classified as a 4byte.

  12. #12
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyhow, here's the source for a full working radar, and some sorta framework.
    You can also click on any entity in the radar to walk to it.

    Still working on it, and its in no way perfect coding.
    Constructive criticism appreciated

    http://www.megaupload.com/?d=YAKKSL6L

  13. #13
    Jozhua's Avatar Member
    Reputation
    5
    Join Date
    Mar 2007
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kamuuk View Post
    Anyhow, here's the source for a full working radar, and some sorta framework.
    You can also click on any entity in the radar to walk to it.

    Still working on it, and its in no way perfect coding.
    Constructive criticism appreciated

    MEGAUPLOAD - The leading online storage and file delivery service
    I bet its a virus.

  14. #14
    Kamuuk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Its a visual studio project, open it if you want.

    Online virus scan
    Last edited by Kamuuk; 08-15-2009 at 12:46 PM.

  15. #15
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jozhua View Post
    I bet its a virus.

    I bet you're a retard.

    Well whaddya know, that was a safe bet, I was right!

Page 1 of 2 12 LastLast

Similar Threads

  1. [Hack] Guardians CTM Teleporter (Click to move)
    By The-Guardian in forum WoW EMU Programs
    Replies: 95
    Last Post: 06-09-2020, 02:50 PM
  2. Click to Move - Explained
    By Apoc in forum WoW Memory Editing
    Replies: 33
    Last Post: 01-19-2010, 07:28 AM
  3. InProcess Click To Move Call
    By Harland in forum WoW Memory Editing
    Replies: 5
    Last Post: 01-11-2010, 06:11 PM
  4. Click to move?
    By ashleyww in forum WoW Memory Editing
    Replies: 32
    Last Post: 07-18-2009, 08:48 PM
  5. Click to Move Problem
    By Rival-Fr in forum WoW Memory Editing
    Replies: 5
    Last Post: 07-03-2009, 09:27 AM
All times are GMT -5. The time now is 02:20 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search