• GPx8
    #18197
    AutoHotkey
    http://www.autohotkey.com/

    A script pedig nálam ez (DFGT):

    MinBoost := 3
    CurrentBoost := MinBoost
    1Joy 16::
    if (CurrentBoost < 10)
    {
    CurrentBoost++
    Value := Mod(CurrentBoost, 10)
    Send {%Value%}
    }
    return
    1Joy 19::
    if (CurrentBoost > MinBoost)
    {
    CurrentBoost--
    Value := Mod(CurrentBoost, 10)
    Send {%Value%}
    }
    return