Results 1 to 10 of 10
  1. #1
    KneroPlays's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    1
    My Mood
    Doh

    Post (Season 8) Fornite No Recoil AHK Script + AHK Bypass

    Hello, i did a Fortnite AHK Bypass and copyied the No Recoil Script (works perfectly).

    Bypass :

    /*
    hyde.dll hides a process from the Task-Manager on Windows2k/Windows7 (x86/x64 bit)!

    Your process can inject it into other processes however you like. The example uses
    SetWindowsHookEx with a CBT hook (the dll exports a CBTProc) to inject it into all
    running processes.

    Press Esc to exit the script.

    Note: if you do not compile the script, AutoHotKey.exe gets hidden. Otherwise the
    the name of the .exe gets hidden.

    Important: This does only work if you are using a x64 bit OS and the 64 bit version
    of AutoHotkey or if you're using a x86 bit OS and the 32 bit version of AutoHotkey.
    This does not work if you have a x64 bit OS but use 32 bit AHK (and vice versa) !!!
    */

    #NoEnv
    SetWorkingDir %A_ScriptDir%

    OnExit, ExitSub

    RunAsAdmin()

    if ((A_Is64bitOS=1) && (A_PtrSize!=4))
    hMod := DllCall("LoadLibrary", Str, "hyde64.dll", Ptr)
    else if ((A_Is32bitOS=1) && (A_PtrSize=4))
    hMod := DllCall("LoadLibrary", Str, "hyde.dll", Ptr)
    Else
    {
    MsgBox, Mixed Versions detected!`nOS Version and AHK Version need to be the same (x86 & AHK32 or x64 & AHK64).`n`nScript will now terminate!
    ExitApp
    }

    if (hMod)
    {
    hHook := DllCall("SetWindowsHookEx", Int, 5, Ptr, DllCall("GetProcAddress", Ptr, hMod, AStr, "CBProc", ptr), Ptr, hMod, Ptr, 0, Ptr)
    if (!hHook)
    {
    MsgBox, SetWindowsHookEx failed!`nScript will now terminate!
    ExitApp
    }
    }
    else
    {
    MsgBox, LoadLibrary failed!`nScript will now terminate!
    ExitApp
    }

    MsgBox, % "Process ('" . A_ScriptName . "') hidden!"
    Return

    =::ExitApp

    RunAsAdmin()
    {
    Global 0
    IfEqual, A_IsAdmin, 1, Return 0

    Loop, %0%
    params .= A_Space . %A_Index%

    DllCall("shell32\ShellExecute" (A_IsUnicode ? "":"A"),uint,0,str,"RunAs",str,(A_IsCompiled ? A_ScriptFullPath : A_AhkPath),str,(A_IsCompiled ? "": """" . A_ScriptFullPath . """" . A_Space) params,str,A_WorkingDir,int,1)
    ExitApp
    }

    ExitSub:
    if (hHook)
    {
    DllCall("UnhookWindowsHookEx", Ptr, hHook)
    MsgBox, % "Process unhooked!"
    }
    if (hMod)
    {
    DllCall("FreeLibrary", Ptr, hMod)
    MsgBox, % "Library unloaded"
    }
    ExitApp



    Script :

    #NoEnv
    SendMode Input
    SetWorkingDir %A_ScriptDir%

    ; SS
    F11::Suspend

    ; NR
    ~LButton::
    While GetKeyState("LButton") {
    MouseMove(0, 1)
    Sleep, 300
    MouseMove(0, 1)
    Sleep, 300
    }
    Return

    Insert::ExitApp

    MouseMove(X, Y) {
    Return, DllCall("mouse_event", uint, 1, int, x, int, y, uint, 0, int, 0)
    }








    How to use : Do a AutoHotKey File and edit it with Notepad ++ paste the 2 Scripts. First run the No Recoil Script then the Bypass.

  2. The Following User Says Thank You to KneroPlays For This Useful Post:

    xafanon (02-15-2020)

  3. #2
    TBrains's Avatar
    Join Date
    Jan 2018
    Gender
    female
    Posts
    53
    Reputation
    10
    Thanks
    4
    mate i can not get it to work properly compared to other scripts.

  4. #3
    Royce's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    17,967
    Reputation
    4088
    Thanks
    6,418
    If things are censored it means it's against the rules. Don't bypass it

  5. #4
    spekticle's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    1
    Thanks for this!

  6. #5
    ERgergaergaergarggrearg's Avatar
    Join Date
    Feb 2019
    Gender
    female
    Posts
    6
    Reputation
    10
    Thanks
    1
    wait, do I need to make 2 separate scripts for this or so I paste them into the same ahk?

  7. #6
    Snakekarlo1099's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    14
    Reputation
    10
    Thanks
    59
    is there proof that this indeed is undetected?

  8. #7
    Alex_Smith's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Location
    USA
    Posts
    6
    Reputation
    10
    Thanks
    0
    mate i can not get it

  9. #8
    Dania1234321's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    can yall help me like tf is there likea video or something i can watch

  10. #9
    EarthWorm45211's Avatar
    Join Date
    Mar 2019
    Gender
    male
    Posts
    35
    Reputation
    10
    Thanks
    15
    Thank you for this.

  11. #10
    Ron386122's Avatar
    Join Date
    Aug 2019
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    0
    My Mood
    Aggressive
    Yes i do love this

Similar Threads

  1. [Release] AHK Script/NO-RECOIL/Bhop [Pean's AHK MultiScript Final v2]
    By XalecsX in forum Counter-Strike 2 Scripts
    Replies: 171
    Last Post: 02-15-2017, 04:59 PM
  2. [Release] AHK Scripts | Super Simple Recoil Reduction |
    By Vendetta773 in forum Counter-Strike 2 Scripts
    Replies: 21
    Last Post: 12-22-2015, 08:52 AM
  3. [Solved] AHK Outdated Recoil Control Script
    By SaltyMan510 in forum Counter-Strike 2 Help
    Replies: 1
    Last Post: 06-10-2015, 10:44 PM
  4. [Help] How to fix this Recoil Reducer AHK script?
    By Feroztier in forum Counter-Strike 2 Coding & Resources
    Replies: 1
    Last Post: 03-20-2015, 03:03 AM
  5. I need a little bit of editing. CS:GO recoil AHK. [SCRIPT]
    By zagehh in forum Counter-Strike 2 Discussions
    Replies: 3
    Last Post: 12-10-2014, 02:31 AM