WoW:Macros: Difference between revisions
Jump to navigation
Jump to search
(→How to setup a macro: link Lua) |
|||
Line 18: | Line 18: | ||
'''Note on the /script command.''' You may include a /script [string] command in your macro, where [string] can be any valid chunk of Lua code. Multiple statements should be delimited with a semi-colon. The [[World of Warcraft API]] page lists global Lua functions that may be called. | '''Note on the /script command.''' You may include a /script [string] command in your macro, where [string] can be any valid chunk of [[Lua]] code. Multiple statements should be delimited with a semi-colon. The [[World of Warcraft API]] page lists global Lua functions that may be called. | ||
== Also See == | == Also See == |
Revision as of 17:34, 2 August 2006
Macros are series of commands designed to be executed in series.
A macro can consist of any number of /<command>s or pure text to up 255 characters. Users wishing to use more advanced commands are recommended to see the Interface Customization and World of Warcraft API sections.
How to setup a macro
- Type /macro
- Press New
- Enter a Name
- Select an icon
- Make your macro (click link for details)
Once your macro is made, you can either drag the icon to a toolbar or access it by typing /macro <name> from the command line.
Note on the /script command. You may include a /script [string] command in your macro, where [string] can be any valid chunk of Lua code. Multiple statements should be delimited with a semi-colon. The World of Warcraft API page lists global Lua functions that may be called.