Mit der neusten Patch 1.15.2 von Blizzard ist es nun erstmals offiziell möglich StarCraft ohne CD zu spielen. Mangels Wintendo spiele ich StarCraft mit Wine unter Linux. Und so gehts:

Starcraft neuste Version 1.15.2:

Ich habe mir die neuste Patchversion Version 1.15.2 für StarCraft Deutsch ohne Expansion Set “Brood War” über http://ftp.blizzard.com/pub/starcraft/patches/PC/SC-1152.exe geholt und anschließend mit wine erfolgreich installiert:

wget http://ftp.blizzard.com/pub/starcraft/patches/PC/SC-1152.exe
wine SC-1152.exe

In der beliegenden ReadMe steht zum Spielen ohne CD folgende Information:

If you own only StarCraft, copy “INSTALL.EXE” from the StarCraft CD to
your StarCraft folder and rename it to “StarCraft.mpq”.

Die fragliche Datei befindet sich auf meiner “CD-Rom” unter /media/cdrom klein geschrieben und ist 605MB groß:

-r-xr-xr-x 1 root root 605M 3. Apr 1998 /media/cdrom/install.exe

Ich kopiere die install.exe wie im Patch-ReadMe beschrieben in mein StarCraft Installationsverzeichnis:

mount /media/cdrom
cp /media/cdrom/install.exe ~/.wine/drive_c/Programme/Starcraft/StarCraft.mpq
umount /media/cdrom
cd ~/.wine/drive_c/Programme/Starcraft
wine StarCraft.exe

Oder im virtuellen Desktop:

wine explorer /desktop=name,640x480 StarCraft.exe

Die neuste Version scheint anstandslos auch ohne CD zu laufen 🙂

StarCraft alte Version 1.14:

Bisher habe ich StarCraft immer über mein (quick’n dirty) Skript “starcraft.sh” gestartet, welches eine ISO anstelle der Spiele-CD für mich über das loop-device gemountet hat.

#!/bin/sh
#----------------------------------------

if [ -f /media/cdrom/sc.ico ]; then
    echo Game-CD already mounted
else
    echo Mounting Game-CD
    mount /home/beko/iso/starcraft.iso
fi

wine ./starcraft.exe $@

umount /home/beko/iso/starcraft.iso

DIe ISO habe ich vorher zusammen mit einigen anderen Spiele-ISOs, mit denen ich ähnlich verfahre, in meiner fstab definiert:

/home/beko/iso/starcraft.iso /media/cdrom iso9660 ro,noauto,user,exec,loop 0 0

Zum Vergleich:

  • 623M starcraft.iso
  • 605M StarCraft.mpq

Ich spare mir mit der neusten Patch also ganze 18 MB und ein paar Zeilen in meinem Startup Skript. Danke Blizzard…

Leave a Reply

To respond on your own website, enter the URL of your response which should contain a link to this post's permalink URL. Your response will then appear (possibly after moderation) on this page. Want to update or remove your response? Update or delete your post and re-enter your post's URL again. (Find out more about Webmentions.)