You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/client/client_commands.md
+70-4Lines changed: 70 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,22 @@
1
1
# List of ETJump client commands
2
2
Below is a list of all available ETJump related console commands for players.
3
3
4
+
## ad_save
5
+
`ad_save [optional name]`
6
+
Saves the current temp demo recorded by autodemo with the given name. The manually saved autodemo naming format is `playername_map_name[DD-MM-YY-HHMMSS]`. If no name is given, defaults to `demo`.
7
+
8
+
_Note: This only saves the latest temp demo recorded with `etj_autoDemo`. If you are manually recording a demo and use this command, it will take the latest `temp/temp_N.dm_84` and save that. The manually recorded demo will be saved normally into whatever folder you're recording into, with the name it was recorded with._
Queues commands to be executed after `[frames]`. Unlike `wait`, this works asynchronously without interrupting other user actions.
15
+
16
+
_Note: `await` cannot be used during timeruns, and queued commands are cleared when a timerun starts._
17
+
18
+
---
19
+
4
20
## backup
5
21
`backup [slot]`
6
22
Loads a backup slot. Possible slots __1__-__3__. If no slot is given, loads slot __1__.
@@ -13,12 +29,32 @@ Teleports target player to you.
13
29
14
30
---
15
31
32
+
## chs
33
+
`chs`
34
+
Prints the list of available CHS infos to console.
35
+
36
+
---
37
+
16
38
## class
17
-
`class [class][weapon]`
39
+
`class [class][weapon]`
18
40
Changes to class with weapon. Possible classes are __s__, __e__, __m__, __f__, __c__. Possible weapons are __1__-__7__.
19
41
20
42
---
21
43
44
+
## clearsaves
45
+
`clearsaves`
46
+
Clears users saved positions in all slots.
47
+
48
+
_Note: Removes saved slots on both teams._
49
+
50
+
---
51
+
52
+
## extraTrace
53
+
`extraTrace`
54
+
Prints the list of bitmask values for `etj_extraTrace`.
55
+
56
+
---
57
+
22
58
## god
23
59
`god`
24
60
Toggles god mode.
@@ -31,6 +67,12 @@ Teleports you to target player.
31
67
32
68
---
33
69
70
+
## ignore and unignore
71
+
`ignore/unignore [player/ID]`
72
+
Ignores/unignores chat and private messages sent by specified client.
73
+
74
+
---
75
+
34
76
## incrementVar
35
77
`incrementVar [cvar] [start] [end] [step]`
36
78
Cycles given cvar between values of `start` and `end` with increments of `step`. Same as `cycle`, but supports float values.
@@ -61,15 +103,21 @@ Loads a previously saved position. Possible slots __0__-__2__. If no slot is giv
61
103
62
104
---
63
105
64
-
## manual
106
+
## man and manual
65
107
`manual [command]`
66
108
Prints a manual for command.
67
109
68
110
---
69
111
70
112
## min and minimize
71
113
`min`, `minimize`
72
-
Minimizes the ET client. Only works on windows.
114
+
Minimizes the ET client. Only works on Windows.
115
+
116
+
---
117
+
118
+
## mod_information
119
+
`mod_information`
120
+
Prints the ETJump version the server is running.
73
121
74
122
---
75
123
@@ -111,4 +159,22 @@ Saves current position. Possible slots __0__-__2__. If no slot is given, slot is
111
159
112
160
## setoffset
113
161
`setoffset [X Y Z]`
114
-
Offsets your position by the amount of units on each vector. Usage requires access to `noclip`. Maximum offset value per vector is __4096__.
162
+
Offsets your position by the amount of units on each vector. Usage requires access to `noclip`. Maximum offset value per vector is __4096__.
163
+
164
+
---
165
+
166
+
## tracker_print
167
+
`tracker_print [index1|all] [index2] [index3]...`
168
+
Prints your current tracker values on given indices. Special case `all` prints tracker values on every index. If no index is specified, defaults to index __1__.
169
+
170
+
_Note: Usage of this command requires the server to have `g_debugTrackers 1`. Timerun records are not saved when tracker debugging is enabled._
171
+
172
+
---
173
+
174
+
## tracker_set
175
+
`tracker_set [index|all] [value]`
176
+
Sets your tracker on given index to specified value. Special case `all` sets specified value in all indices. If no index is specified, defaults to index __1__.
177
+
178
+
_Note: Usage of this command requires the server to have `g_debugTrackers 1`. Timerun records are not saved when tracker debugging is enabled._
0 commit comments