Page 1 of 12 12311 ... LastLast
Results 1 to 15 of 172
  1. #1
    XalecsX's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    UK & ROMANIA
    Posts
    11
    Reputation
    10
    Thanks
    34
    My Mood
    Amazed

    Post AHK Script/NO-RECOIL/Bhop [Pean's AHK MultiScript Final v2] [UNDETECTED]

    I DONT OWN THIS HACK, JUST SHARING FROM OTHER WEBSITE
    I Played with this hack since 1 month and i still not got any Vac Ban at this moment


    This is my first post so please tell how to do it exactly next. [I READ THE (Read Before Posting)and sry for my english]
    VAC = Undetected
    ESEA = NOT TESTED, MAYBE DETECTED
    CEVO = NOT TESTED, MAYBE DETECTED

    Features:
    Bunnyhop - F1 toggle
    Rapid fire - F2 toggle
    AK-47 norecoil - F4
    M4A1-S norecoil - F6
    M4A4 norecoil - F7
    Famas norecoil - F8
    UMP-45 norecoil - F12
    Disable norecoil - F11
    ------------------------------------------

    Code:
    ;Pean's AHK MultiScript Final
    ;Settings
    sens:=2.52
    zoomsens:=0.75
    
    ;Key binds
    key_AK:="F4"
    key_M4A1:="F6"
    key_M4A4:="F7"
    key_Famas:="F8"
    key_Galil:="F9"
    key_UMP:="F12"
    key_AUG:="Home"
    key_SG:="End"
    key_RCoff:="F11"
    key_Terminate:="F10"
    key_shoot:="LButton"
    key_zoom:="LAlt"
    
    ;do not touch this if you don't know what are you doing
    modifier:=2.52/sens
    Hotkey, *~$Space, Off
    Hotkey, *~$MButton, Off
    Hotkey, *~$t, Off
    
    ;Main program loop, don't break out of it
    loop {
    sleep 1
    ;Menu handling
    if GetKeyState(key_AK)
    {
    SoundPlay, %A_ScriptDir%\1.mp3
    ak:=true
    m4a1:=false
    m4a4:=false
    famas:=false
    galil:=false
    ump:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_M4A1)
    {
    SoundPlay, %A_ScriptDir%\2.mp3
    m4a1:=true
    ak:=false
    m4a4:=false
    famas:=false
    galil:=false
    ump:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_M4A4)
    {
    SoundPlay, %A_ScriptDir%\3.mp3
    m4a4:=true
    ak:=false
    m4a1:=false
    famas:=false
    galil:=false
    ump:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_Famas)
    {
    SoundPlay, %A_ScriptDir%\4.mp3
    famas:=true
    ak:=false
    m4a1:=false
    m4a4:=false
    galil:=false
    ump:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_Galil)
    {
    SoundPlay, %A_ScriptDir%\5.mp3
    galil:=true
    ak:=false
    m4a1:=false
    m4a4:=false
    famas:=false
    ump:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_Terminate)
    {
    SoundPlay, %A_ScriptDir%\8.mp3
    sleep 2000
    ExitApp
    }
    
    if GetKeyState(key_RCoff)
    {
    SoundPlay, %A_ScriptDir%\7.mp3
    ak:=false
    m4a1:=false
    m4a4:=false
    famas:=false
    galil:=false
    ump:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_UMP)
    {
    SoundPlay, %A_ScriptDir%\6.mp3
    ump:=true
    ak:=false
    m4a1:=false
    m4a4:=false
    famas:=false
    galil:=false
    aug:=false
    sg:=false
    }
    
    if GetKeyState(key_SG)
    {
    SoundPlay, %A_ScriptDir%\9.mp3
    sg:=true
    ump:=false
    ak:=false
    m4a1:=false
    m4a4:=false
    famas:=false
    galil:=false
    aug:=false
    }
    
    if GetKeyState(key_AUG)
    {
    SoundPlay, %A_ScriptDir%\10.mp3
    aug:=true
    ump:=false
    ak:=false
    m4a1:=false
    m4a4:=false
    famas:=false
    galil:=false
    sg:=false
    }
    
    ;NoRecoil
    if GetKeyState(key_shoot)
    {
    ;AK-47
    if ak
    {
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 50
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 7*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 19*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 29*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 31*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier, "UInt", 31*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 28*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier, "UInt", 21*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -17*modifier, "UInt", 12*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -42*modifier, "UInt", -3*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -21*modifier, "UInt", 2*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 12*modifier, "UInt", 11*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier, "UInt", 7*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -26*modifier, "UInt", -8*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 4*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 40*modifier, "UInt", 1*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 19*modifier, "UInt", 7*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 10*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 27*modifier, "UInt", 0*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 33*modifier, "UInt", -10*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -21*modifier, "UInt", -2*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 7*modifier, "UInt", 3*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier, "UInt", 9*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier, "UInt", 4*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 19*modifier, "UInt", -3*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 6*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier, "UInt", -1*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -33*modifier, "UInt", -4*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -45*modifier, "UInt", -21*modifier)
    sleep 99
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 1*modifier)
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    sleep 80
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;M4A1-S
    else if m4a1
    {
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 15
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 6*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 4*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 14*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 18*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 21*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 24*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 14*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 12*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 18*modifier, "UInt", 5*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 10*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", 5*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -25*modifier, "UInt", -3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -19*modifier, "UInt", 0*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -22*modifier, "UInt", -3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 1*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", -2*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 2*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 1*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;M4A4
    else if m4a4
    {
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 15
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 7*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 9*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 16*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 7*modifier, "UInt", 21*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 23*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier, "UInt", 27*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 16*modifier, "UInt", 15*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 13*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 22*modifier, "UInt", 5*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 11*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -18*modifier, "UInt", 6*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -30*modifier, "UInt", -4*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -24*modifier, "UInt", 0*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -25*modifier, "UInt", -6*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 4*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 8*modifier, "UInt", 4*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -11*modifier, "UInt", 1*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", -2*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 2*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 33*modifier, "UInt", -1*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", 6*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 27*modifier, "UInt", 3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", 2*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 0*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 0*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 5*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 5*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 1*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", -1*modifier)
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;Famas
    else if famas
    {
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 30
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 5*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier, "UInt", 4*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 10*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 17*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 20*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 18*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 16*modifier, "UInt", 12*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 12*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier, "UInt", 8*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier, "UInt", 5*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", 2*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 5*modifier)
    sleep 87
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 23*modifier, "UInt", 4*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 12*modifier, "UInt", 6*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 20*modifier, "UInt", -3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 0*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", 0*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 3*modifier, "UInt", 5*modifier)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 3*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -25*modifier, "UInt", -1*modifier)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 2*modifier)
    sleep 84
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 0*modifier)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", -7*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", -10*modifier)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;Galil
    else if galil
    {
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 10
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 4*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 5*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 10*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 12*modifier, "UInt", 15*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 21*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier, "UInt", 24*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 16*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 10*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 14*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -22*modifier, "UInt", 8*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -30*modifier, "UInt", -3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -29*modifier, "UInt", -13*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 8*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 2*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier, "UInt", 1*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 1*modifier)
    sleep 50
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 4*modifier, "UInt", 7*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 25*modifier, "UInt", 7*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier, "UInt", 4*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 25*modifier, "UInt", -3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 31*modifier, "UInt", -9*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier, "UInt", -1*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 10*modifier, "UInt", -1*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 16*modifier, "UInt", -4*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 5*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -32*modifier, "UInt", -5*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -24*modifier, "UInt", -3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier, "UInt", 5*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier, "UInt", 8*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier, "UInt", -3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -24*modifier, "UInt", -14*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier, "UInt", -1*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;UMP-45
    else if ump
    {
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 15
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 6*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 8*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -2*modifier, "UInt", 18*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 23*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier, "UInt", 23*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", 26*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 11*modifier, "UInt", 17*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier, "UInt", 12*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 9*modifier, "UInt", 13*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 18*modifier, "UInt", 8*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", 5*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", 3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", 6*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier, "UInt", 6*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 9*modifier, "UInt", -3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier, "UInt", -1*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -12*modifier, "UInt", 4*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -19*modifier, "UInt", 1*modifier)
    sleep 85
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -1*modifier, "UInt", -2*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier, "UInt", -5*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 17*modifier, "UInt", -2*modifier)
    sleep 85
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier, "UInt", 3*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier, "UInt", -2*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier, "UInt", -1*modifier)
    sleep 90
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;AUG
    else if aug
    {
    if GetKeyState(key_zoom)
    {
    ;this is the best scale I could figure out for zoomed in norecoil
    obs:=1.2/zoomsens
    }
    else
    {
    obs:=1
    }
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 30
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier*obs, "UInt", 6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 0*modifier*obs, "UInt", 13*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 22*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier*obs, "UInt", 26*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 5*modifier*obs, "UInt", 29*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 9*modifier*obs, "UInt", 30*modifier*obs)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 21*modifier*obs)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier*obs, "UInt", 15*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 13*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier*obs, "UInt", 11*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 13*modifier*obs, "UInt", 0*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 1*modifier*obs, "UInt", 6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -22*modifier*obs, "UInt", 5*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -38*modifier*obs, "UInt", -11*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -31*modifier*obs, "UInt", -13*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -3*modifier*obs, "UInt", 6*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 5*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier*obs, "UInt", 0*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 24*modifier*obs, "UInt", 1*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 32*modifier*obs, "UInt", 3*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 15*modifier*obs, "UInt", 6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 1*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 17*modifier*obs, "UInt", -3*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 29*modifier*obs, "UInt", -11*modifier*obs)
    sleep 95
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 19*modifier*obs, "UInt", 0*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier*obs, "UInt", 6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -16*modifier*obs, "UInt", 3*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier*obs, "UInt", 1*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    ;SG 553
    else if sg
    {
    if GetKeyState(key_zoom)
    {
    ;this is the best scale I could figure out for zoomed in norecoil
    obs:=1.2/zoomsens
    }
    else
    {
    obs:=1
    }
    loop
    {
    DllCall("mouse_event", uint, 2, int, 0, int, 0, uint, 0, int, 0)
    sleep 30
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -4*modifier*obs, "UInt", 9*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -13*modifier*obs, "UInt", 15*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -9*modifier*obs, "UInt", 25*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier*obs, "UInt", 29*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", 31*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -7*modifier*obs, "UInt", 36*modifier*obs)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier*obs, "UInt", 14*modifier*obs)
    sleep 80
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 17*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", 12*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier*obs, "UInt", 8*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -5*modifier*obs, "UInt", 5*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier*obs, "UInt", 5*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", 6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 2*modifier*obs, "UInt", 11*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -14*modifier*obs, "UInt", -6*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -20*modifier*obs, "UInt", -17*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -18*modifier*obs, "UInt", -9*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -8*modifier*obs, "UInt", -2*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 41*modifier*obs, "UInt", 3*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 56*modifier*obs, "UInt", -5*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 43*modifier*obs, "UInt", -1*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 18*modifier*obs, "UInt", 9*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 14*modifier*obs, "UInt", 9*modifier*obs)
    sleep 88
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 6*modifier*obs, "UInt", 7*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 21*modifier*obs, "UInt", -3*modifier*obs)
    sleep 95
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", 29*modifier*obs, "UInt", -4*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -6*modifier*obs, "UInt", 8*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -15*modifier*obs, "UInt", 5*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", "UInt", 0x01, "UInt", -38*modifier*obs, "UInt", -5*modifier*obs)
    sleep 89
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    sleep 1000
    if !GetKeyState(key_shoot)
    {
    DllCall("mouse_event", uint, 4, int, 0, int, 0, uint, 0, int, 0)
    break
    }
    }
    }
    }
    }
    
    ;Bhop
    ~F1::
    Hotkey, *~$Space, Toggle
    SoundPlay, %A_ScriptDir%\12.mp3
    return
    *~$Space::
    sleep 5
    loop
    {
    GetKeyState, SpaceState, Space, P
    if Spacestate = U
    break 
    sleep 1
    Send, {Blind}{Space}
    }
    return
    
    ;Rapid fire
    ~F2::
    Hotkey, *~$MButton, Toggle
    SoundPlay, %A_ScriptDir%\13.mp3
    return
    *~$MButton::
    sleep 10
    loop
    {
    GetKeyState, state, MButton
    if state = U
    break 
    Sleep 1
    Send, {Blind}{LButton}
    }
    return
    
    ;180 Turnaround
    F3::
    Hotkey, *~$t, Toggle
    SoundPlay, %A_ScriptDir%\11.mp3
    return
    *~$t::
    DllCall("mouse_event", "UInt", 0x01, "UInt", 223*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 1
    DllCall("mouse_event", "UInt", 0x01, "UInt", 432*modifier, "UInt", 0)
    sleep 200
    return
    - - - Updated - - -

    Hope you like it guys
    Last edited by XalecsX; 09-29-2015 at 02:44 PM.

  2. The Following 32 Users Say Thank You to XalecsX For This Useful Post:

    5pinn (03-28-2016),AndyHaaX (06-22-2016),Atomfloyd (03-16-2016),Brahhh (06-21-2016),Bug (03-15-2016),bvb55 (10-14-2015),Cakeguyfun23 (07-29-2017),Estevamschk3 (03-01-2017),Euan Fazza (06-04-2016),fazewalker (05-27-2016),gelocthan (09-12-2017),HollyMolly (09-30-2015),johnathanoficial (01-24-2016),LaggingSlayer (10-10-2016),Limonchik358 (08-28-2023),LyntFX (06-15-2016),MineShilo (11-26-2015),MrAlexYT (03-15-2016),mtsena (03-18-2016),ObsessedHacker (09-29-2015),OWSLA7 (07-23-2016),PoonSu (10-29-2016),Release Modz (02-01-2016),rextealhd (11-09-2015),siewor (09-29-2015),slipandslide (06-28-2016),Sttyle (05-27-2016),t o n t i <3 (05-18-2016),timm16 (06-12-2016),tnyxero (08-14-2016),Zainul__ (10-30-2016),zpator123 (08-15-2016)

  3. #2
    SpikeValentine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    197
    Reputation
    10
    Thanks
    7
    I think this is detected on ESEA

  4. #3
    ObsessedHacker's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Israel
    Posts
    418
    Reputation
    37
    Thanks
    241
    My Mood
    Chatty
    Thanks for sharing!
    Don't forget to click on that button and add Reputation If I helped you!

  5. The Following 2 Users Say Thank You to ObsessedHacker For This Useful Post:

    WoWoncrack (06-03-2016),xtopiagaming2 (08-03-2016)

  6. #4
    XalecsX's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    UK & ROMANIA
    Posts
    11
    Reputation
    10
    Thanks
    34
    My Mood
    Amazed
    Thnks for your answer I appreciate it

  7. #5
    ONdaBeat2's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    110
    Reputation
    10
    Thanks
    6
    My Mood
    Confused
    We already got this, like fucking 12 times

  8. #6
    XalecsX's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    UK & ROMANIA
    Posts
    11
    Reputation
    10
    Thanks
    34
    My Mood
    Amazed
    Quote Originally Posted by ONdaBeat2 View Post
    We already got this, like fucking 12 times
    IS A Different Script like the old one's or any AHK scripts, so why NOT​?

  9. #7
    ImSoNerD's Avatar
    Join Date
    Aug 2012
    Gender
    female
    Location
    NormalRoom
    Posts
    13
    Reputation
    10
    Thanks
    209
    My Mood
    Innocent
    already released and i think there is a never version of this
    ASDFGL

  10. #8
    mathero11's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    23
    Reputation
    10
    Thanks
    3
    My Mood
    Sad
    how do you configure this?

  11. #9
    XalecsX's Avatar
    Join Date
    Aug 2014
    Gender
    male
    Location
    UK & ROMANIA
    Posts
    11
    Reputation
    10
    Thanks
    34
    My Mood
    Amazed
    Quote Originally Posted by mathero11 View Post
    how do you configure this?
    RLY? just put in Notepad/Save as, Name= [ANY].ahk

  12. #10
    SpikeValentine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    197
    Reputation
    10
    Thanks
    7
    i like this one better compared to the others, the bhop seems better. thats all i use it for

  13. #11
    moED's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    1
    how do we use it? just download and open with the game or?

  14. #12
    Snoopy's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Location
    United States
    Posts
    56
    Reputation
    10
    Thanks
    334
    Wow, okay copy mine okay. I see.

  15. #13
    Gazz's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    2,197
    Reputation
    220
    Thanks
    195
    how to make it work

  16. #14
    OtakuTyler's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    Okay I'm new to this sort of stuff. So after I copy and paste all of this into a notepad and save it as something.ahk ... What do I do next?

  17. #15
    Regsa007's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    aka RegZa
    Posts
    187
    Reputation
    50
    Thanks
    1,147
    My Mood
    Sleepy
    Looks good, just what i was in need for.

Page 1 of 12 12311 ... LastLast

Similar Threads

  1. [Release] Perfect csgo bhop ahk script hack with on/off key cant get detected.
    By mango_hd in forum Counter-Strike 2 Coding & Resources
    Replies: 7
    Last Post: 05-22-2017, 11:02 AM
  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. [Release] Perfect csgo bhop ahk script hack with on/off key cant get detected with tutorial.
    By mango_hd in forum Counter-Strike 2 Coding & Resources
    Replies: 9
    Last Post: 05-29-2015, 03:36 AM
  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