[Release] halbGefressen's MultiScript [BETA] [AHK]

Discussion in 'Super Gundam Royale Accounts - Buy Sell Trade' started by halbGefressen, 11/3/16.

Thread Status:
Not open for further replies.
  1. halbGefressen

    halbGefressen
    Expand Collapse
    High Risk Status: This user has been flagged as high risk due to one or more reasons

    0   0   0

    Offline
    Hi Guys,
    I am proud to present you my first script on playerup. It works quite well and you can easily change your keybinds.
    Dropshot does only work with the prome key on Y or you have to change it yourself.
    It's a simple AHK script, I will give you 2 downloads, one for the .ahk file, and one for the compiled .exe, in case you don't have AHK.
    Only works for keyboard.
    Have fun!
    Downloads:



    Keybinds:
    F5 = AutoQuickscope Locus
    F6 = AutoQuickscope SVG-100 and RSA-Interdiction
    F7 = AutoSprint on
    F8 = AutoSprint off
    F10 = Exit script
    F11 = Panic Button (ALL OFF)
    F12 = Dropshot on

    I can't post links, so you have to scan the files yourself.


    Source Code:

    Code:
    #NoEnv

    ;For the quickscope functions, the Fast Hands perk is required.

    ;Keybinds:
    ;F10: Exits the whole script.
    ;F11: Disables all mods.
    ;F12: Enables Dropshot.
    ;F5: Automatically quickscopes with Locus.
    ;F6: Automatically quickscopes with SVG-100.
    loop

    {
    ;If F10 is pressed, the script will exit.
    GetKeyState, state, F10
    if state = D
    {
    ExitApp
    }

    ;If F12 is pressed, dropshot mode will enable.
    GetKeyState, state, F12
    if state = D
    {
    ds:=true
    locus:=false
    svg:=false
    }

    ;If F11 is pressed, all mods will disable.
    GetKeyState, state, F11
    if state = D
    {
    ds:=false
    locus:=false
    svg:=false
    as:=false
    }

    ;If F5 is pressed, Locus will auto-quickscope.
    GetKeyState, state, F5
    if state = D
    {
    ds:=false
    locus:=true
    svg:=false
    }

    ;If F6 is pressed, SVG-100 will auto-quickscope.
    GetKeyState, state, F6
    if state = D
    {
    ds:=false
    locus:=false
    svg:=true
    }
    ;If F7 is pressed, autosprint will enable.
    GetKeyState, state, F7
    if state = D
    {
    as:=true
    }

    ;If F8 is pressed, autosprint will disable.
    GetKeyState, state, F8
    if state = D
    {
    as:=false
    }

    ;If you shoot, you will lay down if you set your lay button to Y.
    if GetKeyState("LButton") && ds==true
    {
    Send, {Y}
    Sleep, 1500
    }
    ;If you scope in with Locus, it will auto-quickscope.
    if GetKeyState("RButton") && locus==true
    {
    Sleep, 340
    Send, {LButton}
    }

    ;If you scope in with SVG-100, it will auto-quickscope.
    if GetKeyState("RButton") && svg==true
    {
    Sleep, 400
    Send, {LButton}
    }

    ;Autosprint
    if GetKeyState("W") && as==true
    {
    Send, {LShift}
    }
    }
    Virus scans:
    https://www.virustotal.com/en/file/5...is/1475945679/.
    https://virusscan.jotti.org/en-US/fi...job/wuct3sb8bf.

    https://www.virustotal.com/en/file/e...is/1475945723/.
    https://virusscan.jotti.org/en-US/fi...job/xo5nr3sed2.
    Downloadable Files
     
    • This user is inactive. Hasn't logged into their account in over 60 days.
Thread Status:
Not open for further replies.