@@ -35,11 +35,17 @@ const matchzyCommands = [
35
35
} ,
36
36
{
37
37
command : '.stop' ,
38
- description : 'Requests to restore the current round. Both teams must type .stop to restore.' ,
38
+ description : 'Requests to restore the current round. Both teams must type .stop to restore.' ,
39
39
example : '.stop'
40
40
} ,
41
+ {
42
+ command : '.uncoach' ,
43
+ description : 'Leaves coaching slot' ,
44
+ example : '.uncoach'
45
+ } ,
41
46
{
42
47
command : '.coach' ,
48
+ aliases : [ '.coach ct' ] ,
43
49
description : 'Starts coaching the specified team side (t/ct).' ,
44
50
example : '.coach t' ,
45
51
} ,
@@ -60,7 +66,7 @@ const matchzyCommands = [
60
66
title : 'Practice Commands' ,
61
67
commands : [
62
68
{
63
- command : '.back' ,
69
+ command : '.back <number> ' ,
64
70
description : 'Teleports to a specific position in grenade history.' ,
65
71
example : '.back 1' ,
66
72
arguments : {
@@ -72,8 +78,19 @@ const matchzyCommands = [
72
78
description : 'Adds a bot at your current position.' ,
73
79
example : '.bot'
74
80
} ,
81
+ {
82
+ command : '.nobot' ,
83
+ description : 'Removes one bot each.' ,
84
+ example : '.nobot'
85
+ } ,
86
+ {
87
+ command : '.nobots' ,
88
+ description : 'Removes all the bots' ,
89
+ example : '.nobots'
90
+ } ,
75
91
{
76
92
command : '.crouchbot' ,
93
+ aliases : [ '.cbot' ] ,
77
94
description : 'Adds a crouched bot at your position.' ,
78
95
example : '.crouchbot'
79
96
} ,
@@ -87,6 +104,11 @@ const matchzyCommands = [
87
104
description : 'Breaks all breakable entities (glass, doors, vents).' ,
88
105
example : '.break'
89
106
} ,
107
+ {
108
+ command : '.breakrestore' ,
109
+ description : 'Restore all breakable entities (glass, doors, vents).' ,
110
+ example : '.breakrestore'
111
+ } ,
90
112
{
91
113
command : '.clear' ,
92
114
description : 'Removes all active utility (smokes, molotovs, incendiaries).' ,
@@ -115,6 +137,11 @@ const matchzyCommands = [
115
137
number : 'Required: Spawn position number'
116
138
}
117
139
} ,
140
+ {
141
+ command : '.spawn <number>' ,
142
+ description : 'Spawns to the provided competitive spawn number of same team' ,
143
+ example : '.spawn 1' ,
144
+ } ,
118
145
{
119
146
command : '.dryrun' ,
120
147
aliases : [ '.dry' ] ,
@@ -132,10 +159,118 @@ const matchzyCommands = [
132
159
description : 'Toggles god mode.' ,
133
160
example : '.god'
134
161
} ,
162
+ {
163
+ command : '.bestspawn' ,
164
+ description : 'Teleports you to your team closest spawn from your current position' ,
165
+ example : '.bestspawn'
166
+ } ,
167
+ {
168
+ command : '.worstspawn' ,
169
+ description : 'Teleports you to your team furthest spawn from your current position' ,
170
+ example : '.worstspawn'
171
+ } ,
172
+ {
173
+ command : '.bestctspawn' ,
174
+ description : ' Teleports you to CT team closest spawn from your current position' ,
175
+ example : '.bestctspawn'
176
+ } ,
177
+ {
178
+ command : '.worstctspawn' ,
179
+ description : 'Teleports you to CT team furthest spawn from your current position' ,
180
+ example : '.worstctspawn'
181
+ } ,
182
+ {
183
+ command : '.besttspawn' ,
184
+ description : 'Teleports you to T team closest spawn from your current position' ,
185
+ example : '.besttspawn'
186
+ } ,
187
+ {
188
+ command : '.worsttspawn' ,
189
+ description : 'Teleports you to T team furthest spawn from your current position' ,
190
+ example : '.worsttspawn'
191
+ } ,
192
+ {
193
+ command : '.showspawns' ,
194
+ description : 'Highlights all the competitive spawns' ,
195
+ example : '.showspawns'
196
+ } ,
197
+ {
198
+ command : '.hidespawns' ,
199
+ description : 'Hides the highlighted spawns' ,
200
+ example : '.hidespawns'
201
+ } ,
202
+ {
203
+ command : '.watchme' ,
204
+ aliases : [ '.fas' ] ,
205
+ description : 'Forces all players into spectator except the player who called this command' ,
206
+ example : '.watchme'
207
+ } ,
208
+ {
209
+ command : '.noflash' ,
210
+ aliases : [ '.noblind' ] ,
211
+ description : 'Toggles immunity for flashbang' ,
212
+ example : '.noflash'
213
+ } ,
214
+ {
215
+ command : '.rethrow' ,
216
+ aliases : [ '.rt' ] ,
217
+ description : 'Rethrows your last thrown grenade' ,
218
+ example : '.rethrow'
219
+ } ,
220
+ {
221
+ command : '.timer' ,
222
+ description : 'Starts a timer immediately and stops it when you type .timer again, telling you the duration of time' ,
223
+ example : '.timer'
224
+ } ,
225
+ {
226
+ command : '.throwindex <index> <optional index> <optional index>' ,
227
+ description : 'Throws grenade of provided position(s) from your grenade thrown history.' ,
228
+ example : '.throwindex 1 2'
229
+ } ,
230
+ {
231
+ command : '.lastindex' ,
232
+ description : 'Prints index number of your last thrown grenade.' ,
233
+ example : '.lastindex'
234
+ } ,
235
+ {
236
+ command : '.rethrowsmoke' ,
237
+ description : 'Throws your last thrown smoke grenade.' ,
238
+ example : '.rethrowsmoke'
239
+ } ,
240
+ {
241
+ command : '.rethrownade' ,
242
+ description : 'Throws your last thrown HE grenade.' ,
243
+ example : '.rethrownade'
244
+ } ,
245
+ {
246
+ command : '.rethrowflash' ,
247
+ description : 'Throws your last thrown flash.' ,
248
+ example : '.rethrowflash'
249
+ } ,
250
+ {
251
+ command : '.rethrowmolotov' ,
252
+ description : 'Throws your last thrown molotov.' ,
253
+ example : '.rethrowmolotov'
254
+ } ,
255
+ {
256
+ command : '.rethrowdecoy' ,
257
+ description : 'Throws your last thrown decoy.' ,
258
+ example : '.rethrowdecoy'
259
+ } ,
260
+ {
261
+ command : '.solid' ,
262
+ description : 'Toggles mp_solid_teammates' ,
263
+ example : '.solid'
264
+ } ,
135
265
{
136
266
command : '.impacts' ,
137
- description : 'Toggles impact visualization. ' ,
267
+ description : 'Toggles sv_showimpacts ' ,
138
268
example : '.impacts'
269
+ } ,
270
+ {
271
+ command : '.traj' ,
272
+ description : 'Toggles sv_grenade_trajectory_prac_pipreview' ,
273
+ example : '.traj'
139
274
}
140
275
]
141
276
} ,
@@ -163,11 +298,6 @@ const matchzyCommands = [
163
298
description : 'Returns to last grenade throw position.' ,
164
299
example : '.last'
165
300
} ,
166
- {
167
- command : '.lastindex' ,
168
- description : 'Shows index of last thrown grenade.' ,
169
- example : '.lastindex'
170
- } ,
171
301
{
172
302
command : '.listnades' ,
173
303
aliases : [ '.lin' ] ,
@@ -230,11 +360,13 @@ const matchzyCommands = [
230
360
} ,
231
361
{
232
362
command : '.forcepause' ,
363
+ aliases : [ '.fp' ] ,
233
364
description : 'Admin-pauses match (players cannot unpause).' ,
234
365
example : '.forcepause'
235
366
} ,
236
367
{
237
368
command : '.forceunpause' ,
369
+ aliases : [ '.fup' ] ,
238
370
description : 'Force-unpauses match.' ,
239
371
example : '.forceunpause'
240
372
} ,
@@ -251,6 +383,7 @@ const matchzyCommands = [
251
383
} ,
252
384
{
253
385
command : '.prac' ,
386
+ aliases : [ '.tactics' ] ,
254
387
description : 'Starts Practice mode.' ,
255
388
example : '.prac'
256
389
} ,
0 commit comments