![]() |
Quake Help |
Executing Quake console commands with AppleScript |
You can execute Quake console commands with the "console" command while Quake is running. The syntax for the "console" command is as follows: |
tell application "Quake" console execute "map e1m8" end tell |
You have to separate each command with a semicolon if you want to execute several Quake console commands with a single "console" line. For example: |
tell application "Quake" console execute "toggleconsole;quit" end tell |
Tell me more |