Page 2 of 6 FirstFirst 1234 ... LastLast
Results 16 to 30 of 76
  1. #16
    Sasuke Uchiha!'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    677
    Reputation
    46
    Thanks
    1,523
    My Mood
    Relaxed
    I'm pretty sure I've seen this Anti Recoil video before...


    NVM
    "For me, revenge is everything, and failure is nothing."
    -Sasuke Uchiha

  2. #17
    Pentesting's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    352
    My Mood
    Lurking
    Quote Originally Posted by Kylux View Post
    Have you got the scripts in the "uncompiled" version so it is a .ahk not an .exe? and would you be able to release them?
    I deleted all the original source code a long time ago. Sorry bud.

  3. #18
    Pentesting's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    352
    My Mood
    Lurking
    Quote Originally Posted by TyellWantsHacks View Post
    I'm pretty sure I've seen this Anti Recoil video before...


    NVM
    I was about to say.... I just made the video.

  4. #19
    Sasuke Uchiha!'s Avatar
    Join Date
    Oct 2014
    Gender
    male
    Posts
    677
    Reputation
    46
    Thanks
    1,523
    My Mood
    Relaxed
    Quote Originally Posted by Pentesting View Post
    I was about to say.... I just made the video.
    Yes, it's because I've seen similar videos Or... Have u ever knew u had a dream before about something that then later in life becomes true?
    "For me, revenge is everything, and failure is nothing."
    -Sasuke Uchiha

  5. #20
    Kylux's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    147
    Quote Originally Posted by Pentesting View Post
    I deleted all the original source code a long time ago. Sorry bud.
    No worries man

  6. #21
    Xcake10's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    5
    My Mood
    Cheeky
    Can someone answer a possibly a dumb question i know AHK doesnt get you VAC banned but if you get VAC banned on a smurf account what happens to your main i mean does VAC ban you HWID or not i havent got a answer to this propably im just blind also if it does how do i get rid of it is the question. Thank you for an answer if anyone bothers

  7. #22
    Pentesting's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    352
    My Mood
    Lurking
    Quote Originally Posted by Xcake10 View Post
    Can someone answer a possibly a dumb question i know AHK doesnt get you VAC banned but if you get VAC banned on a smurf account what happens to your main i mean does VAC ban you HWID or not i havent got a answer to this propably im just blind also if it does how do i get rid of it is the question. Thank you for an answer if anyone bothers
    Only way your main account would get vac banned is if your main family shared with your smurf.

  8. #23
    Xcake10's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    58
    Reputation
    10
    Thanks
    5
    My Mood
    Cheeky
    Thank you for the quick answer so VAC does not ban HWID is what i assume you mean thank you for the answer

  9. #24
    Requiii's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    Germany
    Posts
    141
    Reputation
    10
    Thanks
    2,170
    My Mood
    Yeehaw
    Quote Originally Posted by Pentesting View Post
    I deleted all the original source code a long time ago. Sorry bud.
    I managed it to decompile it. If you haven't anything against it, I'd post the code

  10. #25
    Pentesting's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    352
    My Mood
    Lurking
    Quote Originally Posted by Requiii View Post
    I managed it to decompile it. If you haven't anything against it, I'd post the code
    Go for it.

  11. #26
    kristasauras's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    hey bro what do i do with this file? where do i put it?

  12. #27
    Requiii's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    Germany
    Posts
    141
    Reputation
    10
    Thanks
    2,170
    My Mood
    Yeehaw
    Quote Originally Posted by kristasauras View Post
    hey bro what do i do with this file? where do i put it?
    Just execute the .exe you want to use. If it's running (as administrator of course) everything will happen automatically


    Source Codes:

    BHOP:
    Code:
    ; <COMPILER: v1.0.48.5>
    F11:: Hotkey, *~$Space, Toggle
    
    End::
    ExitApp
    
    *~$Space::
    Sleep 5
    Loop
    {
        GetKeyState, SpaceState, Space, P
        If SpaceState = U
            break
        Sleep 1
        Send, {Blind}{Space}
    }
    Return
    Burst Fire:
    Code:
    ; <COMPILER: v1.0.48.5>
    Z:: Hotkey, $LButton, Toggle
    $LButton::
    {
        SetMouseDelay 40
        Send {click 3}
    }
    Return
    Quickscope:
    Code:
    ; <COMPILER: v1.0.48.5>
    *~$V::
    Loop
    {
    if not GetKeyState("V", "P")
    break
    Sendevent, {V}
    sleep 50
    Send, Q
    sleep 10
    Send, Q
    sleep 1111
    sendevent, {RButton}
    }
    Return
    NoRecoil:
    Code:
    ; <COMPILER: v1.0.48.5>
    #NoEnv
    SendMode Input
    SetWorkingDir %A_ScriptDir%
    
    
    NoRecoilActive := 1
    
    
    ^!p::Suspend
    
    
    ~LButton::
        while GetKeyState("LButton") & NoRecoilActive
        {
            DllCall("mouse_event", uint, 1, int, -1, int, 1, uint, 0, int, 0)
            Sleep, 15
            DllCall("mouse_event", uint, 1, int, 0, int, 1, uint, 0, int, 0)
            Sleep, 5
        }
    return
    
    
    ~MButton::
        if GetKeyState("LButton")
        {
            NoRecoilActive := 0
            Sleep, 3000
            MouseClick, Left,,,,, U
            NoRecoilActive := 1
        }
    return

  13. #28
    kristasauras's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    please help i wanna learn how to bhop

  14. #29
    Pentesting's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    352
    My Mood
    Lurking
    Quote Originally Posted by kristasauras View Post
    hey bro what do i do with this file? where do i put it?
    You just run it.

  15. #30
    kristasauras's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    0
    so i put this in the autoexec file?

Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. [Release] Anti Recoil + burst 1.0
    By BilakosBF3 in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 14
    Last Post: 10-20-2013, 01:40 AM
  2. [Release] Anti-Recoil/Burst Script
    By tom0101 in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 106
    Last Post: 10-11-2013, 09:52 AM
  3. [Release] Anti recoil + burst Script beta Update 11.03.13 Undetected
    By GEHhgerhgerhgerhrhr in forum Battlefield 3 (BF3) Hacks & Cheats
    Replies: 12
    Last Post: 03-13-2013, 08:29 AM
  4. Bunny Hop Program-Perfect for Shotguns
    By /gyuhgg545 in forum Combat Arms Europe Hacks
    Replies: 29
    Last Post: 06-17-2009, 10:18 AM
  5. Bunny Hop Program-Perfect for Shotguns
    By /gyuhgg545 in forum Combat Arms Hacks & Cheats
    Replies: 32
    Last Post: 04-13-2009, 12:56 PM

Tags for this Thread