WoWWiki

This wiki contains inaccurate and out-of-date information. Please head over to https://wowpedia.fandom.com for more accurate and up-to-date game information.

READ MORE

WoWWiki
Advertisement

Slash commands


Runs a block of script text

/script code

Aliases[]

script
run

Arguments[]

code
A block of LUA code to execute. This must all be one line before the LF character.

Notes[]

Use the semicolon (;) character in between LUA code lines instead of pressing Enter. Pressing Enter will start a new line of macro text to process.
Any local variables defined in the code block will be destroyed after the code is processed. It is recommended you use local variables unless you need to pass the information elsewhere or just flat run out of room. You may still access variables in the global environment.
This command will not let you bypass LUA scripting limitations or UI restrictions.
The LUA code is processed separately from macro text. You cannot use LUA code to do things like insert a condition into your macro.
Advertisement