Click to move? menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 33
  1. #16
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ashleyww View Post
    Dude, you a life saver.

    +Rep(if i can)

    What esle do you know, do you know how to check if a Node is there?
    You don't even need to have a bit of understanding what you are doing. You Just copy the crap, probably thinking "lol @ that weird numbers" and it works.
    Next patch you are going to open the next thread. "my function is broken why ???" .

    The worst thing is you can copy everything 100x times if you just use the search function and read a bit about it (Shynds blog anyone ?) and you DONT do it and ask instead.
    So please search a bit and you ll know how to detect nodes.

    @qjlex: I have no idea of C# but isnt it kinda stupid to cast integers to integers ?
    Last edited by flo8464; 07-15-2009 at 02:02 PM.

    Click to move?
  2. #17
    FenixTX2's Avatar Active Member
    Reputation
    23
    Join Date
    Mar 2009
    Posts
    125
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    As you're right at the beginning of the learning curve, why not learn to use C#?
    The language is incredibly easy to pick up and the skills you gain are transferable.

    Autoits kung-fu is not strong

  3. #18
    amadmonk's Avatar Active Member
    Reputation
    124
    Join Date
    Apr 2008
    Posts
    772
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Because C# is for noobs. C++ is the language of the future.

    (Waiting for Cypher, now.)
    Don't believe everything you think.

  4. #19
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by amadmonk View Post
    Because C# is for noobs. C++ is the language of the future.

    (Waiting for Cypher, now.)

    Rofl.

    AutoIt is for noobs, C# is the language of the future, and C++ is the language of the awesome.

  5. #20
    _duracell's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by flo8464 View Post
    @qjlex: I have no idea of C# but isnt it kinda stupid to cast integers to integers ?
    Math.Sqrt returns a double.

  6. #21
    xolyspirit's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi people. Tell me please what's wrong with my code?
    HWND hwnd;
    float x=1,y=2,z=3;
    DWORD hnd;
    hwnd=FindWindow(NULL,"World of Warcraft");
    if (hwnd==0) ShowMessage("Нет окна");
    GetWindowThreadProcessId(hwnd,&hnd);
    WriteProcessMemory(&hnd,(LPVOID)(CTM_BASE+CTM_X),(LPCVOID)&x,sizeof(float),NULL) ;
    WriteProcessMemory(&hnd,(LPVOID)(CTM_BASE+CTM_Y),(LPCVOID)&y,sizeof(float),NULL) ;
    WriteProcessMemory(&hnd,(LPVOID)(CTM_BASE+CTM_Z),(LPCVOID)&z,sizeof(float),NULL) ;
    WriteProcessMemory(&hnd,(LPVOID)(CTM_BASE+ CTM_STATUS),(LPCVOID)STATUS,sizeof(float),NULL);

  7. #22
    jjaa's Avatar Contributor
    Reputation
    245
    Join Date
    Dec 2006
    Posts
    562
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xolyspirit View Post
    Hi people. Tell me please what's wrong with my code?
    Originally Posted by Apoc View Post

    1. Posting;
    1. Search before posting. (This includes searching Google)
    4. If someone posts code/information/etc do not complain you do not know how to use it. If you don't have the appropriate level of knowledge go learn what you need to fill the gap.
    3. Questions;
    5. No stupid questions. The stupidity of your question is to be determined by a jury of your peers.
    6. Asking for help fixing compiler errors is prohibited. (Obvious exceptions can be made if no documentation anywhere exists.)
    4. Spoonfeeding;
    1. This section is not a copy/paste haven. Do not expect hand outs.
    Lastly we are not your debuggers at least show some effort before asking for help.....CopyPasta does not count as effort.....

  8. #23
    xolyspirit's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been searching for something like this and have found it here!
    I'm not complaining and i know how to use it. I have the appropriate level of knowledge to use it.
    Question's not stupid as for me.
    And i have no compiler errors. Project successfully built.
    But for some reason my toon doesn't move (CTM Enabled).
    I'm sory. Constants defined a litle higher
    #define CTM_BASE 0x011180A0
    #define CTM_X 0x8C
    #define CTM_Y 0x90
    #define CTM_Z 0x94
    #define CTM_STATUS 0x1C
    #define STATUS 0x4
    Any ideas or sugestions?

  9. #24
    flo8464's Avatar Active Member
    Reputation
    30
    Join Date
    Apr 2009
    Posts
    434
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xolyspirit View Post
    Hi people. Tell me please what's wrong with my code?
    Yes.
    Using a PID instead of a process handle for WriteProcessMemory() shows you have no clue how that function works.
    Check msdn.

    You also don't open the process.

  10. #25
    xolyspirit's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see. My fault. I wasn't attentive. I've fixed it.
    HWND hwnd;
    float x=1,y=2,z=3;
    DWORD procid;
    HANDLE hproc;
    hwnd=FindWindow(NULL,"World of Warcraft");//get window handle
    if (hwnd==0) ShowMessage("WOW не запущен");//check if window exists
    GetWindowThreadProcessId(hwnd,&procid);// get process id
    hproc = OpenProcess( PROCESS_ALL_ACCESS,TRUE, procid );//get process handle
    WriteProcessMemory(&hproc,(LPVOID)(CTM_BASE+CTM_X),(LPCVOID)&x,sizeof(float),NUL L);
    WriteProcessMemory(&hproc,(LPVOID)(CTM_BASE+CTM_Y),(LPCVOID)&y,sizeof(float),NUL L);
    WriteProcessMemory(&hproc,(LPVOID)(CTM_BASE+CTM_Z),(LPCVOID)&z,sizeof(float),NUL L);
    WriteProcessMemory(&hproc,(LPVOID)(CTM_BASE+ CTM_STATUS),(LPCVOID)STATUS,sizeof(float),NULL);
    But it still doesn't work. Don't understand why?

  11. #26
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "I fixed it but it still doesn't work"

    You're a moron.

  12. #27
    xolyspirit's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What makes you think so?
    And why do you think you are allowed say it?
    For future... will appriciate any useful comments, not flame.

  13. #28
    ramey's Avatar Member
    Reputation
    45
    Join Date
    Jan 2008
    Posts
    320
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xolyspirit View Post
    What makes you think so?
    And why do you think you are allowed say it?
    For future... will appriciate any useful comments, not flame.
    Your comment is a bit of a useless post.

  14. #29
    xolyspirit's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ramey View Post
    Your comment is a bit of a useless post.
    just like the one above mine.
    just like yours.
    just like this one.
    All they are offtopic.
    I came here with a certain question. Not flaming. And flo8464 helped me. But if someone don't want help, he shouldn't make jokes. I'll try to survive without your useless comments.
    One more time.... will be gratful for any useful information. what am i doing wrong?

  15. #30
    Xarg0's Avatar Member
    Reputation
    61
    Join Date
    Jan 2008
    Posts
    389
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xolyspirit View Post
    What makes you think so?
    And why do you think you are allowed say it?
    For future... will appriciate any useful comments, not flame.
    A fix is supposed to make things work ^^
    You can't say "I fixed it but it still doesn't work!" it's just stupid ^^
    I hacked 127.0.0.1

Page 2 of 3 FirstFirst 123 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. [3.2] Click To Move
    By Kamuuk in forum WoW Memory Editing
    Replies: 25
    Last Post: 08-22-2009, 10:59 AM
  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 06:24 AM. 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