blob: 6b013d933e0383024a7a1b61b1cb8340b942142b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
echo "-Test-Bindings-"
// Round settings
mp_roundtime 60
mp_roundtime_defuse 60
mp_autoteambalance 0
mp_maxmoney 60000
mp_freezetime 0
mp_buytime 9999
mp_buy_anywhere 1
ammo_grenade_limit_total 5
bot_stop 1
// bot_crouch 1
// bot_mimic_yaw_offset 0; bot_mimic 1
bot_kick
// Cheats / Debug informations
sv_cheats 1
sv_infinite_ammo 2
god
// weapon_debug_spread_show 1
sv_grenade_trajectory 1
sv_grenade_trajectory_time 10
sv_showimpacts 1
sv_showimpacts_penetration 1
sv_showimpacts_time 10
give weapon_flashbang
give weapon_smokegrenade
give weapon_molotov
give weapon_hegrenade
alias "+hax" "mat_wireframe 1; r_drawclipbrushes 1"
alias "-hax" "mat_wireframe 0; r_drawclipbrushes 0"
alias "+noclip" "noclip";
alias "-noclip" "noclip";
alias "+bullettime" "host_timescale 0.5"
alias "-bullettime" "host_timescale 1"
alias "+fasttime" "host_timescale 5"
alias "-fasttime" "host_timescale 1"
alias "+regen" "sv_regeneration_force_on 1"
alias "-regen" "sv_regeneration_force_on 0"
alias "+brushes" "r_drawclipbrushes 1"
alias "-brushes" "r_drawclipbrushes 0"
alias "clearhud" "sv_cheats 1; cl_draw_only_deathnotices 1"
bind f +noclip
// bind MOUSE4 +regen
bind PGDN +bullettime
bind PGUP +fasttime
bind q +brushes
// Teleport
// bind h "writeip; con_logfile cfg/banned_ip.cfg; getpos_exact; con_logfile ."
// bind q "exec banned_ip"
// Hat unter Linux einen Crash zur Folge
//bind alt +hax;
// Restart round
mp_warmup_end
mp_restartgame 1
// vim: commentstring=//\ %s
|