256164b569
Unreal Tournament 2003 is a first-person shooter computer game designed mainly for multiplayer gaming although the game had a built in single-player mode that mimics multiplayer gaming by featuring AI-bots. The game is part of the Unreal franchise's series of games and is a the sequel to 1999's Unreal Tournament. Unreal II: The Awakening was released as a sister product to the game, however, was developed for single-player only. Later, Unreal II would receive an add-on that would enable a multiplayer mode. UT 2003 was followed by Unreal Tournament 2004 released in March of 2004. WWW: http://www.unrealtournament.com/ut2003/ PR: ports/85549 Submitted by: Alejandro Pulver <alejandro@varnet.biz>
12 lines
266 B
Bash
12 lines
266 B
Bash
#!/bin/sh
|
|
|
|
export UT2003_DATA_PATH="%%UTDIR%%/System"
|
|
|
|
if [ -n "$LD_LIBRARY_PATH" ]; then
|
|
export LD_LIBRARY_PATH="$UT2003_DATA_PATH:$LD_LIBRARY_PATH"
|
|
else
|
|
export LD_LIBRARY_PATH="$UT2003_DATA_PATH"
|
|
fi
|
|
|
|
cd "$UT2003_DATA_PATH" || exit 1
|
|
exec ./ut2003-bin "$@"
|