
| Kunos Simulazioni | Assetto Corsa | Assetto Corsa Competizione | AC Forum | AC FB | AC Twitter | Kunos Twitter | AC Youtube | AC Hun. FB |
| HSW | VirtualR | BSimRacing | RaceDepartment | DrivingItalia | Radiator-Champ | Setup Guides |
SZERVEREK: | GTRM | SRS | VSR | BAJNOKSÁG-SZERVEZÉS: | GTRM | SRS | VSR | LETÖLTÉSEK: | AC DB | AC CLUB |
-
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