SHOW:
|
|
- or go back to the newest paste.
1 | // Script modified as per http://redd.it/1wn565 | |
2 | ||
3 | ||
4 | //Binds | |
5 | ||
6 | bind 1 eq_slot1 | |
7 | bind 2 eq_slot2 | |
8 | bind 3 eq_slot3 | |
9 | bind mwheelup eq_invprev | |
10 | bind mwheeldown eq_invnext | |
11 | bind q eq_1_2 | |
12 | bind mouse1 +at_slot1 | |
13 | bind mouse2 +at_slot2 | |
14 | bind mouse3 +at_slot3 | |
15 | bind mouse4 +rjump | |
16 | bind f killmed | |
17 | ||
18 | // Optional mousewheel binds | |
19 | //bind mwheelup eq_slot1 | |
20 | //bind mwheeldown eq_slot2 | |
21 | ||
22 | ||
23 | //Settings | |
24 | ||
25 | alias set_slot1 "cl_crosshair_file crosshair7; cl_crosshair_scale 50; cl_crosshair_red 0; cl_crosshair_green 255; cl_crosshair_blue 0; r_drawviewmodel 0; viewmodel_fov 90" | |
26 | alias set_slot2 "cl_crosshair_file crosshair3; cl_crosshair_scale 50; cl_crosshair_red 0; cl_crosshair_green 64; cl_crosshair_blue 128; r_drawviewmodel 0; viewmodel_fov 90" | |
27 | alias set_slot3 "cl_crosshair_file crosshair4; cl_crosshair_scale 32; cl_crosshair_red 255; cl_crosshair_green 0; cl_crosshair_blue 0; r_drawviewmodel 1; viewmodel_fov 90" | |
28 | ||
29 | ||
30 | //Script logic | |
31 | ||
32 | alias eq_slot1 "slot1; set_slot1; alias eq_invprev eq_slot3; alias eq_invnext eq_slot2; alias eq_1_2 eq_slot2" | |
33 | - | alias eq_slot2 "slot2; set_slot1; alias eq_invprev eq_slot1; alias eq_invnext eq_slot3; alias eq_1_2 eq_slot1" |
33 | + | alias eq_slot2 "slot2; set_slot2; alias eq_invprev eq_slot1; alias eq_invnext eq_slot3; alias eq_1_2 eq_slot1" |
34 | - | alias eq_slot3 "slot3; set_slot1; alias eq_invprev eq_slot2; alias eq_invnext eq_slot1" |
34 | + | alias eq_slot3 "slot3; set_slot3; alias eq_invprev eq_slot2; alias eq_invnext eq_slot1" |
35 | ||
36 | alias +at_slot1 "eq_slot1; +attack" | |
37 | alias -at_slot1 -attack | |
38 | alias +at_slot2 "eq_slot2; +attack" | |
39 | alias -at_slot2 -attack | |
40 | alias +at_slot3 "eq_slot3; +attack" | |
41 | alias -at_slot3 -attack | |
42 | ||
43 | alias +rjump "+duck; +attack; +jump" | |
44 | alias -rjump "-duck; -attack; -jump" | |
45 | ||
46 | alias killmed "say_team ***ENEMY MEDIC DOWN!***; voicemenu 0 2" | |
47 | ||
48 | eq_slot1 | |
49 | ||
50 | // Notification in console | |
51 | echo "*** SOLDIER CFG LOADED***" |