Quake Quake Help
Using mission packs with AppleScript

Please follow this steps to use mission packs or mods with AppleScript:

1 Open the ScriptEditor located at the "AppleScript" folder inside your "Applications" folder.
2 Create a new script with the following three lines:

tell application "Quake"
    run params "-game HIPNOTIC"
end tell

Replace "HIPNOTIC" with the name of the desired mission pack. If you want to use GLQuake instead of Quake replace "Quake" with "GLQuake".
3 Save the new AppleScript as "Application".
 
Tell me more