Thread: Aim Assist AHK

Page 1 of 4 123 ... LastLast
Results 1 to 15 of 47
  1. #1
    wizzled33z3's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    4

    Aim Assist AHK

    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 2450

    version = v2.4
    traytip, Fortnite Assist %version%, Fortnite Assist %version% has started running in the background. Click "help" for credits., 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, Fortnite Assist %version%
    Menu, tray, Add, Fortnite Assist %version%, return
    Menu, tray, Add
    Menu, tray, Add, Help, info
    Menu, tray, Add, Exit, exit
    SetKeyDelay,-1, 1
    SetControlDelay, -1
    SetMouseDelay, -0.5
    SetWinDelay,-1
    SendMode, InputThenPlay
    SetBatchLines,-1
    ListLines, Off
    CoordMode, Pixel, Screen, RGB
    CoordMode, Mouse, Screen
    PID := DllCall("GetCurrentProcessId")
    Process, Priority, %PID%, High

    EMCol := (0xFE6A20), (0xAF2AFE)
    ColVn := 61.843
    AntiShakeX := (A_ScreenHeight // 159)
    AntiShakeY := (A_ScreenHeight // 127)
    ZeroX := (A_ScreenWidth // 2)
    ZeroY := (A_ScreenHeight // 2)
    CFovX := 100
    CFovY := 100
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY

    Loop, {
    KeyWait, LButton, D
    PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
    if (!ErrorLevel=0) {
    loop, 6 {
    PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
    AimX := AimPixelX - ZeroX
    AimY := AimPixelY - ZeroY
    DirX := -0.8
    DirY := -0.8
    If ( AimX > 0 ) {
    DirX := 0.9
    }
    If ( AimY > 0 ) {
    DirY := 1.0
    }
    AimOffsetX := AimX * DirX
    AimOffsetY := AimY * DirY
    MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
    MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
    DllCall("mouse_event", uint, 1, int, MoveX * 0.9, int, MoveY, uint, 0, int, 0)
    }
    }
    }

    Pause:: pause
    return:
    goto, init

    info:
    msgbox, 0, Fortnite Assist %version%, `nMade by: `nDark Cloud Nation/TMOG `n `n
    return

    exit:
    exitapp

  2. The Following 4 Users Say Thank You to wizzled33z3 For This Useful Post:

    Bobman672 (03-01-2019),lachstar11 (02-15-2019),T3Qwertzy (02-03-2019),TSM_Pingvin934 (02-03-2019)

  3. #2
    Royce's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    17,967
    Reputation
    4088
    Thanks
    6,418
    //approved. Not tested

    Post back results

  4. The Following User Says Thank You to Royce For This Useful Post:

    T3Qwertzy (02-08-2019)

  5. #3
    Tenzin67's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    0
    Reputation
    10
    Thanks
    0

    Does it work

    so does this work as a real hack or is still kinda buggy??
    Quote Originally Posted by wizzled33z3 View Post
    init:
    #NoEnv
    #SingleInstance, Force
    #Persistent
    #InstallKeybdHook
    #UseHook
    #KeyHistory, 0
    #HotKeyInterval 1
    #MaxHotkeysPerInterval 2450

    version = v2.4
    traytip, Fortnite Assist %version%, Fortnite Assist %version% has started running in the background. Click "help" for credits., 5, 1
    Menu, tray, NoStandard
    Menu, tray, Tip, Fortnite Assist %version%
    Menu, tray, Add, Fortnite Assist %version%, return
    Menu, tray, Add
    Menu, tray, Add, Help, info
    Menu, tray, Add, Exit, exit
    SetKeyDelay,-1, 1
    SetControlDelay, -1
    SetMouseDelay, -0.5
    SetWinDelay,-1
    SendMode, InputThenPlay
    SetBatchLines,-1
    ListLines, Off
    CoordMode, Pixel, Screen, RGB
    CoordMode, Mouse, Screen
    PID := DllCall("GetCurrentProcessId")
    Process, Priority, %PID%, High

    EMCol := (0xFE6A20), (0xAF2AFE)
    ColVn := 61.843
    AntiShakeX := (A_ScreenHeight // 159)
    AntiShakeY := (A_ScreenHeight // 127)
    ZeroX := (A_ScreenWidth // 2)
    ZeroY := (A_ScreenHeight // 2)
    CFovX := 100
    CFovY := 100
    ScanL := ZeroX - CFovX
    ScanT := ZeroY
    ScanR := ZeroX + CFovX
    ScanB := ZeroY + CFovY
    NearAimScanL := ZeroX - AntiShakeX
    NearAimScanT := ZeroY - AntiShakeY
    NearAimScanR := ZeroX + AntiShakeX
    NearAimScanB := ZeroY + AntiShakeY

    Loop, {
    KeyWait, LButton, D
    PixelSearch, AimPixelX, AimPixelY, NearAimScanL, NearAimScanT, NearAimScanR, NearAimScanB, EMCol, ColVn, Fast RGB
    if (!ErrorLevel=0) {
    loop, 6 {
    PixelSearch, AimPixelX, AimPixelY, ScanL, ScanT, ScanR, ScanB, EMCol, ColVn, Fast RGB
    AimX := AimPixelX - ZeroX
    AimY := AimPixelY - ZeroY
    DirX := -0.8
    DirY := -0.8
    If ( AimX > 0 ) {
    DirX := 0.9
    }
    If ( AimY > 0 ) {
    DirY := 1.0
    }
    AimOffsetX := AimX * DirX
    AimOffsetY := AimY * DirY
    MoveX := Floor(( AimOffsetX ** ( 1 / 2 ))) * DirX
    MoveY := Floor(( AimOffsetY ** ( 1 / 2 ))) * DirY
    DllCall("mouse_event", uint, 1, int, MoveX * 0.9, int, MoveY, uint, 0, int, 0)
    }
    }
    }

    Pause:: pause
    return:
    goto, init

    info:
    msgbox, 0, Fortnite Assist %version%, `nMade by: `nDark Cloud Nation/TMOG `n `n
    return

    exit:
    exitapp

  6. #4
    Alexanderrsx's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    8
    My Mood
    Devilish
    Quote Originally Posted by Tenzin67 View Post
    so does this work as a real hack or is still kinda buggy??
    Ofc it's kinda buggy, this is not real aimbot.. :P if you want the real aimbot go buy fortnite hack.

  7. #5
    Andrija333's Avatar
    Join Date
    Feb 2018
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    bannable? or not .. with AHK ?

  8. #6
    megatixos's Avatar
    Join Date
    Sep 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    194
    ofc its bannable.. lol

  9. #7
    wizzled33z3's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by Alexanderrsx View Post
    Ofc it's kinda buggy, this is not real aimbot.. :P if you want the real aimbot go buy fortnite hack.
    it aint perfect. feel free to add to and PM or post it.

    - - - Updated - - -

    Quote Originally Posted by Alexanderrsx View Post
    Ofc it's kinda buggy, this is not real aimbot.. :P if you want the real aimbot go buy fortnite hack.
    it aint perfect. feel free to add to and PM or post it.

    - - - Updated - - -

    Quote Originally Posted by megatixos View Post
    ofc its bannable.. lol
    ive run for over year ><
    Last edited by wizzled33z3; 01-31-2019 at 04:14 AM.

  10. #8
    Dezakenman's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Alexanderrsx View Post
    Ofc it's kinda buggy, this is not real aimbot.. :P if you want the real aimbot go buy fortnite hack.
    where to buy ?

  11. #9
    wizzled33z3's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    4
    please post back and let me know. i will continue to update.

  12. #10
    meepolisa's Avatar
    Join Date
    Dec 2018
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0

    Is not working

    I do it right inside the fortnite does not work pass your ******* let's do a fortnite hack together?

  13. #11
    wizzled33z3's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by meepolisa View Post
    I do it right inside the fortnite does not work pass your ******* let's do a fortnite hack together?
    you compiled correct?

  14. #12
    Alexanderrsx's Avatar
    Join Date
    Jan 2019
    Gender
    male
    Posts
    32
    Reputation
    10
    Thanks
    8
    My Mood
    Devilish
    Quote Originally Posted by Dezakenman View Post
    where to buy ?
    Go find a seller :P make sure to not get scam.

  15. #13
    niggo's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Location
    At home
    Posts
    11,195
    Reputation
    2219
    Thanks
    3,780
    My Mood
    Angelic





    26.09.2012 Signed Up
    16.05.2017 Premium Member
    06.05.2018 - 07.08.2019 Publicist
    06.08.2018 - now Middleman
    17.12.2018 - now Marketplace Minion
    07.06.2019 - now Newsforce
    01.08.2019 - now Publicist
    15.08.2019 - now Fortnite Minion
    08.12.2019 - now GTA Marketplace Minion
    03.01.2020 - now Social Engineering Minion
    07.01.2020 - now Minion+
    10.01.2020 - now Cracking Minion
    07.02.2020 - now Head Publicist




    Quote Originally Posted by Snake View Post
    you're the prime of the primes
    if shitposting was transformers you'd be optimus prime and eternity would be bumblebee
    Quote Originally Posted by Organized Chaos View Post
    acoustic retarded cum slut
    = niggo
    Quote Originally Posted by FlavderKrasse View Post
    iM SO FUCKN SAD I GO FOR SUCIDE
    Quote Originally Posted by Hectard View Post
    Am I a racist if i say Nico niggo neee
    Quote Originally Posted by Snolfy44 View Post
    help
    how works it??
    Quote Originally Posted by Demon770 View Post
    How to hack
    Quote Originally Posted by ImThrowingMyLifeAway View Post
    niggo ugly lol
    Quote Originally Posted by Dot View Post
    I cannot wait to see you replying with another stupid reply
    Quote Originally Posted by Bowie View Post
    Stop shitposting for god sakes
    Quote Originally Posted by Poseidon View Post
    You're literally dumb.
    Quote Originally Posted by 71c View Post
    You're literally dumb.
    Quote Originally Posted by 71c View Post
    Stop shitposting for god sakes, You're literally dumb.






  16. #14
    wizzled33z3's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by niggo View Post
    yeah compare them not close. our pixel searches execute differently. put them side by side.
    Last edited by wizzled33z3; 02-01-2019 at 11:23 PM.

  17. #15
    wizzled33z3's Avatar
    Join Date
    May 2017
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    4
    his script also loops. mine doesnt so there is less shake more snap.

Page 1 of 4 123 ... LastLast

Similar Threads

  1. Fortnite Aim Assist AHK (Needs fixing)
    By Snakekarlo1099 in forum Fortnite Discussion & Help
    Replies: 3
    Last Post: 06-12-2018, 12:34 AM
  2. Aim assist
    By viper4060 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 5
    Last Post: 01-28-2011, 08:38 AM
  3. [Discussion] Aim assist!!
    By thewisedumbguy9 in forum WarRock Discussions
    Replies: 14
    Last Post: 12-01-2010, 07:45 AM
  4. [SOLVED] auto aim assist
    By wasaka1 in forum Call of Duty Black Ops Help
    Replies: 3
    Last Post: 11-30-2010, 04:38 PM
  5. [SOLVED] Aim Assist
    By synth in forum Call of Duty Modern Warfare 2 Help
    Replies: 8
    Last Post: 09-19-2010, 10:17 AM