Moonwalk when rotation menu

User Tag List

Results 1 to 7 of 7
  1. #1
    PhoenixVip1337's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Moonwalk when rotation

    Hello everyone;

    I have a little problem with my program;

    i'm working to moving point by point;
    When i rotate my char rotation in objectManager; my screen rotate good, my char rotate good; but moving direction not changed;
    i have to press Spacebar or a moving key for refreshing this in game;

    Any people already have this problem ? any issue for fix this in memory ?

    thanks

    Moonwalk when rotation
  2. #2
    PhoenixVip1337's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if people have a way for runing only in memory like Enable/Disable autorun that can fix problem

  3. #3
    Jadd's Avatar 🐸 Premium Seller
    Reputation
    1511
    Join Date
    May 2008
    Posts
    2,432
    Thanks G/R
    81/333
    Trade Feedback
    1 (100%)
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Any movement packet will update your rotation to match your client. This only occurs from an actual movement from user input though.

    From the top of my head I think the only way to invoke this instantly without actually calling an internal function and without actually moving would be toggling walk/run. If you're completely external, I'd say sending the bound key for toggling walk (probably twice to disable it again.)

  4. #4
    PhoenixVip1337's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Jadd View Post
    Any movement packet will update your rotation to match your client. This only occurs from an actual movement from user input though.

    From the top of my head I think the only way to invoke this instantly without actually calling an internal function and without actually moving would be toggling walk/run. If you're completely external, I'd say sending the bound key for toggling walk (probably twice to disable it again.)
    thank you, that's what I'm doing now; but I think it's not very good to spam one key on every point ^^

  5. #5
    NoxiaZ's Avatar Active Member
    Reputation
    23
    Join Date
    May 2019
    Posts
    101
    Thanks G/R
    21/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PhoenixVip1337 View Post
    thank you, that's what I'm doing now; but I think it's not very good to spam one key on every point ^^
    Just figured out which key you need to press and hold them down until you see you are a the right angle or position, by this you do not have to spam one key.
    The only problem here are that if the window lose focus the key stopped being pressed, so you need a work around there.

    This is my move function
    Code:
    if (isBehind)
    {
        HoldKeys.Add(dot > 0.5 ? Keys.Left : Keys.Right);
    }
    else
    {
        if (dot > dotProduct)
        {
            HoldKeys.Add(Keys.Left);
        }
        else if (dot < -dotProduct)
        {
            HoldKeys.Add(Keys.Right);
        }
    }
    
    if (distance > moveModel.Distance)
    {
        HoldKeys.Add(Keys.Up);
    
    }
    else if (moveModel.Retreat)
    {
        if (distance < moveModel.MinDistance)
        {
            HoldKeys.Add(Keys.Down);
        }
    }
    
    public void UpdateWalk()
    {
        var handle = WindowHandle;
        foreach (var key in HoldKeys.Where(x => !lastKeys.Any(c => c == x)))
        {
            WinAPI.PostMessage(handle.ToInt32(), WinAPI.WM_KEYDOWN, (int)key, 0);
        }
    
        foreach (var key in lastKeys.Where(x => !HoldKeys.Any(c => c == x)))
        {
            WinAPI.PostMessage(handle.ToInt32(), WinAPI.WM_KEYUP, (int)key, 0);
        }
    
        lastKeys = HoldKeys.ToArray();
    }

  6. #6
    PhoenixVip1337's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Mar 2019
    Posts
    13
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i just send the autorun; and press rotate (key d); for update i don't need to have game in maximised or focus xD
    i'm looking for doing this in ram atm; if i found this i tell you how

  7. #7
    NoxiaZ's Avatar Active Member
    Reputation
    23
    Join Date
    May 2019
    Posts
    101
    Thanks G/R
    21/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by PhoenixVip1337 View Post
    i just send the autorun; and press rotate (key d); for update i don't need to have game in maximised or focus xD
    i'm looking for doing this in ram atm; if i found this i tell you how
    The same goes with my solution, you dont need to have it in focus or maximized, with PostMessage there are no need - The only time it need to be in focus and maximized is when i have to loot using mouse.
    I don't write to memory, i only read.

Similar Threads

  1. Replies: 0
    Last Post: 09-11-2016, 02:54 PM
  2. PQR going from 75FPS in 25 man to 2 FPS when I activate rotation paying $$$ for help!
    By xcureanddisease in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 12-18-2013, 08:19 AM
  3. Stop turining when rotation is correct?
    By ashleyww in forum WoW Memory Editing
    Replies: 15
    Last Post: 06-07-2009, 08:39 PM
  4. Run furthur indoors when mounted
    By Matt in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 10-30-2006, 05:58 AM
  5. Dont lose damage when u fall [mages only]
    By wicked_joe in forum World of Warcraft Exploits
    Replies: 2
    Last Post: 06-10-2006, 08:01 PM
All times are GMT -5. The time now is 10:16 AM. 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