PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : UT will nicht starten



Turrican
19.06.03, 23:03
Hallo,

this is my Problem.

http://www.computing.net/linux/wwwboard/forum/16040.html

Eins vorweg! Ich habe die "Game of the Year" Edition, brauche also auch dementsprechend den Goty Installer. Nach erfolgreicher Installation sind aber noch alle Maps im Format unr.uz

Wie im Artikel erwähnt, wenn ich UT starten möchte erhalte ich die Fehlermeldung:

"Can`t find Entry file"

ein ucc decompress /usr/local/games/ut/Maps/Entry.unr.uz bringt leider nichts. Es scheint wohl so, als würde es entpackt werden -> angeblich auch ins selbe Verzeichnis. Aber dem ist nicht so, das File liegt dann immer noch gepackt darum!

Kann mir da jemand weiterhelfen?


Viele Grüsse
Turrican

Freeze
19.06.03, 23:37
gefunden bei http://www.icculus.org/lgfaq/
das sollte eigentlich dein problem lösen



Q: UT appears to have installed properly, but the game keeps complaining about a missing 'Entry' and exiting!
A: Under some circumstances (such as using an unsupported CD), the maps are not uncompressed during the installation. The opening screen of Unreal Tournament is actually a map, called "Entry", which should be named usr/local/games/ut/Maps/Entry.unr if this file is missing, the installation was not successful and you should make sure that you are using the correct installer for your CD. If the file is present but is named Entry.unr.uz, it is still compressed. Since the maps were not shipped on the retail UT CD in a compressed format, you are either trying to use a GOTY CD (or one of the other, unsupported, Unreal Tournament releases) with the regular installer, or the uncompression step failed. If you have a number of .uz files in your /usr/local/games/ut/Maps/ directory, you will need to uncompress them after the installation. A description for doing so follows:

#!/bin/sh
# FILENAME: convert.sh
#
# Change this to YOUR install-dir of UT
#
INSTALLDIR=/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! ::.."