-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathAll_current_GM_commands.txt
1376 lines (1314 loc) · 98.5 KB
/
All_current_GM_commands.txt
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file contains translations for in-game commands and their help text
#
# General file format:
# "TranslatedLaunguageCommand", "EnglishCommand", "Help Text Message"
#
# TranslatedLanguageCommand is the translated command, it CAN be the same as the english command.
# EnglishCommand is the hardcoded command that will always work. DO NOT CHANGE THIS!
# Help Text Message is a brief description of the command.
#
# Comments:
# Comment lines must begin with a '#' character.
# Comments must begin at the start of the line. No trailing comments.
# Do *NOT* comment out a ID + message pair if it is going to be replaced
# by a pair with an identical ID.
# Access Level 0
#------------------------------
"fullscreen" "fullscreen" "Sets video mode to fullscreen."
"maximize" "maximize" "Maximizes the window."
"disable2D" "disable2D" "Disables 2D sprite drawing."
"maxrtframes" "maxrtframes" "How many frames ahead to allow buffering."
"screen" "screen" "Sets X and Y screen dimensions. Should be constrained to 640x480,1024x768, 1280x1024, 1600x1200, etc"
"quit" "quit" "Quits game."
"quittologin" "quittologin" "quits to login screen"
"quittocharacterselect" "quittocharacterselect" "quits to character select"
"cmdlist" "cmdlist" "Prints out all commands available."
"bind" "bind" "Binds a key to a command - 'bind k ++forward' will set k to toggle running forward."
"show_bind" "show_bind" "Returns the command currently binded to the key."
"unbind" "unbind" "Unbinds a bound key (sets it to default). If the default action is not desired, use: /bind <keyname> "nop" "
"bind_load_file" "bind_load_file" "Reads a list of keybinds from a file."
"bind_load_file_silent" "bind_load_file_silent" "Reads a list of keybinds from a file."
"bind_load" "bind_load" "Reads a list of keybinds from <INSTALL DIR>/keybinds.txt."
"bind_save" "bind_save" "Saves all keybinds to <INSTALL DIR>/keybinds.txt."
"bind_save_file" "bind_save_file" "Saves all keybinds to specified file."
"bind_save_file_silent" "bind_save_file_silent" "Saves all keybinds to specified file."
"wdw_load_file" "wdw_load_file" "Reads window configuration file."
"wdw_load" "wdw_load" "Reads window configuration from <INSTALL DIR>/wdw.txt."
"wdw_save" "wdw_save" "Saves window configuration to <INSTALL DIR>/wdw.txt."
"wdw_save_file" "wdw_save_file" "Saves window configuration to specified file."
"option_load_file" "option_load_file" "Reads option configuration file."
"option_load" "option_load" "Reads option configuration from <INSTALL DIR>/options.txt."
"option_save" "option_save" "Saves window configuration to <INSTALL DIR>/options.txt."
"option_save_file" "option_save_file" "Saves option configuration to specified file."
"chat_load_file" "chat_load_file" "Reads chat configuration file."
"chat_load" "chat_load" "Reads chat configuration from <INSTALL DIR>/chat.txt."
"chat_save" "chat_save" "Saves chat configuration to <INSTALL DIR>/chat.txt."
"chat_save_file" "chat_save_file" "Saves chat configuration to specified file."
"netgraph" "netgraph" "Displays network connection information."
"maxfps" "maxfps" "Limits max frames per second."
"maxInactiveFps" "maxInactiveFps" "Limits max frames per second while the game is not in the foreground."
"showfps" "showfps" "Show current framerate (1 = on, 0 = off)."
"graphfps" "graphfps" "Graph current framerate (1 = SWAP, 2 = GPU, 4 = CPU, 8 = SLI)."
"sliClear" "sliClear" "Clear each FBO the first time it is used in the frame to help SLI/CF (0 to disable)."
"sliFBOs" "sliFBOs" "Number of SLI/CF framebuffers to allocate (1 to disable)."
"sliLimit" "sliLimit" "Limit number of SLI/CF frames to allow in parallel (0 to disable limiter)."
"usenvfence" "usenvfence" "Use NV fences instead of ARB queries."
"imageServer" "imageServer" "Sets game to Image Server mode. Next two strings are the source directory and the target directory"
"notga" "notga" "Disables saving of .TGA files in image server mode"
"nojpg" "nojpg" "Disables saving of .JPG files in image server mode"
"cov" "cov" ""
"uiskin" "uiskin" ""
"camdist" "camdist" "Sets the distance in feet that the third person camera pulls back behind the player."
"camdistadjust" "camdistadjust" "adjusts the camera distance relative to the current camera distance. Reads mousewheel for input."
"camreset" "camreset" "Camreset is bound to the PageDown key (default) to reset the camera behind the player."
"demoplay" "demoplay" "Name of demo to play back"
"demoloop" "demoloop" "Number of times to loop demo before exiting"
"demoframestats" "demoframestats" "whether or not to log performance info for every frame of the demo"
"demopause" "demopause" "point to stop and loop same frame (in msec)"
"demospeedscale" "demospeedscale" "speed multiple to play back demo at"
"demorecord" "demorecord" "Record a demo to the given name"
"demorecord_auto" "demorecord_auto" "Record a demo with automatically generated name"
"demostop" "demostop" "Stop demo record/play"
"demodump" "demodump" "dump frames to jpg files"
"demodumptga" "demodumptga" "dump frames to tga files"
"demofps" "demofps" "set demo playback frames per second"
"demohidenames" "demohidenames" "hides names in demo playback."
"demohidedamage" "demohidedamage" "hides damage in demo playback."
"demohidechat" "demohidechat" "hides chat in demo playback."
"demohideallentityui" "demohideallentityui" "hides all ui in demo playback."
"reduce_mip" "reduce_mip" "Reduces the resolution of textures to only use the reduced (mip-map) textures. Must pass as command line arg -reduce_mip or you need to subsequently run unloadgfx"
"reduce_min" "reduce_min" "Sets the minimum size that textures will be reduced to (requires -reduce_mip > 0)"
"texLodBias" "texLodBias" "Reduces the texture LOD bias for better compatibility with anisotropic filtering (values from 0 - 2 are valid)"
"texAniso" "texAniso" "Sets the amount of anisotropic filtering to use, reloads textures"
"maxAniso" "maxAniso" "Shows the maximum anisotropic your card allows"
"antialiasing" "antialiasing" "Sets the amount of full screen antialiasing"
"fsaa" "fsaa" "Sets the amount of full screen antialiasing"
"splatShadowBias" "splatShadowBias" "change how far from the camera to give people shadows"
"vis_scale" "vis_scale" "Controls world detail 1.0=default"
"nopixshaders" "nopixshaders" "Turns off pixel shaders."
"novbos" "novbos" "Turns off vertex buffer object extension."
"maxtexunits" "maxtexunits" "Limits number of textures used, set to 4 to emulate GF 4/5 path"
"shaderDetail" "shaderDetail" "Changes the shader detail level"
"nohdr" "nohdr" "Disable HDR lighting effects."
"useHDR" "useHDR" "Use HDR lighting effects (Bloom/tonemapping) if available"
"useDOF" "useDOF" "Use Depth of Field effects if available"
"useBumpmaps" "useBumpmaps" "Use bumpmaps"
"useHQ" "useHQ" "Allow use of High Quality shader variants"
"useCubemap" "useCubemap" "Use cubemap"
"useFP" "useFP" "Use a floating point render target for HDR lighting effects if available"
"useWater" "useWater" "Use fancy water effects if available"
"useARBassembly" "useARBassembly" "forces use of ARB assembly shader path"
"noARBfp" "noARBfp" "disables use of ARBfp shader path, uses vendor-specific fragment shaders instead"
"noNV" "noNV" "disables use of NV1X/NV2X shader path, uses only ARB shaders instead"
"noATI" "noATI" "disables use of R200 shader path, uses only ARB shaders instead"
"NV1X" "NV1X" "Forces NV1X rendering path"
"NV2X" "NV2X" "Forces NV2X rendering path"
"R200" "R200" "Forces R200rendering path"
"noSunFlare" "noSunFlare" "Disables sun flare for performance debugging"
"noPBuffers" "noPBuffers" "Disables PBuffers"
"usePBuffers" "usePBuffers" "Force use of PBuffers even if on a suspected unsupported video card"
"useFBOs" "useFBOs" "Use FBOs, if supported, for off-screen rendering"
"useCg" "useCg" "Use Cg shaders instead of ARB"
"dxt5nm_normal_maps" "dxt5nm_normal_maps" "1 = Use DXT5nm cvompressed normal maps, 0 = Use DXT5 normal maps (old mode)"
"shaderCache" "shaderCache" "Enable the shader cache"
"shader_init_logging" "shader_init_logging" "Set to 1 to view shader initialization details in the console."
"shader_optimization" "shader_optimization" "Values: 0-3, or -1 to return to default. Causes shaders to reload with the new optimization hint."
"hardconsts" "hardconsts" "Use hard shader constants instead of Cg to setup shader params"
"prevshaders" "prevshaders" "Use previous Cg shader set found in 'cgfx/prev' subfolder for comparison/debugging"
"nopopup" "nopopup" "Enable or disable popup error dialogs"
"useMRTs" "useMRTs" "Use MRTs, for DoF effect debugging"
"noBump" "noBump" "disable bump maps by forcing unperturbed normal"
"cgShaderPath" "cgShaderPath" "Parent directory for "shaders/cgfx". If relative, path is resolved using the .exe directory."
"cgSaveShaderListing" "cgSaveShaderListing" "Save Cg shader listings in the current directory"
"noRTT" "noRTT" "Disables RTT PBuffers"
"no_nv_clip" "no_nv_clip" "Disable using nVidia specific vertex profiles for user clipping. (use on command line)"
"renderScaleX" "renderScaleX" "Changes the horizontal scale at which the 3D world is rendered relative to your screen size"
"renderScaleY" "renderScaleY" "Changes the vertical scale at which the 3D world is rendered relative to your screen size"
"renderScale" "renderScale" "Changes the scale at which the 3D world is rendered relative to your screen size"
"renderSize" "renderSize" "Changes the size at which the 3D world is rendered"
"useRenderScale" "useRenderScale" "Enables/disables render scaling feature"
"renderScaleFilter" "renderScaleFilter" "Changes method of filtering used in renderscaling"
"bloomWeight" "bloomWeight" "Sets bloom scale, valid values 0.0 - 2.0"
"bloomScale" "bloomScale" "Sets bloom blur size, valid values of 2 or 4"
"dofWeight" "dofWeight" "Sets DOF scale, valid values 0.0 - 2.0"
"useTexEnvCombine" "useTexEnvCombine" "forces use of texture_env_combine shader path"
"compatibleCursors" "compatibleCursors" "Enables useage of basic Windows mouse cursors instead of graphical cursors (command line option)"
"enablevbos" "enablevbos" "turns on vertex buffer object extension"
"shadowvol" "shadowvol" "Controls whether or not shadow volumes are drawn."
"noStencilShadows" "noStencilShadows" "Command line option to disable stencil shadows"
"ss" "ss" "Controls whether or not simple shadows are drawn."
"suppressCloseFx" "suppressCloseFx" "Hide all personal FX when the camera is closer than the suppressCloseFxDist"
"suppressCloseFxDist" "suppressCloseFxDist" "Within this camera distance, personal FX will be suppressed."
"pbuftest" "pbuftest" "thrash PBuffers"
"lodbias" "lodbias" "multiplier to LOD distances for entities 0.5 = switch twice as near 2.0 means switch twice as far"
"nothread" "nothread" "Disables threaded texture loading"
"soundDebugName" "soundDebugName" "name of sound to debug (will only play this sound name)"
"follow" "follow" "set follow mode, 1 = follow selected target, 0 = stop following"
"stopinactivedisplay" "stopinactivedisplay" "Stops rendering when the game is not the foreground application."
"db" "db" "dbserver ip string."
"cs" "cs" "dbserver ip string."
"auth" "auth" "auth server ip string."
"console" "console" "turns on debug console (where printfs go)"
"nolastauthor" "nolastauthor" "turns off error printing"
"profiling_memory" "profiling_memory" "Set the number of MB of memory to use for profiling"
"profile" "profile" "Save a profile of the current frame for up to the specified number of frames"
"profile_spikes" "profile_spikes" "Save profiles of any frame longer than the specified time in ms"
"nodebug" "nodebug" "turns off error printing"
"nominidump" "nominidump" "disables writing of a minidump upon crash"
"noreport" "noreport" "do not default to error reporting window on crash"
"mtu" "mtu" "Sets the MTU size for client-generated packets (command line option)"
"mouse_look" "mouse_look" "Command key for mouselook"
"info" "info" "Opens the info window for the current target (yourself if you have no target)."
"info_tab" "info_tab" "Opens the specified tab of the info window for the current target (yourself if you have no target)."
"info_self" "info_self" "Opens the info window for yourself."
"info_self_tab" "info_self_tab" "Opens the specified tab of the info window for yourself."
"toggle_enemy" "toggle_enemy" "Cycles through targetable enemies."
"toggle_enemy_prev" "toggle_enemy_prev" "Cycles through targetable enemies (in reverse)."
"target_enemy_near" "target_enemy_near" "Targets the nearest enemy."
"target_enemy_far" "target_enemy_far" "Targets the farthest enemy."
"target_enemy_next" "target_enemy_next" "Cycles through visible targetable enemies in near to far order."
"target_enemy_prev" "target_enemy_prev" "Cycles through visible targetable enemies in far to near order."
"target_friend_near" "target_friend_near" "Targets the nearest friend."
"target_friend_far" "target_friend_far" "Targets the farthest friend."
"target_friend_next" "target_friend_next" "Cycles through visible targetable friends in near to far order."
"target_friend_prev" "target_friend_prev" "Cycles through visible targetable friends in far to near order."
"target_custom_near" "target_custom_near" <<Targets the nearest match.
Parameters:
enemy - Hostile enemies
friend - Friendlies (including pets)
defeated - 0 HP targets
alive - Living targets
mypet - Inlcude only your pets
notmypet - Exclude your pets
base - Include only passive base items
notbase - Exlude passive base items
teammate - Include only teammates
notteammate - Exclude teammates
Other token will be matched against name for specific targeting
>>
"target_custom_far" "target_custom_far" <<Targets the farthest match.
Parameters:
enemy - Hostile enemies
friend - Friendlies (including pets)
defeated - 0 HP targets
alive - Living targets
mypet - Inlcude only your pets
notmypet - Exclude your pets
base - Include only passive base items
notbase - Exlude passive base items
teammate - Include only teammates
notteammate - Exclude teammates
Other token will be matched against name for specific targeting
>>
"target_custom_next" "target_custom_next" <<Cycles through matching targets in near to far order.
Parameters:
enemy - Hostile enemies
friend - Friendlies (including pets)
defeated - 0 HP targets
alive - Living targets
mypet - Inlcude only your pets
notmypet - Exclude your pets
base - Include only passive base items
notbase - Exlude passive base items
teammate - Include only teammates
notteammate - Exclude teammates
Other token will be matched against name for specific targeting
>>
"target_custom_prev" "target_custom_prev" <<Cycles through matching targets in far to near order.
Parameters:
enemy - Hostile enemies
friend - Friendlies (including pets)
defeated - 0 HP targets
alive - Living targets
mypet - Inlcude only your pets
notmypet - Exclude your pets
base - Include only passive base items
notbase - Exlude passive base items
teammate - Include only teammates
notteammate - Exclude teammates
Other token will be matched against name for specific targeting
>>
"unselect" "unselect" "unselects currently selected thing"
"profiler_record" "profiler_record" "Record client profiler information to specified file."
"profiler_stop" "profiler_stop" "Stop recording profiler information."
"unloadgfx" "unloadgfx" "unloads all textures (causing them to be reloaded dynamically)"
"reloadgfx" "reloadgfx" "unloads all textures (causing them to be reloaded dynamically)"
"texwordeditor" "texwordeditor" "edit the text layout for translatable textures"
"whereami" "whereami" "Tells the name of the shard/map you are on."
"loc" "loc" "Get current position."
"getpos" "getpos" "Get current position."
"autoreply" "autoreply" "Start a reply for client."
"enterdoor" "enterdoor" ""
"enterdoorvolume" "enterdoorvolume" ""
"enter_base_from_sgid" "enter_base_from_sgid" ""
"cursorcache" "cursorcache" "enable cursor cache for smoother cursor changes"
"ctm_toggle" "ctm_toggle" "click-to-move toggle"
"ctm_invert" "ctm_invert" "on demand click-to-move keybind"
"clicktomove" "clicktomove" "enables click-to-move"
"ctm" "ctm" "enables click-to-move"
"beginchat" "beginchat" "Starts chat-entry mode with given string."
"startchat" "startchat" "Starts chat-entry mode."
"slashchat" "slashchat" "Starts chat-entry mode with slash."
"say" "say" "Sends the given text on the current chat channel."
"s" "s" "Sends the given text on the current chat channel."
"chat_set" "chat_set" "Sets the channel to the given string."
"chat_cycle" "chat_cycle" "Cycles through the default chat channels."
"hideprimarychat" "hideprimarychat" "Hide/unhide primary chat window text messages."
"tabcreate" "tabcreate" "Create new chat tab. Specify window (0-4), pane(0 top, 1 bottom) and tab name."
"tabclose" "tabclose" "Close/delete chat tab"
"tabtoggle" "tabtoggle" "Make the previously active chat tab the new active tab. Used to flip between two tabs."
"tabnext" "tabnext" "Cycle forward through all chat tabs in indicated chat window (0-4)"
"tabprev" "tabprev" "Cycle backward through all chat tabs in indicated chat window (0-4)"
"tabglobalnext" "tabglobalnext" "Cycle forward through all chat tabs in all windows. Will open the corresponding chat window if necessary."
"tabglobalprev" "tabglobalprev" "Cycle backward through all chat tabs in all windows. Will open the corresponding chat window if necessary."
"tabselect" "tabselect" "Select the given chat tab. Will open the corresponding chat window if necessary."
"change_handle" "change_handle" <<Change your global user name, if allowed
Syntax: change_handle [HANDLE]>>
"chan_create" "chan_create" <<Create a new chat channel
Syntax: chan_create [CHANNEL NAME]>>
"chan_join" "chan_join" <<Join an existing chat channel
Syntax: chan_join [CHANNEL NAME]>>
"chan_leave" "chan_leave" <<Leave a chat channel
Syntax: chan_leave [CHANNEL NAME]>>
"chan_invitedeny" "chan_invitedeny" <<chat channel invite denied
Syntax: chan_invitedeny [CHANNEL NAME] [INVITER]>>
"chan_invite_team" "chan_invite_team" <<Invite your entire team or taskforce to a chat channel
Syntax: chan_invite_team [CHANNEL NAME]>>
"chan_invite_gf" "chan_invite_gf" <<Invite your entire global friends list to a chat channel
Syntax: chan_invite_gf [CHANNEL NAME]>>
"chan_user_mode" "chan_user_mode" <<Sets user permissions for specified user on channel.
You must have operator status to set permissions.
Syntax: chan_user_mode [CHANNEL NAME] [PLAYER_NAME] [OPTIONS...]
Valid Options:
-join kicks user from channel
+send / -send gives/removes user ability to send messages to channel
+operator / -operator gives/removes operator status from another user in the channel
>>
"chan_mode" "chan_mode" <<Changes default access rights for new user who joins the channel. If you set -join, no one can join.
Syntax: chan_mode [CHANNEL NAME] [OPTIONS...]Valid Options:
-join kicks user from channel
+send / -send gives/removes user ability to send messages to channel
+operator / -operator gives/removes operator status from another user in the channel
>>
"chan_members" "chan_members" <<List all members of channel
Syntax: chan_members [CHANNEL NAME]>>
"chan_motd" "chan_motd" <<Set the channel's Message Of The Day, which is sent to everyone that joins the channel
Syntax: chan_motd [CHANNEL NAME] [MESSAGE]>>
"chan_desc" "chan_desc" <<Set the channel's time out duration
Syntax: chan_desc [CHANNEL NAME] [TIME IN DAYS]>>
"chan_timeout" "chan_timeout" <<Set the channel's description
Syntax: chan_desc [CHANNEL NAME] [DESCRIPTION]>>
"watching" "watching" "List all channels that you belong to."
"gfriends" "gfriends" "Display all members of your global friends list."
"gignoring" "gignoring" "Lists the players on your global chat ignore list"
"myhandle" "myhandle" "Display your chat handle."
"get_local_name" "get_local_name" "Get Server / Local Character name from globalname"
"get_local_invite" "get_local_invite" "Invite to team from globalname"
"get_local_league_invite" "get_local_league_invite" "Invite to league from globalname"
"ContextMenu" "ContextMenu" "Activate an context menu slot."
"popmenu" "popmenu" "Pops up the named menu at the current mouse location"
"quickchat" "quickchat" "Pops up the quickchat menu."
"auctionhouse" "auctionhouse" "Activate the Auction House Menu"
"ah" "ah" "Activate the Auction House Menu"
"wentworths" "wentworths" "Activate the Auction House Menu"
"blackmarket" "blackmarket" "Activate the Auction House Menu"
"vault" "vault" "Activate the personal storage Menu"
"missionsearch" "missionsearch" "Activate the mission search menu"
"architect" "architect" "Activate the mission search menu"
"missionmake" "missionmake" "Activate the My Arcs menu of Mission Search"
"mmentry" "mmentry" "Choose between making and starting a mission maker story arc"
"window_resetall" "window_resetall" "Resets all window locations, sizes, and visibility to their defaults."
"window_toggle" "window_toggle" "Show a window if hidden, hide a window if shown. (Synonym: toggle)"
"toggle" "toggle" "Show a window if hidden, hide a window if shown. (Synonym: window_toggle)"
"mailview" "mailview" "Sets which view to use when on the mail tab"
"window_show" "window_show" "Forces the given window to be shown. (Synonym: show)"
"show" "show" "Forces the given window to be shown. (Synonym: window_show)"
"window_hide" "window_hide" "Forces the given window to be hidden."
"window_names" "window_names" "Lists the names of windows for window_show, window_toggle, window_hide, and window_scale commands"
"window_color" "window_color" "Changes the window colors."
"windowcolor" "windowcolor" "Changes the window colors."
"chat" "chat" "Toggles the chat window."
"tray" "tray" "Toggles the tray window"
"target" "target" "Toggles the target window."
"nav" "nav" "Toggles the navigation window."
"map" "map" "Toggles the map window."
"menu" "menu" "Toggles the menu."
"chatoptions" "chatoptions" "Toggles chat options for specified window (0-4)"
"petoptions" "petoptions" "Displays pet option context menu."
"powers" "powers" "Toggles the power inventory."
"alttray" "alttray" "Toggle the secondary tray while a key is being pressed. (for keybinds)"
"alt2tray" "alt2tray" "Toggle the secondary tray while a key is being pressed. (for keybinds)"
"alttraysticky" "alttraysticky" "Toggle the secondary tray."
"tray_sticky" "tray_sticky" <<Set the sticky-state of the specified tray.
Syntax: tray_sticky [SHOWING TRAY NUM] [0 for non sticky, sticky otherwise]>>
"tray_sticky_alt2" "tray_sticky_alt2" "Toggle the sticky-state of the alt2 tray."
"next_tray" "next_tray" "Go to next tray."
"prev_tray" "prev_tray" "Go to previous tray."
"next_tray_alt" "next_tray_alt" "Go to next secondary tray."
"prev_tray_alt" "prev_tray_alt" "Go to previous secondary tray."
"next_tray_alt2" "next_tray_alt2" "Go to next tertiary tray."
"prev_tray_alt2" "prev_tray_alt2" "Go to previous tertiary tray."
"next_trays_tray" "next_trays_tray" "Go to next trays tray slot."
"prev_trays_tray" "prev_trays_tray" "Go to previous trays tray slot."
"goto_tray" "goto_tray" "Go to specified tray number."
"goto_tray_alt" "goto_tray_alt" "Go to specified tray number."
"goto_tray_alt2" "goto_tray_alt2" "Go to specified tray number."
"goto_trays_tray" "goto_trays_tray" <<Go to specified tray number in the specified tray.
Syntax: goto_trays_tray [SHOWING TRAY NUM] [TRAY NUM between 1 and 10]>>
"clear_tray" "clear_tray" "Clear all trays (excepting macros)"
"team_select" "team_select" "Select Team member."
"pet_select" "pet_select" "Select Pet."
"pet_select_name" "pet_select_name" "Select Pet."
"unlevelingpact" "unlevelingpact" "Bring up the dialog for quitting a leveling pact."
"powexec_name" "powexec_name" "Executes a power with the given name."
"powexec_slot" "powexec_slot" "Executes the given power slot from the current tray."
"powexec_toggleon" "powexec_toggleon" "Toggles a given power on. If its already on, does nothing."
"powexec_toggleoff" "powexec_toggleoff" "Toggles a given power off. If its already off, does nothing."
"powexec_altslot" "powexec_altslot" "Executes the given power slot from the alternate tray."
"powexec_alt2slot" "powexec_alt2slot" "Executes the given power slot from the second alternate tray."
"powexec_serverslot" "powexec_serverslot" "Executes the given power slot from the server-controlled tray."
"powexec_tray" "powexec_tray" "Executes a power in the given slot and tray."
"powexec_abort" "powexec_abort" "Cancels the auto-attack power and the queued power."
"powexec_unqueue" "powexec_unqueue" "Cancels the queued power."
"powexec_auto" "powexec_auto" "Sets the auto-attack power to given named power (or blank to shut it off, or toggles if it's on already)."
"inspirationSlot" "inspirationSlot" "Activate an inspiration slot in the first row."
"inspexec_slot" "inspexec_slot" "Activate an inspiration slot in the first row."
"inspexec_tray" "inspexec_tray" "Activate an inspiration slot in the given row and column."
"inspexec_name" "inspexec_name" "Activate an inspiration by name."
"inspexec_pet_name" "inspexec_pet_name" "Activate an inspiration on a pet by name. Inspiration Name then Pet Name"
"inspexec_pet_target" "inspexec_pet_target" "Activate an inspiration on a pet by name. Takes Inspiration Name"
"nop" "nop" "does nothing"
"macro" "macro" <<Add a macro to first empty slot.
macro [name] [command>>
"macroslot" "macroslot" <<Add a macro to provided slot.
macro [slot] [name] [command]>>
"manage" "manage" "Go to the enhancement management screen"
"screenshot" "screenshot" "Save a .jpg format screenshot."
"screenshottitle" "screenshottitle" "Save a .jpg format screenshot with the given title."
"screenshottga" "screenshottga" "Save a .tga format screenshot."
"screenshotui" "screenshotui" "Enables or disables the ui for screenshots (1=ui on, 0=ui off)"
"copychat" "copychat" "Copy the entire chat history from specified chat Tab into the clipboard."
"bug" "bug" "Report a bug. Enter a short description of any length."
"bug_internal" "bug_internal" "Internal command used to process /bug commands"
"cbug" "cbug" "Report a bug (Cryptic Internal Only). Enter a short description of any length."
"release" "release" "Activate medicom unit fot emergency medical transport."
"petition" "petition" "add user petition (stuck, cheated, etc) to the database"
"project" "project" "set project registry key (Coh / CohTest / CohBeta)"
"exitlaunch" "exitlaunch" "set program to run when game exits"
"cc" "cc" "Change costume."
"costume_change" "costume_change" "Change costume."
"cc_e" "cc_e" "Uses an emote to change costumes."
"cc_emote" "cc_emote" "Uses an emote to change costumes."
"window_scale" "window_scale" "Change a single window scale."
"logchat" "logchat" "Toggle chat logging"
"assist" "assist" "Change your current target to selected allies target."
"assist_name" "assist_name" "Change your current target to a specified allies target."
"target_name" "target_name" "Change your current target to any entity matching name specified."
"dialog_yes" "dialog_yes" "Answer OK, Yes, or Accept to current dialog"
"dialog_no" "dialog_no" "Answer OK, No, or Cancel to current dialog"
"dialog_answer" "dialog_answer" "Answer dialog with button matching provided text"
"renderthread" "renderthread" ""
"norenderthread" "norenderthread" ""
"maxColorTrackerVerts" "maxColorTrackerVerts" "Maximum number of world object vertices to relight per frame"
"fullRelight" "fullRelight" "Do not cap number of relit vertices per frame"
"useNewColorPicker" "useNewColorPicker" "Use new color picker in editor."
"e3screenshot" "e3screenshot" "Enables special e3 2004 screenshot mode"
"localtime" "localtime" "Prints local time (on your computer)"
"autoperf" "autoperf" "Automatically change world detail for performance."
"petcom" "petcom" <<Set the stance or action of current pet.
Syntax: petcom_name "[pet name]" [stance, action, or both]>>
"petcom_name" "petcom_name" <<Set the stance or action of a specific pet.
Syntax: petcom_name "[pet name]" [stance, action, or both]>>
"petcom_pow" "petcom_pow" <<Set the stance or action of a all pets cast by power.
Syntax: petcom_name "[power name]" [stance, action, or both]>>
"petcom_all" "petcom_all" <<Set the stance or action of a specific pet.
Syntax: petcom_name [stance, action, or both]>>
"petsay" "petsay" "Make your current pet say something or emote."
"petsay_name" "petsay_name" "Make the named pet say something or emote."
"petsay_pow" "petsay_pow" "Make all pets created by given power say something or emote."
"petsay_all" "petsay_all" "Make the named pet say something or emote."
"petrename" "petrename" "Rename your current pet."
"petrename_name" "petrename_name" "Rename the named pet."
"safemode" "safemode" "Forces most compatible graphics and audio settings."
"nooverride" "nooverride" "Disallows override files (command line option)."
"createHero" "createHero" "Create a hero."
"createVillain" "createVillain" "Create a villain."
"createPraetorian" "createPraetorian" "Create a Praetorian."
"nagPraetorian" "nagPraetorian" "Explain the need to buy Going Rogue."
"markPowOpen" "markPowOpen" "Mark power open"
"markPowClosed" "markPowClosed" "Mark power closed"
"camturn" "camturn" "Turn camera to match player"
"playerturn" "playerturn" "Turn player to match camera"
"face" "face" "Turn player to face target"
"windowcloseextra" "windowcloseextra" "Leave fullscreen, close dialogs, and close non-essential windows"
"gamereturn" "gamereturn" "Leave fullscreen, close dialogs, and close non-essential windows"
"clearchat" "clearchat" "Clear all chat buffers"
"keybind_reset" "keybind_reset" "Reset keybinds."
"unbind_all" "unbind_all" "Reset keybinds."
"monitor_attribute" "monitor_attribute" "Adds attribute to Attribute Monitor"
"stop_monitor_attribute" "stop_monitor_attribute" "Removes attribute from the Attribute Monitor"
"insp_combine" "insp_combine" "Combines 3 of same type inspiration into one new type"
"insp_delete" "insp_delete" "Removes and inspiration"
"link_interact" "link_interact" "Activates Context Menu for link name"
"link_info" "link_info" "Provides info window on matching link name"
"link_interact_global" "link_interact_global" "Activates Context Menu for link global name"
"link_channel" "link_channel" "Activates Context Menu for link channel name"
"showNewTray" "showNewTray" "Opens another Tray Window"
"hide" "hide" "Opens Hide Options"
"ghide" "ghide" "Opens Hide Options"
"hide_search" "hide_search" "Hides from search"
"hide_sg" "hide_sg" "Hides from Supergroup"
"hide_friends" "hide_friends" "Hides from Friends"
"hide_gfriends" "hide_gfriends" "Hides from Global Friends "
"hide_gchannels" "hide_gchannels" "Hides from Global Channels"
"unhide" "unhide" "Opens Hide Options"
"gunhide" "gunhide" "Opens Hide Options"
"unhide_search" "unhide_search" "unHides from search"
"unhide_sg" "unhide_sg" "unHides from Supergroup"
"unhide_friends" "unhide_friends" "unHides from Friends"
"unhide_gfriends" "unhide_gfriends" "unHides from Global Friends "
"unhide_gchannels" "unhide_gchannels" "unHides from Global Channels"
"hide_tell" "hide_tell" "Hides from tells"
"unhide_tell" "unhide_tell" "unHides from tells"
"hide_invite" "hide_invite" "Hides from invites"
"unhide_invite" "unhide_invite" "unHides from invites"
"hide_all" "hide_all" "Sets all hide setting on"
"unhide_all" "unhide_all" "Sets all hide settings off"
"set_powerinfo_class" "set_powerinfo_class" "Brings up context menu for choosing class for power info display"
"sgk" "sgk" "Kicks player from supergroup"
"sgkick" "sgkick" "Kicks player from supergroup"
"mouse_speed" "mouse_speed" "Sets the mouse speed"
"mouse_invert" "mouse_invert" "Inverts the mouse"
"speed_turn" "speed_turn" "Sets the turning speed"
"option_list" "option_list" "Lists option names."
"option_set" "option_set" "Sets an Option"
"option_toggle" "option_toggle" "Toggles an Option"
"playernote" "playernote" "Opens note window for a given global playername"
"playernotelocal" "playernotelocal" "Opens note window for a given local playername. (requires a valid name)"
"mmscrollsetViewList" "mmscrollsetViewList" "Open the scroll selector"
"mmscrollsetToggleRegion" "mmscrollsetToggleRegion" "Toggle a region open"
"architectsaveandtest" "architectsaveandtest" "Save mission being edited and return to search window"
"architectsaveandexit" "architectsaveandexit" "Save mission being edited and test"
"architectfixerrors" "architectfixerrors" "Fix Errors"
"architectexit" "architectexit" "Return to the mission maker"
"architectrepublish" "architectrepublish" "Republish mission"
"architect_save_compressed_costumes" "architect_save_compressed_costumes" "Toggle save file output to show compressed or uncompressed."
"helpwindow" "helpwindow" "Show help window"
"ati_stipple_leak" "ati_stipple_leak" "enable call to glEnable(GL_POLYGON_STIPPLE) which causes memory leaks on ATI GPUs"
"ati_stencil_leak" "ati_stencil_leak" "enable stencil FBO's which causes memory leaks on ATI GPUs"
"emailsend" "emailsend" "Send message <player names> <subject> <body> <influence>"
"emailsendattachment" "emailsendattachment" "Send message <player names> <subject> <body> <influence>"
"lfg_request_event_list" "lfg_request_event_list" "Request LFG system event list"
"lfg_remove_from_queue" "lfg_remove_from_queue" "Remove me or my team / league from LFG queue"
"lfg_event_response" "lfg_event_response" "Accept / reject offer to join event"
"supportHardwareLights" "supportHardwareLights" "Enable support for LightFX/AlienFX case lights on startup"
"priorityBoost" "priorityBoost" "Set the game process priority to Above Normal rather than Normal when running in the foreground."
"redirect" "redirect" "Internal command so smf can trigger the redirect menu"
"web_store_open_product" "web_store_open_product" "Open Web based store to product page"
"my_purchases" "my_purchases" "Show the list of purchases you have access to"
"newAccountURL" "newAccountURL" "URL for new account creation website"
"linkAccountURL" "linkAccountURL" "URL for link account website"
"canlook" "canlook" "Whether the player can use the mouse to look around."
"camrotate" "camrotate" <<Camrotate is bound to the PageUp key to allow controlled camera rotation around the player.
This command should not be invoked through the console.>>
"forward_mouse" "forward_mouse" "Move forward. Enable autorun after 2 seconds."
"forward" "forward" "Move forward."
"backward" "backward" "Move backwards."
"left" "left" "Strafe left."
"right" "right" "Strafe right."
"up" "up" "Jump or fly up."
"down" "down" "Move down (if flying)."
"turnleft" "turnleft" "Rotate left a fixed number of degrees."
"turnright" "turnright" "Rotate right a fixed number of degrees."
"zoomin" "zoomin" "Zoom camera in."
"zoomout" "zoomout" "Zoom camera out."
"lookup" "lookup" "Pitch camera up."
"lookdown" "lookdown" "Pitch camera down."
"third" "third" "Toggles between first and third person camera."
"first" "first" "Toggles between first and third person camera."
"autorun" "autorun" "Toggles autorun."
"neterrorcorrection" "neterrorcorrection" "sets the level of error correction to use for input packets."
"client_pos_id" "client_pos_id" "for letting the server know we got his position update command."
"selected_ent_server_index" "selected_ent_server_index" "send selected entity"
# Access Level 1
#------------------------------
"qamode" "qamode" "Force usage of QA mode."
"cmds" "cmds" "prints out client commands for commands containing <string>"
"var" "var" "Sets a string variable which can be referenced via %#"
"debug_info" "debug_info" "<0/1> 1=turns on printing debug info like current position, polys draw, etc."
"gpumarkers" "gpumarkers" "Enable GPU markers for profiling OpenGL state."
"version" "version" "print exe version"
"headshot_clear" "headshot_clear" "Clears the headshot cache so that contact icons are regenerated."
"slowtexload" "slowtexload" "Delays texture loading speed to simulate a slow computer"
"mapname" "mapname" "prints name of map for people running in fullscreen"
"show_all_minimaps" "show_all_minimaps" "Enables a dropdown of all game minimaps from the map window."
"mc" "mc" "Show Mouse Coordinates"
"showcontactlist" "showcontactlist" "Print out the client contact list"
"showtasklist" "showtasklist" "Print out the client task list"
"web" "web" "Activate the in game web browser"
"url" "url" "goto url (activate in game browser if necessary)"
"console_scale" "console_scale" "Scales the console."
"ctstoggle" "ctstoggle" "Toggles the click to source display."
"crashclient" "crashclient" "blarg"
"url_env" "url_env" "use URLs when in debug mode: 0 = default 1 = dev 2 = live."
"test_login_fail" "test_login_fail" "pop open the login failure dialog."
"custom_window" "custom_window" "Create a new custom window"
"custom_window_toggle" "custom_window_toggle" "Open/Close a custom window"
"architect_search_authored" "architect_search_authored" "special search for arcs authored by <authid> <authregion> , results will show in architect window"
"architect_search_reported" "architect_search_reported" "special search for arcs reported for content by <authid> <authregion> , results will show in architect window"
"architect_search_voted" "architect_search_voted" "special search for arcs voted on by <authid> <authregion> , results will show in architect window"
"architect_search_played" "architect_search_played" "special search for arcs plyed by <authid> <authregion> , results will show in architect window"
"architect_get_file" "architect_get_file" "downloads the specified arc"
"nocoll" "nocoll" "turns off collisions for player"
"speed_scale" "speed_scale" "debug option to make player move faster / slower"
"predict" "predict" "turn client side prediction on/off"
# Access Level 2
#------------------------------
"cmdusage" "cmdusage" "prints out usage of client commands for commands containing <string>"
"see_everything" "see_everything" "<0/1> Shows spawn points, triggers, pathfinding beacons, etc."
"editcostume" "editcostume" "reloads the costume bin (command line flag)"
"levelup" "levelup" "levelup <level> Increases the character's level to the given level and purchase powers"
"csrbug" "csrbug" <<Submit a bug report for another player.
Includes full bug report info for player, as well CSR's position info is included.
Syntax: [Player name] [Summary]>>
"qabugreport" "qabugreport" "Creates a /bug report on your local machine, stored in 'bug_report.log'"
"scprint" "scprint" "Print all the souvenir clues the player has"
"mapsetpos" "mapsetpos" "Allows setting position by right clicking on the map."
# Access Level 3
#------------------------------
"scgetdetail" "scgetdetail" "Get the detail text on the specified souvenir clue"
"query_account_inventory" "query_account_inventory" "Query account inventory for a product SKU."
"query_account_inventory_active" "query_account_inventory_active" "Query the active portions of the account inventory for a product SKU."
"query_publish_product" "query_publish_product" "Query publish status for a product SKU."
# Access Level 4
#------------------------------
"noMapFog" "noMapFog" "Hide the map fog"
# Access Level 5
#------------------------------
# Access Level 6
#------------------------------
"buyproduct" "buyproduct" "Buy the specified product sku and quantty from the store."
"account_loyalty_buy" "account_loyalty_buy" "Buy the specified loyalty node."
# Access Level 7
#------------------------------
"publish_product" "publish_product" "Publish or unpublish the specified product sku (1=publish, 0=unpublish)."
# Access Level 8
#------------------------------
"web_store" "web_store" "Open Web based store"
"lwcdebug" "lwcdebug" "Set LWC debug mode"
"lwcdebug_setdatastage" "lwcdebug_setdatastage" "Set LWC data stage"
"lwc_downloadrate" "lwc_downloadrate" "Set LWC download rate (0 - normal, 1 - fastest, 2 - paused)"
SERVER STARTS HERE
-----------------------------------------------------------------------------------------------------------------------------------------------
# This file contains translations for in-game commands and their help text
#
# General file format:
# "TranslatedLaunguageCommand", "EnglishCommand", "Help Text Message"
#
# TranslatedLanguageCommand is the translated command, it CAN be the same as the english command.
# EnglishCommand is the hardcoded command that will always work. DO NOT CHANGE THIS!
# Help Text Message is a brief description of the command.
#
# Comments:
# Comment lines must begin with a '#' character.
# Comments must begin at the start of the line. No trailing comments.
# Do *NOT* comment out a ID + message pair if it is going to be replaced
# by a pair with an identical ID.
# Access Level 0
#------------------------------
"neterrorcorrection" "neterrorcorrection" "sets the level of error correction to use for input packets."
"client_pos_id" "client_pos_id" "for letting the server know we got his position update command."
"selected_ent_server_index" "selected_ent_server_index" "send selected entity"
"scmdlist" "scmdlist" "Print available commands"
"who" "who" "get info on <player>"
"whoall" "whoall" "Print who's on this map."
"ignore" "ignore" "Ignore Player"
"gignore" "gignore" "Ignore Player"
"ignore_spammer" "ignore_spammer" "Ignore As Spammer"
"ignore_spammer_auth" "ignore_spammer_auth" "Ignore As Spammer"
"unignore" "unignore" "Unignore User"
"gunignore" "gunignore" "Unignore User"
"ignorelist" "ignorelist" "Displays a list of ignored users"
"playerlocale" "playerlocale" "Changes the locale of a player"
"mergeInsp" "mergeInsp" "Combine 3 inspirations into one of a different type"
"boost_convert" "boost_convert" "Converts the specified boost into something else. <idx> <conversion set>"
"requestexitmission" "requestexitmission" "leave mission map once completed"
"enterdoorteleport" "enterdoorteleport" "request teleport to another map"
"requestexitmissionalt" "requestexitmissionalt" "exit mission and teleport to another map"
"enterscriptdoor" "enterscriptdoor" "enter a script controlled door"
"emailheaders" "emailheaders" "request email headers"
"emailread" "emailread" "Request message <message num>"
"emaildelete" "emaildelete" "Delete message <message num>"
"emailsend" "emailsend" "Send message <player names> <subject> <body>"
"emailsendattachment" "emailsendattachment" "Send message <player names> <subject> <body> <influence>"
"accesslevel" "accesslevel" "force me to this access level"
"stuck" "stuck" "Try to get unstuck."
"sync" "sync" "Try to resync."
"synch" "synch" "Try to resync."
"afk" "afk" "Marks the player as Away From Keyboard (with given message)"
"copydebuginfo" "copydebuginfo" "Gather a bunch of debug info, print it, and copy it to the clipboard"
"kiosk" "kiosk" "Pop up the kiosk info for the nearest kiosk. (Assuming you're close enough.)"
"nojumprepeat" "nojumprepeat" "Disable jump auto-repeat"
"teamtask" "teamtask" "Set the team task"
"abandontask" "abandontask" "Abandon a task"
"petition_internal" "petition_internal" "internal command used by Petition Window for submission"
"arena_list" "arena_list" "Open the arena list window no matter where you are. Opens the score window if you are in an Arena match."
"arena_score" "arena_score" "Open the arena score window if you are in an Arena match. Does nothing if you aren't in an Arena match."
"sgraid_window" "sgraid_window" "Set your supergroup raid window <daybits> <hour>"
"powers_cancel" "powers_cancel" "Cancel all effects of specified power from the character if power is cancelable and target is you or your pet. ([ent id] [category.powerset.power])"
"shardcomm" "shardcomm" "send string to shardcomm"
"badge_button_use" "badge_button_use" "Claim a badge button reward."
"gfriend" "gfriend" "Add a player to your global friends list."
"gunfriend" "gunfriend" "Remove a player from your global friends list."
"chan_invite" "chan_invite" <<Invite player or chat handle to a chat channel
Syntax: chan_invite [CHANNEL NAME] [USER NAME]>>
"ginvite" "ginvite" <<Invite player or chat handle to a chat channel
Syntax: ginvite [CHANNEL NAME] [USER NAME]>>
"chan_invite_sg" "chan_invite_sg" <<Invite your entire supergroup to a chat channel. Only leaders may use this command.
You must specify the minimum rank to invite:
0 - invite entire supergroup (members, captains and leaders)
1 - invite captains and leaders only 2 - invite leaders only
Syntax: chan_invite_sg [CHANNEL NAME] [RANK]>>
"ginvite_sg" "ginvite_sg" <<Invite your entire supergroup to a chat channel. Only leaders may use this command.
You must specify the minimum rank to invite:
0 - invite entire supergroup (members, captains and leaders)
1 - invite captains and leaders only 2 - invite leaders only
Syntax: ginvite_sg [CHANNEL NAME] [RANK]>>
"chan_send" "chan_send" <<Send message to chat channel. You must be in the channel and have Send priviledges.
(alias is "/send")
Syntax: chan_send [CHANNEL NAME] [MESSAGE]>>
"send" "send" <<Send message to chat channel. You must be in the channel and have Send priviledges
Syntax: send [CHANNEL NAME] [MESSAGE]>>
"gmotd" "gmotd" "View the global message again."
"get_global_name" "get_global_name" "Gets the global name from character name."
"get_global_silent" "get_global_silent" "Gets the global name without reporting results to chat window"
"gmail_claim" "gmail_claim" "Claim Attachments on a Global Email"
"gmail_return" "gmail_return" "Claim Attachments on a Global Email"
"respec_status" "respec_status" "Find out how many respecs are available"
"tailor_status" "tailor_status" "Find out how many free tailor sessions are available"
"petViewAttributes" "petViewAttributes" "View the attributes of the player's pet"
"clearAttributeView" "clearAttributeView" "Clear the attribute target"
"respec" "respec" "Go to respec screen if you have recieved a free holiday respec"
"getarenastats" "getarenastats" "Get your arena stats."
"get_rated_arena_stats" "get_rated_arena_stats" "Get your arena stats."
"get_all_arena_stats" "get_all_arena_stats" "Get your arena stats."
"#" "#" "Comment. Ignores rest of the line."
"servertime" "servertime" "Print the current server time"
"show_petnames" "show_petnames" "Displays the names of all your named pets"
"clear_petnames" "clear_petnames" "Clear the names of all your named pets"
"release_pets" "release_pets" "Release your current pets"
"conprint" "conprint" "echo <str> to the console"
"account_certification_claim" "account_certification_claim" "claims certification"
"account_certification_refund" "account_certification_refund" "refunds the price of certification to player"
"account_loyalty_client_buy" "account_loyalty_client_buy" "purchases loyalty reward <name> for current account"
"architect_claim_tickets" "architect_claim_tickets" "Claim architect tickets earned from authored story arcs"
"architect_invisible" "architect_invisible" "Toggle invisibility on an architect test mode map"
"architect_invincible" "architect_invincible" "Toggle invincibility on an architect test mode map"
"architect_completemisison" "architect_completemisison" "Complete the current mission in Architect Test Mode"
"architect_nextobjective" "architect_nextobjective" "Go to next object on an architect test mode map"
"architect_nextcritter" "architect_nextcritter" "Go to the next critter on an architect test mode map"
"architect_killtarget" "architect_killtarget" "kill the currently selected target on an architect test mode map"
"architect_loginupdate" "architect_loginupdate" "Report how many architect tickets are waiting to be claimed"
"incarnate_equip" "incarnate_equip" "Equips the specified Incarnate Ability. Does nothing if you don't have it or its slot is locked. Also does nothing if you or your teammates are in combat, if the currently equipped IA is recharging, or if it's been less than five minutes since that slot was last equipped. [slot name] [abil name]"
"incarnate_unequip" "incarnate_unequip" "Unequips the specified Incarnate Ability. Does nothing if you don't have it or its slot is locked. Also does nothing if you or your teammates are in combat, if the currently equipped IA is recharging, or if it's been less than five minutes since that slot was last equipped. [slot name] [abil name]"
"incarnate_unequip_by_slot" "incarnate_unequip_by_slot" "Unequips whatever ability is in the specified Incarnate slot. Does nothing if the slot is locked or empty. Also does nothing if you or your teammates are in combat, if the currently equipped IA is recharging, or if it's been less than five minutes since that slot was last equipped. [slot name]"
"incarnate_unequip_all" "incarnate_unequip_all" "Unequips all equipped Incarnate Abilities."
"title_change" "title_change" "players can now change their titles"
"sethelperstatus" "sethelperstatus" "Sets your helper status. 0 = off, 1 = help me!, 2 = mentor"
"contactfinder_showcurrent" "contactfinder_showcurrent" "Shows the current contact in the Contact Finder window."
"contactfinder_shownext" "contactfinder_shownext" "Shows the next contact in the Contact Finder window."
"contactfinder_showprevious" "contactfinder_showprevious" "Shows the previous contact in the Contact Finder window."
"contactfinder_teleporttocurrent" "contactfinder_teleporttocurrent" "Teleports you to the contact currently detailed in the Contact Finder window. Only works if you have not yet been introduced to the contact."
"contactfinder_selectcurrent" "contactfinder_selectcurrent" "Selects the contact currently detailed in the Contact Finder window. Only works if you have already been introduced to the contact."
"debug_disableautodismiss" "debug_disableautodismiss" "Enables you to turn on and off auto-dismissal of contacts."
"tell" "tell" "Send a message to only one player."
"t" "t" "Send a message to only one player."
"ttl" "ttl" "Send a message to the team leader."
"tll" "tll" "Send a message to the league leader."
"private" "private" "Send a message to only one player."
"p" "p" "Send a message to only one player."
"whisper" "whisper" "Send a message to only one player."
"tellTrialMessage" "tellTrialMessage" "Send a response from a trial explaining that they can't use tells."
"friendlist" "friendlist" "Display friend list."
"fl" "fl" "Display friend list."
"group" "group" "Send message to group channel."
"g" "g" "Send message to group channel."
"team" "team" "Send message to group channel."
"yell" "yell" "Send message to entire map."
"y" "y" "Send message to entire map."
"broadcast" "broadcast" "Send message to entire map."
"b" "b" "Send message to entire map."
"r" "r" "Reply to last person that sent you a tell."
"reply" "reply" "Reply to last person that sent you a tell."
"say" "say" "Send message to your area."
"local" "local" "Send message to your area."
"l" "l" "Send message to your area."
"s" "s" "Send message to your area."
"request" "request" "Send message to request channel."
"req" "req" "Send message to request channel."
"sell" "sell" "Send message to request channel."
"auction" "auction" "Send message to request channel."
"lookingforgroup" "lookingforgroup" "Send message to Looking for Group channel."
"lfg" "lfg" "Send message to Looking for Group channel."
"supergroup" "supergroup" "Send message to super group channel."
"sg" "sg" "Send message to super group channel."
"lp" "lp" "Send message to leveling pact channel."
"coalition" "coalition" "Send message to coalition channel."
"c" "c" "Send message to coalition channel."
"league_chat" "league_chat" "Send message to league channel."
"league" "league" "Send message to league channel."
"lc" "lc" "Send message to league channel."
"arena_local" "arena_local" "Local arena chat channel"
"ac" "ac" "Arena chat channel"
"arena" "arena" "Arena chat channel"
"ma" "ma" "Archiect chat channel"
"mission_architect" "mission_architect" "Archiect chat channel"
"h" "h" "Help/guide chat channel"
"help" "help" "Help/guide chat channel"
"hc" "hc" "Help/guide chat channel"
"helpchat" "helpchat" "Help/guide chat channel"
"guide" "guide" "Help/guide chat channel"
"telllast" "telllast" "Send tell to last person you sent tell to."
"tl" "tl" "Send tell to last person you sent tell to."
"e" "e" "Emotes a text string."
"me" "me" "Emotes a text string."
"em" "em" "Emotes a text string."
"emote" "emote" "Emotes a text string."
"cc_e" "cc_e" "Uses an emote to change costumes."
"cc_emote" "cc_emote" "Uses an emote to change costumes."
"friend" "friend" "Add player to friend list."
"f" "f" "Talk to friends channel."
"estrange" "estrange" "Remove player from friend list."
"unfriend" "unfriend" "Remove player from friend list."
"levelingpact" "levelingpact" "Invite player to join your leveling pact."
"levelingpact_accept" "levelingpact_accept" "Accept an invitation into a leveling pact."
"levelingpact_decline" "levelingpact_decline" "Decline an invitation into a leveling pact."
"unlevelingpact_real" "unlevelingpact_real" "Leave your leveling pact."
"invite" "invite" "Invite player to join team."
"i" "i" "Invite player to join team."
"team_accept" "team_accept" "Recieves a team accept"
"team_decline" "team_decline" "Recieves a team decline"
"kick" "kick" "Kick player from team."
"k" "k" "Kick player from team."
"team_kick_internal" "team_kick_internal" "Kicks player without warnings"
"leaveTeam" "leaveTeam" "Leave your current team and league."
"team_quit_internal" "team_quit_internal" "Quits player without warnings"
"lfgtoggle" "lfgtoggle" "Toggle looking for group status."
"lfgset" "lfgset" "Set looking for group status"
"buffs" "buffs" "Toggle team buff display."
"makeleader" "makeleader" "Change the team leader."
"ml" "ml" "Change the team leader."
"teamMoveToLeague" "teamMoveToLeague" "Create a new league."
"tmtl" "tmtl" "Create a new league."
"sginvite" "sginvite" "Invite player to join supergroup."
"sgi" "sgi" "Invite player to join supergroup."
"sg_accept" "sg_accept" "Recieves a supergroup accept"
"sg_decline" "sg_decline" "Recieves a supergroup decline"
"sg_kick_yes" "sg_kick_yes" "Kick player from supergroup."
"sgleave" "sgleave" "Leave your current supergroup."
"sgstats" "sgstats" "Display supergroup info in chat window."
"promote" "promote" "Promote supergroup member one rank."
"demote" "demote" "Demote supergroup member one rank."
"nameLeader" "nameLeader" "Renames the 'Leader' supergroup rank."
"nameOverlord" "nameOverlord" "Renames the 'Overlord' supergroup rank."
"nameCommander" "nameCommander" "Renames the 'Commander' supergroup rank."
"nameRingleader" "nameRingleader" "Renames the 'Ringleader' supergroup rank."
"nameCaptain" "nameCaptain" "Renames the 'Captain' supergroup rank."
"nameTaskmaster" "nameTaskmaster" "Renames the 'TaskMaster' supergroup rank."
"nameLieutenant" "nameLieutenant" "Renames the 'Lieutenant' supergroup rank."
"nameEnforcer" "nameEnforcer" "Renames the 'Enforcer' supergroup rank."
"nameMember" "nameMember" "Renames the 'Member' supergroup rank."
"nameFlunky" "nameFlunky" "Renames the 'Flunky' supergroup rank."
"sgSetMOTD" "sgSetMOTD" "Sets supergroup MOTD."
"sgSetMotto" "sgSetMotto" "Sets supergroup motto."
"sgSetDescription" "sgSetDescription" "Sets supergroup description."
"sgSetDemoteTimeout" "sgSetDemoteTimeout" "Sets supergroup demote timeout."
"sgmode" "sgmode" "Toggle supergroup mode."
"sgmodeset" "sgmodeset" "Setsupergroup mode."
"coalition_invite" "coalition_invite" "Invite player's supergroup to join coalition."
"ci" "ci" "Invite player's supergroup to join coalition."
"coalition_accept" "coalition_accept" "Receives a coalition accept"
"coalition_decline" "coalition_decline" "Receives a coalition decline"
"coalition_cancel" "coalition_cancel" "Cancel coalition with a supergroup."
"coalition_sg_mintalkrank" "coalition_sg_mintalkrank" "Set the minimum rank of members of your Supergroup who can use coalition chat."
"coalition_mintalkrank" "coalition_mintalkrank" "Set the minimum rank of members of a coalition Supergroup who your Supergroup can hear."
"coalition_nosend" "coalition_nosend" "Stop your Supergroup from sending coalition chat to an ally Supergroup."
"trade" "trade" "Invite player to trade."
"trade_accept" "trade_accept" "Recieves a trade accept"
"trade_decline" "trade_decline" "Recieves a trade decline"
"costume_change" "costume_change" "Change current costume."
"cc" "cc" "Change current costume."
"hideset" "hideset" "Set hide options bitfield."
"search" "search" "Find a player."
"sea" "sea" "Find a player."
"findmember" "findmember" "Find a player."
"set_title" "set_title" "Set badge title."
"set_title_id" "set_title_id" "Set badge title (uses badge ID)."
"get_comment" "get_comment" "Get search comment."
"comment" "comment" "Set search comment."
"arenainvite" "arenainvite" "Invite player to join your arena event."
"ai" "ai" "Invite player to join your arena event."
"arena_accept" "arena_accept" "Recieves a arena accept"
"arena_decline" "arena_decline" "Recieves a arena decline"
"sgraid_invite" "sgraid_invite" "Invite player's supergroup to an instant raid."
"raid_invite" "raid_invite" "Invite player's supergroup to an instant raid."
"league_invite" "league_invite" "Invite player to join league."
"li" "li" "Invite player to join league."
"league_accept" "league_accept" "Receives a league accept"
"league_decline" "league_decline" "Receives a league decline"
"leaveLeague" "leaveLeague" "Leave your current team and league."
"leagueWithdrawTeam" "leagueWithdrawTeam" "Withdraw your team from current league."
"leagueToggleTeamLock" "leagueToggleTeamLock" "Lock your team from league swap"
"league_kick" "league_kick" "Kick player from league."
"lk" "lk" "Kick player from league."
"league_kick_internal" "league_kick_internal" "Kicks player without warnings"
"league_make_leader" "league_make_leader" "Change the team leader."
"lml" "lml" "Change the team leader."
"league_teamswap" "league_teamswap" "Swap the teams of 2 players"
"league_teammove" "league_teammove" "Move selected player to selected team"
"turnstile_invite_player_accept" "turnstile_invite_player_accept" "Invite player to the leaders instance"
"raid_accept" "raid_accept" "Accept an offer to have an instant raid"
"raid_decline" "raid_decline" "Decline an offer to have an instant raid"
"clearRewardChoice" "clearRewardChoice" "Choose no item in your current reward choice"
"tut_votekick" "tut_votekick" "Start a vote kick request"
"tut_votekick_opinion" "tut_votekick_opinion" "Vote kick opinion"
"auc_loginupdate" "auc_loginupdate" "get status of auction inventory info to the player"
# Access Level 1
#------------------------------
"speed_scale" "speed_scale" "debug option to make player move faster / slower"
"predict" "predict" "turn client side prediction on/off"
"moveentitytome" "moveentitytome" "moves selected entity to my location"
"setpos" "setpos" "move me to <x> <y> <z> on this map"
"setpospyr" "setpospyr" "move me to <x> <y> <z> on this map, set pyr"
"mapmove" "mapmove" "move to <map id>. see maps.db for map ids"
"nextplayer" "nextplayer" "go to next player"
"nextnpc" "nextnpc" "go to next npc"
"nextcritter" "nextcritter" "go to next critter"
"nextawakecritter" "nextawakecritter" "go to next critter"
"nextcar" "nextcar" "go to next car"
"nextitem" "nextitem" "go to next item"
"nextreset" "nextreset" "reset next counter"
"gotoent" "gotoent" "go to an entity by id."
"gotoentbyname" "gotoentbyname" "go to first entity with matching name."
"invincible" "invincible" "<0/1> 1=invincible, 0=normal"
"unstoppable" "unstoppable" "<0/1> 1=unstoppable, 0=normal"
"untargetable" "untargetable" "<0/1> 1=untargetable, 0=normal"
"serverwho" "serverwho" "get npc/player counts for <mapserver id> use -1 to get total for all mapservers."
"supergroupwho" "supergroupwho" "get info on <supergroup>"
"teamupwho" "teamupwho" "get info on <teamup>"
"raidwho" "raidwho" "get info on <raid>"
"levelingpactwho" "levelingpactwho" "get info on <levelingpact>"
"status" "status" "get status of <mapserver id>, use -1 to get all mapservers"
"tmsg" "tmsg" "send <teamup id> a <message>"
"invisible" "invisible" "<0/1> 1=invisible ,0=visible"
"teleport" "teleport" "Teleport the <player> to me"
"smapname" "smapname" "get name of <map id>"
"maplist" "maplist" "Displays a list of all static maps"
"nextspawn" "nextspawn" "Goes to next active encounter."
"nextspawnpoint" "nextspawnpoint" "Goes to next encounter group."
"nextmissionspawn" "nextmissionspawn" "Goes to next spawn overridden by mission system."
"nextumissionspawn" "nextumissionspawn" "Goes to next unconquered spawn overridden by mission system."
"nextunconqueredmissionspawn" "nextunconqueredmissionspawn" "Goes to next unconquered spawn overridden by mission system."
"nextobjective" "nextobjective" "Takes the player to the next objective"
"csr_assist" "csr_assist" "Help the given player by autotargeting whatever he targets"
"missionmapstats" "missionmapstats" "print some stats about mission beacons on map"
"missionmapstatstofile" "missionmapstatstofile" "Save the stats about mission beacons on the map to a file."
"mapcheckstats" "mapcheckstats" "checks if the current randomly generated map meets the missions.spec reqs"
"mapstats_checkall" "mapstats_checkall" "Checks all maps against the missions.spec"
"servermissioncontrol" "servermissioncontrol" "Request from the client for some info for Mission Control"
"benpc" "benpc" "Allows you to become a villain or npc"
"beself" "beself" "Switches you to your normal model and costume"
"debug" "debug" "print out basic player info"
"debug_detail" "debug_detail" "print out detailed player info"
"debug_tray" "debug_tray" "print out a player's tray contents"
"debug_spec" "debug_spec" "print out a player's specializations"
"goto" "goto" "move yourself to a player's map and location"
"gotomission" "gotomission" "Teleport to mission entrance. Will work across maps."
"playerrename_paid" "playerrename_paid" <<Changes a player's name (if they have a rename token).
Specify the current name first, then the new name.>>
"powers_info" "powers_info" "Lists all powers and the level they were bought at."
"powers_show" "powers_show" "Lists all powers and the level they were bought at."
"powers_info_build" "powers_info_build" "Lists all powers and the level they were bought at."
"powers_show_build" "powers_show_build" "Lists all powers and the level they were bought at."
"gethandle" "gethandle" "Displays a player's global chat handle"
"sg_grant_raid_points" "sg_grant_raid_points" "Grants points to current SG, <points> <isRaid>"
"sg_show_raid_points" "sg_show_raid_points" "show current raid points"
"sg_csr_join" "sg_csr_join" "Allows a CSR to addthemselves to a SG"
"sgrp_base_prestige_show" "sgrp_base_prestige_show" "show the amount of base prestige"
"sgrp_base_prestige_set" "sgrp_base_prestige_set" "set the amount of base prestige"
"storage_adj" "storage_adj" "usage: <adj amount> <name item to adjust> <optional:level> adjust the named salvage by N for the currently selected detail"
"storage_set" "storage_set" "usage: <set amount> <name item to adjust> <optional:level> set the named item to N for the currently selected detail"
"select_build" "select_build" "Select current build"
"architect_userinfo" "architect_userinfo" "Print architect user info"
"architect_otheruserinfo" "architect_otheruserinfo" "Print architect user info about player <authname> <region>"
"architect_useridinfo" "architect_useridinfo" "Print architect user info"
"rogue_stats" "rogue_stats" "Get current going-rogue-relevant stats"
"roguepoints_add_paragon" "roguepoints_add_paragon" "Add a paragon point (roguepoints_paragon reward token)"
"roguepoints_add_hero" "roguepoints_add_hero" "Add a hero point (roguepoints_hero reward token)"
"roguepoints_add_vigilante" "roguepoints_add_vigilante" "Add a vigilante point (roguepoints_vigilante reward token)"
"roguepoints_add_rogue" "roguepoints_add_rogue" "Add a rogue point (roguepoints_rogue reward token)"
"roguepoints_add_villain" "roguepoints_add_villain" "Add a villain point (roguepoints_villain reward token)"
"roguepoints_add_tyrant" "roguepoints_add_tyrant" "Add a tyrant point (roguepoints_tyrant reward token)"
"roguepoints_reset_paragon" "roguepoints_reset_paragon" "Reset paragon points to zero (roguepoints_paragon reward token)"
"roguepoints_reset_hero" "roguepoints_reset_hero" "Reset hero points to zero (roguepoints_hero reward token)"
"roguepoints_reset_vigilante" "roguepoints_reset_vigilante" "Reset vigilante points to zero (roguepoints_vigilante reward token)"
"roguepoints_reset_rogue" "roguepoints_reset_rogue" "Reset rogue points to zero (roguepoints_rogue reward token)"
"roguepoints_reset_villain" "roguepoints_reset_villain" "Reset villain points to zero (roguepoints_villain reward token)"
"roguepoints_reset_tyrant" "roguepoints_reset_tyrant" "Reset tyrant points to zero (roguepoints_tyrant reward token)"
"roguepoints_set_paragon" "roguepoints_set_paragon" "Set paragon points to tmp_int (roguepoints_paragon reward token)"
"roguepoints_set_hero" "roguepoints_set_hero" "Set hero points to tmp_int (roguepoints_hero reward token)"
"roguepoints_set_vigilante" "roguepoints_set_vigilante" "Set vigilante points to tmp_int (roguepoints_vigilante reward token)"
"roguepoints_set_rogue" "roguepoints_set_rogue" "Set rogue points to tmp_int (roguepoints_rogue reward token)"
"roguepoints_set_villain" "roguepoints_set_villain" "Set villain points to tmp_int (roguepoints_villain reward token)"
"roguepoints_set_tyrant" "roguepoints_set_tyrant" "Set tyrant points to tmp_int (roguepoints_tyrant reward token)"
"newalignment_switch_paragon" "newalignment_switch_paragon" "Switch to paragon alignment, reset roguepoints"