R_shadows toggle bind?

Status
Not open for further replies.
Messages
153
Reaction score
418
Points
610
So I need a bind to shadows because in Police shoot outs this commands saves my FPS loads
 
Messages
2,663
Reaction score
6,158
Points
1,075
Location
Leeds
bind key "r_shadows 1"
bind key "r_shadows 0"
2 different keys, have them next to eachother, doesnt need complicated shit
 
Last edited:
Messages
2,615
Reaction score
4,231
Points
845
bind q toggle
alias toggle "enable"
alias enable "alias toggle disable; r_shadows 0"
alias disable "alias toggle enable; r_shadows 1"
 
Messages
6,910
Reaction score
17,952
Points
1,200
Location
North Rhine-Westphalia, Germany
Code:
alias shadowon "r_shadows 1; alias toggleshadow shadowoff"
alias shadowoff "r_shadows 0; alias toggleshadow shadowon"
alias toggleshadow shadowon
bind r toggleshadow
Press R to toggle on/off. Works with no problems for me, rebind the R button to anything you like.
 
Status
Not open for further replies.
Top