Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'q3a scripts' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
q3a scripts
Authored by: brett_ on Jan 18, '02 12:38:23PM
finally, something i can help on. re: launching qe3 straight into a mod. this applescript launches me straight into urban terror:
tell application "Terminal" do script with command "'/Applications/Games/Quake3/Quake3.app/Contents /MacOS/Quake3' +set fs_game q3ut2" end tell
obviously, if you want to launch into a different mod, change "q3ut2" to the acronym for your mod. i dunno where to find a web list of mod acronyms offhand. but it *might* just be the name of the mod's directory. or you can look at the acronyms used by only mortal -- the best osx q3a server browser to date. http://homepage.mac.com/only_mortal/ finally, here's an example of launching a command line dedicated server:
tell application "Terminal" do script with command "/Applications/Games/Quake3/Q3DedicatedServer -RetailInstallationPath /Applications/Games/Quake3 +cvar_restart +set com_hunkmegs 30 +set net_port 29099 +set vm_game 2 +set dedicated 2 +set g_gametype 3 +set gamename Q3UT2 +set fs_game q3ut2 +map ut_sliema +exec utserver.cfg" end tell
this is an example that works -- but may not be the best for your setup. research the variables for your own needs. good luck. N.B.: all code broken for ubb purposes. everything between the "tell" and "end" lines should be one contiguous line. brett.

[ Reply to This | # ]