Rotation menu

Shout-Out

User Tag List

Thread: Rotation

Results 1 to 10 of 10
  1. #1
    Shamun's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Rotation

    Is there any way to change the rotation of the player without using simulation keyboard or mouse events?

    Rotation
  2. #2
    schlumpf's Avatar Retired Noggit Developer

    Reputation
    755
    Join Date
    Nov 2006
    Posts
    2,759
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes .

  3. #3
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if u wanna be mean you can just overwrite ure cur_facing with a new value but that could make wow cry, Or you can use C_InputControl

  4. #4
    Shamun's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    overwrite will get me instantly ban i guess...
    about this CInputControl how do I use it?

  5. #5
    cenron's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shamun View Post
    overwrite will get me instantly ban i guess...
    about this CInputControl how do I use it?
    Search is your best friend.

    CInputControl Implementation:
    http://www.mmowned.com/forums/wow-me...dge-hacks.html

    Some more info:
    http://www.mmowned.com/forums/wow-me...-movement.html

    If you want to access this function from out of the process:
    http://www.mmowned.com/forums/wow-me...t-process.html

  6. #6
    Shamun's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It doesn't working here part of my code:
    Code:
    class CInputControl
    {
    public:
        void SetMovementFlag( int iFlag, int Enable, unsigned long dwTime = 0 );
        unsigned long GetMovementFlag();
    };
    
    void CInputControl::SetMovementFlag( int iFlag, int Enable, DWORD dwTime )
    {
        DWORD SetFlags = 0x005544A0;
        DWORD GetTickCount = 0x00BE10FC;
        _asm
        {
            mov eax,GetTickCount 
            mov ecx, this
            push dwTime
            push eax
            push Enable
            push iFlag
            call SetFlags
        }
    }
    
    unsigned long CInputControl::GetMovementFlag()
    {
        return *reinterpret_cast<unsigned long*>( this + 4 );
    }
    
    CInputControl * gpInputControl;
    ReadProcessMemory(hProcess, (LPCVOID)0x01175994, (LPVOID)gpInputControl, sizeof(DWORD), NULL);
    when i call to setmovementflags i get an error:

    "Unhandled exception at 0x005544a3 in WowBot.exe: 0xC0000005: Access violation reading location 0x00e40e5e."

  7. #7
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Shamun View Post
    It doesn't working here part of my code:
    Code:
    class CInputControl
    {
    public:
        void SetMovementFlag( int iFlag, int Enable, unsigned long dwTime = 0 );
        unsigned long GetMovementFlag();
    };
    
    void CInputControl::SetMovementFlag( int iFlag, int Enable, DWORD dwTime )
    {
        DWORD SetFlags = 0x005544A0;
        DWORD GetTickCount = 0x00BE10FC;
        _asm
        {
            mov eax,GetTickCount 
            mov ecx, this
            push dwTime
            push eax
            push Enable
            push iFlag
            call SetFlags
        }
    }
    
    unsigned long CInputControl::GetMovementFlag()
    {
        return *reinterpret_cast<unsigned long*>( this + 4 );
    }
    
    CInputControl * gpInputControl;
    ReadProcessMemory(hProcess, (LPCVOID)0x01175994, (LPVOID)gpInputControl, sizeof(DWORD), NULL);
    when i call to setmovementflags i get an error:

    "Unhandled exception at 0x005544a3 in WowBot.exe: 0xC0000005: Access violation reading location 0x00e40e5e."
    arent u supposed to inject that into wow? not ure own program


    Originally Posted by Shamun View Post
    overwrite will get me instantly ban i guess...
    about this CInputControl how do I use it?
    no you wont get banned

  8. #8
    Shamun's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How can I inject it?
    Last edited by Shamun; 11-29-2008 at 06:42 PM.

  9. #9
    kynox's Avatar Member
    Reputation
    830
    Join Date
    Dec 2006
    Posts
    888
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    AHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHHH.

    I would help you.. but it seems you don't have the crucial ability of reading and actually taking in what people say.

  10. #10
    Shamun's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    LOL!
    I tried to understand http://www.mmowned.com/forums/wow-me...t-process.html and I couldn't fully understand it =\
    And I guess if I understand it I will be able to use the setmovementflag

Similar Threads

  1. [REQUEST] MM Shot Rotation macro.
    By Performer in forum World of Warcraft General
    Replies: 2
    Last Post: 01-19-2008, 03:55 AM
  2. .go rotate
    By riki64 in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 01-09-2008, 08:31 AM
  3. Hunter shot rotation
    By Neckringer in forum World of Warcraft Guides
    Replies: 5
    Last Post: 12-26-2007, 04:28 PM
  4. [AutoIT3] WoW Cordinator (X,Y,MapID and rotation memory reading)
    By Vladinator in forum World of Warcraft Bots and Programs
    Replies: 22
    Last Post: 05-15-2007, 03:26 AM
  5. Steady shot rotation = faster ranging
    By Salad in forum World of Warcraft Exploits
    Replies: 8
    Last Post: 04-08-2007, 08:04 PM
All times are GMT -5. The time now is 07:55 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