Engine:Console commands: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
Line 13: Line 13:
* In context by default
* In context by default
* Default command is 'varedit' if in context
* Default command is 'varedit' if in context
: [[MACRO var|varedit]] - (none), / - Prints or sets variable, if variable name and not other command.
: [[MACRO var|varedit]] - (none), / - Prints or sets variable, if is variable and not another command.
: [[MACRO var|var]] - var, /var - Creates a variable. If already exists, then does not change value.
: [[MACRO var|var]] - var, /var - Creates a variable. If already exists, then does not change value.
: [[MACRO var|set]] - set, /set - Set an existing var. Updates a value on an existing variable if exists.
: [[MACRO var|set]] - set, /set - Set an existing var. Updates a value on an existing variable if exists.
: [[MACRO var|alias]] - alias, /alias - New named script. Will change existing alias if already created.
: [[MACRO var|alias]] - alias, /alias - New named script. Will change existing alias if already created.
: [[MACRO var|bind]] - bind, /bind - Key to script.  Map a key to a script block.
: [[MACRO var|bind]] - bind, /bind - Key to script.  Map a key to a script block.

Revision as of 20:42, 12 October 2023

This is a reference for Engine console commands available for use a chat window or other console, and as macro commands in a macro.

This list describes all of the 'slash' commands from Engine itself, and not from any additional modules or AddOns.

By default in the core or empty UI, the console can be entered during runtime by pressing the 'back tick' (`) and exited by pressing escape (Esc). If in a chat type box, commands can be run by starting with a forward slash before the command line, to separate them from actual chat.

Reference

In Engine, commands are divided into sets defined by modules. Some commands are always available by default. Others are only available by setting console context to that module first. In some modules, there can be a default command that gets run if no actual command is specified.

Main

Data module

  • In context by default
  • Default command is 'varedit' if in context
varedit - (none), / - Prints or sets variable, if is variable and not another command.
var - var, /var - Creates a variable. If already exists, then does not change value.
set - set, /set - Set an existing var. Updates a value on an existing variable if exists.
alias - alias, /alias - New named script. Will change existing alias if already created.
bind - bind, /bind - Key to script. Map a key to a script block.