Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    MiguelTv1234's Avatar
    Join Date
    Mar 2018
    Gender
    male
    Location
    Spain
    Posts
    0
    Reputation
    10
    Thanks
    0
    My Mood
    Angelic

    AHK Valorant No Recoil Hack

    Hey,
    I have been working on a recoil cheat for a while and is just an old R6 no recoil cheat that i had make but i adjust it to Valorant.

    Have fun!

    Isn't the best but here is the code
    Code:
    _auto := true
     
    ~LButton::autofire()
    Numlock::_auto := ! _auto
    F1::ExitApp
     
    autofire()
    {
    global _auto
    if _auto
    {
    Loop
    {
    if GetKeyState("LButton", "P")
    {
    SendInput {LButton DownTemp}
    Sleep 30
    mouseXY(0, 1)
    SendInput {LButton Up}
    Sleep 25
    }
    else
    break
    } ;; loop
    } ;; if
    } ;; autofire()
     
    mouseXY(x,y)
    {
        DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
    }
    Last edited by T-800; 05-17-2020 at 11:50 AM. Reason: Added code tags.

  2. #2
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    Added code tags for you, they should be used like this [code] [/ code] "without space on the back slash.
    Good work!

  3. The Following 2 Users Say Thank You to Janitor For This Useful Post:

    MiguelTv1234 (05-12-2020),toyodesu01 (05-08-2020)

  4. #3
    DHDMI's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Where do I inject this code?

  5. #4
    DMoguri's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    2
    My Mood
    Pensive
    Quote Originally Posted by DHDMI View Post
    Where do I inject this code?
    Download AutoHotkey

  6. #5
    DHDMI's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Having trouble getting this to work. Compiled script and run it while game is open and still have recoil.

  7. #6
    Spycho57's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    181
    Reputation
    10
    Thanks
    10
    I've tried this one but it's not working. Yes we have still recoil like above post of mine.

  8. #7
    psickle's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    23

    Actually works...

    Quote Originally Posted by DHDMI View Post
    Having trouble getting this to work. Compiled script and run it while game is open and still have recoil.
    Quote Originally Posted by Spycho57 View Post
    I've tried this one but it's not working. Yes we have still recoil like above post of mine.
    All that script does is to push your mouse/aim down ("controlling" a bit of the recoil for you), and nothing is wrong with the script, it works as intended.
    A perfect "No-Recoil" would need to read/write memory (which is risky due to Riot Vanguard).
    Last edited by psickle; 05-09-2020 at 10:13 AM.

  9. The Following User Says Thank You to psickle For This Useful Post:

    MiguelTv1234 (05-12-2020)

  10. #8
    DHDMI's Avatar
    Join Date
    May 2020
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Amused
    Quote Originally Posted by psickle View Post
    All that script does is to push your mouse/aim down ("controlling" a bit of the recoil for you), and nothing is wrong with the script, it works as intended.
    A perfect "No-Recoil" would need to read/write memory (which is risky due to Riot Vanguard).
    But this script does not in fact pull down your crosshair in game. If you are in the purchase lobby you can see that your mouse does move downward but in the game while shooting your crosshair doesnt move down... enough at least.

  11. #9
    psickle's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    23
    I haven't tested it in-game the moment I replied (and also forgot that the game is blocking mouse events), so, you're actually right.
    A way to do this was already found.

  12. #10
    sythy2's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    in cali
    Posts
    66
    Reputation
    10
    Thanks
    4
    My Mood
    Amused
    Thank you this works great! The pull down isn't crazy big and it's just enough for control!!

  13. The Following User Says Thank You to sythy2 For This Useful Post:

    MiguelTv1234 (05-12-2020)

  14. #11
    freetzyt123's Avatar
    Join Date
    Nov 2017
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0

    how to use it

    can some1 help me ?

  15. #12
    taninsk137's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    21
    Reputation
    10
    Thanks
    1
    problem is sometimes it stuck shooting when i didnt press mouse1
    need to press mouse1 again and cancel it

  16. #13
    psickle's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    23
    Quote Originally Posted by taninsk137 View Post
    problem is sometimes it stuck shooting when i didnt press mouse1
    need to press mouse1 again and cancel it
    Let me fix that for you.
    Code:
    key_shoot:="LButton"
    key_toggle:="Numlock"
    key_exit:="F1"
    
    _auto := true
    
    loop{
    	sleep, 1
    	if GetKeyState(key_shoot)
    	{
    		if _auto
    		{
    			Sleep 30
    			mouseXY(0, 1)
    			Sleep 25
    		}
    	}
    	if GetKeyState(key_exit)
    	{
    		sleep 2000
    		Exit
    	}
    	if GetKeyState(key_toggle)
    	{
    		_auto := ! _auto
    	}
        }		
    
    mouseXY(x,y)
    {
        DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
    }
    Last edited by psickle; 05-13-2020 at 03:02 PM.

  17. #14
    wolf524's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    AHK is detected ? i really dont want a ban

  18. #15
    T-800's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    Romania
    Posts
    17,076
    Reputation
    1688
    Thanks
    84,838
    Did anyone get banned from using this? there was a recent ban wave

    "Never stop being a good person because of bad people"


    Super User -> 15-7-2020
    Global Moderator -> 23-3-2019 - 15-7-2020
    Steam Moderator -> 12-12-2017 - 23-3-2019
    Steam Minion+ -> 09-04-2017 - 12-12-2017
    Steam Minion -> 03-01-2017 - 09-04-2017


Page 1 of 2 12 LastLast

Similar Threads

  1. I need NO RECOIL Hack
    By jaft88 in forum WarRock - International Hacks
    Replies: 4
    Last Post: 02-15-2008, 08:34 AM
  2. ok heres a no spread no recoil hack by me
    By cjg333 in forum WarRock - International Hacks
    Replies: 3
    Last Post: 06-29-2007, 08:17 AM
  3. Replies: 2
    Last Post: 06-10-2007, 08:01 AM
  4. No Recoil Hack
    By quin123 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 9
    Last Post: 03-21-2007, 03:14 PM
  5. No recoil hack????
    By max.here in forum WarRock - International Hacks
    Replies: 2
    Last Post: 02-21-2007, 05:52 AM