# Configs And Binds

### Jump Throw Bind

[https://cs.ingame.de/counter-strike-global-offensive/configs-scripts/jumpthrow-bind/](https://cs.ingame.de/counter-strike-global-offensive/configs-scripts/jumpthrow-bind/)

alias "+jumpthrow" "+jump;-attack"  
alias "-jumpthrow" "-jump"  
bind "MOUSE5" "+jumpthrow"

```
alias "+jumpthrow" "+jump;-attack"; alias "-jumpthrow" "-jump"; bind "MOUSE5" "+jumpthrow"
```

### Grenade Crosshair Bind

[https://www.youtube.com/watch?v=Tg9r6mvx-TU](https://www.youtube.com/watch?v=Tg9r6mvx-TU)

Check current crosshairsize with `cl_crosshairsize`  
Beispiel: cl\_crosshairsize = x = 4

```
bind "MOUSE4" "toggle cl_crosshairsize 4 1000"
```

### Permaconfig

Folder: &lt;install\_folder\_steam&gt;\\Steam\\userdata\\&lt;steam-id&gt;\\730\\local\\cfg  
Bsp: C:\\Program Files (x86)\\Steam\\userdata\\261084\\730\\local\\cfg

1\. Eine "autoexec.cfg" Datei erstellen  
2\. In der autoexec config alle notwendigen Befehle speichern  
3\. Auf der letzten Zeile `host_writeconfig` schreiben  
4\. In den Steam Launch options (Rechtsklick -&gt; Properties -&gt; Set Launch Options) von CS:GO dies einfügen: `+exec autoexec.cfg`

Mit `exec <name_der_cfg_datei>` kann man config-Datein auch manuell ausführen, z.B. für eine "[nadetraining](https://wiki.chb-gaming.ch/books/csgo/page/training-server-settings "Training Server Settings")" config

### Steam Launch Options

-novid -nojoy -console +fps\_max 141 +fps\_max\_menu 30 +exec autoexec.cfg

- novid: no intro video
- nojoy: no joystick support (less options)
- console: activate ingame console
- fps\_max: set fps limit (deactivate v-sync ingame -&gt; nice to use with g-sync, no tearing) -&gt; [gsync101](https://blurbusters.com/gsync/gsync101-input-lag-tests-and-settings/)
- fps\_max\_menu: set fps limit for menu (save some energy for the planet and cool down your graphics card)
- exec: execute script (see "Permaconfig" above)