CSGOgames
# 命令参数大全
# 基础指令
quit # 退出游戏
retry # 重连
god # 当前玩家无敌模式
gods # 所有玩家无敌模式
thirdperson # 第三人称
firstperson # 第一人称
ent_create chicken # 在指定位置刷一只鸡
fps_max xxx # 游戏最高fps设置为xxx。
sensitivity 1 # 鼠标灵敏度为1
maxplayers x # 最大人数x(x小于等于20)包括机器人
ammo_grenade_limit_total 6 # 最大投掷物携带数量
getpos # 返回当前地图三维坐标+视角
# 网络指令显示调节
net_graph 0/1 # 关闭/显示当前fps、ping值、loss、choke、tick。
net_graphpos 0/1/2 # 调节参赛显示位置左/中/右
net_graphheight 250 # 参数高度0到500
net_graphproportionalfont 1/0.5 # 调节参数字体大/小
# 地图修改
map de_inferno # 切换地图为de_inferno(炼狱小镇)
mp_roundtime 60 # 回合时长
mp_roundtime_defuse 60 # 竞技模式时长
mp_roundtime_hostage 60 # 人质模式时长
mp_startmoney 16000 # 出生金钱
mp_buy_anywhere 1 # 任意地点可购买
mp_freezetime 0 # 出生原地冻结时间
mp_buytime 999 # 开局购买时间
mp_friendlyfire 0/1 # 关闭/开启友军伤害
mp_restartgame 1 # 1秒后刷新游戏
mp_autoteambalance 0/1 # 是否打开自动平衡
mp_limitteams 2 # 双方人数差异最多为2人
mp_warmup end # 结束热身
mp_c4timer 45 # C4引爆时间45秒
mp_randomspawn 0/1 # 是否基地为出生点
mp_maxrounds 30 # 休闲/竞技模式最大局数设为30局
mp_overtime_enable 0/1 # 是否允许打加时赛
mp_teammates_are_enemies 0/1 # 死斗模式/死亡模式
mp_damage_headshot_only 1 # 只有命中头部伤害有效,即爆头模式
mp_drop_knife_enable 1 # 允许丢刀
# server 配置
sv_cheats 1 # 允许作弊
sv_infinite_ammo 1 # 弹药及投掷物有限/无限
sv_grenade_trajectory 0/1 # 关闭/显示投掷物飞行轨迹
sv_grenade_trajectory_time 15 # 投掷物轨迹显示时间
sv_grenade_trajectory_thickness 0.9 # 轨迹线厚度
sv_showimpacts 0/1 # 关闭/显示被击中者hitbox的状态(弹点),红色为自己可见弹痕,蓝色为服务器伤害判定点
sv_showimpacts_time 10 # 弹着点时间,单位秒
# bot
# 常用
bot_add_t # 增加一名T(匪)
bot_add_ct # 增加一名CT(警)
bot_kick # 踢出所有bot
bot_kill # 干掉所有bot
bot_stop 1 # bot静止
bot_place 1 # 放置一个bot
# 不常用
bot_knives_only # bot只能用刀
bot_pistols_only # bot只能用手gun
bot_snipers_only # bot只能用各种ju
bot_all_weapons # bot能用所有武器
bot_difficulty 0 # bot难度,数值越高越难(无害、简单、普通、困难、专家)
bot_dont_shoot 0/1 # 允许/禁止射击
bot_crouch 0/1 # 关闭/开启bot蹲下
bot_stop 0/1 # 关闭/开启bot静止
bot_mimic 0/1 # 模仿玩家动作
# client ? cl_开头的指令往往和HUD有关,比如雷达、血条、菜单等用于提示玩家的信息。
cl_showpos 1 # 显示坐标、速度
cl_showfps 1 # 显示fps
cl_righthand 0/1 # 左/右手持gun
# 绑定键位
bind alt noclip # 飞行
bind f1 sv_rethrow_last_grenade # 重丢上一次投掷物
bind t "toggle cl_righthand 1 0"# 换手
bind p "bot_place 1" # 放一个bot
bind MWHEELUP "+jump" # 滚轮上跳跃
bind o "toggle cl_crosshairsize 5 10000" # 切换准星大小
# 组合键 +按下,-松开
# bind {目标键} "+{原始操作};{目标操作}"
# 清除血迹(常用)
bind ctrl "+duck;r_cleardecals"
bind f "+lookatweapon;r_cleardecals"
bind shift "+speed;r_cleardecals"
bind MOUSE1 "+attack;r_cleardecals" # 开枪后清除
# 一键跳投
bind c "+jump;-attack;-jump"
# 大跳
alias +cjump "+jump;+duck"
alias -cjump "-jump;-duck"
bind "XXX" "+cjump"
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
提示
跑图专用cfg
将以下指令组直接复制(右上角)到{your_comand}.cfg文件中,移至
{your_steam_install_path}/userdata/{id}/730/local/cfg/
在游戏中控制台直接 exec {your_comand}
包含如下:
飞天、免伤、显示弹痕、任意地点购买、无线子弹、重复投掷物、清除血迹、一键跳投、多个nb快捷键等
点击查看
bot_kick
bot_stop 1
net_graph 1
ammo_grenade_limit_total 6
mp_buytime 9999
mp_restartgame 1
mp_startmoney 16000
mp_buy_anywhere 1
mp_freezetime 0
mp_roundtime 60
mp_roundtime_defuse 60
mp_limitteams 15
mp_friendlyfire 1
mp_autoteambalance 0
sv_cheats 1
sv_infinite_ammo 1
sv_grenade_trajectory 1
sv_grenade_trajectory_time 15
sv_grenade_trajectory_thickness 0.9
sv_showimpacts 1
sv_showimpacts_time 15
cl_showpos 1
cl_showfps 1
bind alt noclip
bind f1 sv_rethrow_last_grenade
bind p "bot_place 1"
bind c "+jump;-attack;-attack2;-jump"
bind ctrl "+duck;r_cleardecals"
bind o "toggle cl_crosshairsize 1 10000"
bind t "+spray_menu;toggle cl_righthand 1 0"
god
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
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
编辑 (opens new window)
上次更新: 2022/05/03, 17:52:41