Having Unreal Tournament on Linux problems? Can't find "Entry"... the textures etc probably haven't decompressed off of the disk. Read the more text for a script to fix the problems
#!/bin/sh
# FILENAME: convert.sh
#
# Change this to YOUR install-dir of UT
#
INSTALLDIR=/home/david/usr/local/games/ut
cd $INSTALLDIR/System
for i in ../Maps/*.unr.uz
do
ucc decompress $i -nohomedir
done
mv *.unr ../Maps
cd ../Maps
for f in *.unr
do
rm $f.uz
done
echo "..:: Done! ::.."
Posted by jamespo at April 22, 2003 02:21 PM