elitepvpers

elitepvpers (https://www.elitepvpers.com/forum/)
-   PlayerUnknown's Battlegrounds (https://www.elitepvpers.com/forum/playerunknowns-battlegrounds/)
-   -   PUBG NO Recoil [Released] (https://www.elitepvpers.com/forum/playerunknowns-battlegrounds/4295151-pubg-no-recoil-released.html)

naokyo 09/03/2017 19:00

How I can download it?

yamahacpre 09/03/2017 22:44

Code:

    int RecoilState = 3;
    bool LeftMouseDown = true;
    int leftMouseVKCode =1;
    int RecoilState = 4;
   
    void __stdcall RemoveRecoil()
    {
      HWND foregroundWin; // esi@2
   
      leftMouseVKCode = 1;
      while ( 1 )
      {
        foregroundWin = GetForegroundWindow();
        if ( foregroundWin == FindWindowA("UnrealWindow", 0) && RecoilState == 3 )
        {
          if ( LeftMouseDown )
          {
            Sleep(8u);
            mouse_event(1u, 0, 2u, 0, 7u);
          }
        }
        Sleep(1u);
      }
    }
   
    void __stdcall KeyHandlerThread()
    {
      while ( 1 )
      {
        if ( GetAsyncKeyState(0x78) < 0 )          // F9 turns recoil reducer on.
        {
          RecoilState = 3;
          Beep(0x320u, 0xC8u);
        }
        if ( GetAsyncKeyState(0x79) < 0 )          // F10 turns recoil reducer off.
        {
          RecoilState = 4;
          Beep(0x64u, 0xC8u);
        }
        LeftMouseDown = GetAsyncKeyState(leftMouseVKCode) < 0;
        Sleep(1u);
      }
    }
   
    void main() {
   
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)RemoveRecoil, 0, 0, 0);
    CreateThread(0, 0, (LPTHREAD_START_ROUTIN)KeyHandlerThread, 0, 0, 0);
   
    std::cin.get();
   
    }

delete if this is against the rules ty

Shawak 09/03/2017 22:54

@[Only registered and activated users can see links. Click Here To Register...] Why should it be against our rules? Feel free to create an own topic for this =)

I will close this for now.


All times are GMT +2. The time now is 17:02.

Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.