Results 1 to 3 of 3
  1. #1
    razvantvtv22's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    Need some tips with external auto strafer

    So basically, I've made yesterday an external bhop. It's not the most effective but it works nontheless and it does it job.
    My only problem is, I'd like to add an auto strafer. It'd be really nice and I wouldn't have to press A and D to strafe.
    ```
    Code:
    #include <iostream>
    #include <windows.h>
    #include <conio.h>
    
    enum Space {STOP, JUMP};
    Space space;
    void Input(){
        switch(space){
        case JUMP:
            keybd_event(0x36,0x36,0,0);
            Sleep(20);
        case STOP:
            keybd_event(0x36,0x36,KEYEVENTF_KEYUP,0);
            Sleep(20);
        }
        space=STOP;
        if(GetAsyncKeyState(VK_SPACE))
                space=JUMP;
    
        }
    int main(){
        int sw=1;
        while(sw==1)
            Input();
    }
    Is it actually possible to make an external autostrafer?
    BTW, ignore the bindings. It's the only way I could get around it.

  2. #2
    Rexxyy's Avatar
    Join Date
    Mar 2020
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0
    My Mood
    In Love
    first of alll how tf does your bhop not work properly

    second of all why dont you just go internal since you are already using c++ and third... why tf would you make an external auto strafer when you can just strafe yourself (i would understand if it was a rgae cheat but its literally external)

  3. #3
    Mexor's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    96
    Reputation
    10
    Thanks
    3
    Of course itīs possible.

    check if player is on the ground and the movement of your mouse. So if player is on the ground and you move you mouse left then forceleft and if you move you mouse right then forceright. you donīt need to press A or D for a perfect bunny strafe. The movement of your mouse you can check with setviewangle.
    Last edited by Mexor; 03-27-2020 at 05:56 AM.

Similar Threads

  1. Need some help with moparscape server crashers
    By tonethegreat08 in forum Hack Requests
    Replies: 4
    Last Post: 08-30-2008, 12:52 PM
  2. [b]Need Some Help With My Trainer[/b]
    By shanky1 in forum Visual Basic Programming
    Replies: 2
    Last Post: 08-10-2007, 01:11 AM
  3. Need some help! with WR
    By dikketr0l in forum Visual Basic Programming
    Replies: 1
    Last Post: 07-17-2007, 08:51 AM
  4. need some help with domains.
    By fastbullet in forum WarRock - International Hacks
    Replies: 1
    Last Post: 04-26-2007, 08:44 AM
  5. need some help with client exe.
    By barney in forum Hack Requests
    Replies: 2
    Last Post: 11-03-2006, 10:05 PM