Strong Bad's Cool Game for Attractive People episodes 101 and 102 howto: get them running in Linux
by demonfoo and tremby
the commands in this howto (and some of the files linked) are specific to Ubuntu Hardy Heron. a similar procedure should work for other distros, though.
- install Wine 1.1.3 or later
- if you haven't already, add WineHQ's repository to your package manager. (instructions from WineHQ)
- add the repository's key so packages can be authenticated by running
Code:
wget -q http://wine.budgetdedicated.com/apt/387EE263.gpg -O- | sudo apt-key add -
- add the repository to the list of sources by running
Code:
sudo wget http://wine.budgetdedicated.com/apt/sources.list.d/hardy.list -O /etc/apt/sources.list.d/winehq.list
- refresh your package list by running
Code:
sudo apt-get update
- install or upgrade Wine by running
Code:
sudo apt-get install wine
- install IEs4Linux
- first we need cabextract and tar. we'll get the MS fonts while we're at it. install them by running
Code:
sudo apt-get install cabextract tar msttcorefonts
- then download and extract IEs4Linux by running
Code:
wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz -O- | tar zx
- move into the IEs4Linux directory by running
- load the installer by running
it'll complain on the command line that you're running an old version of Wine, but it's lying.
- install it. the default options are fine for the purposes of this howto, but since i'm a web developer i install IE7 too by clicking "advanced" and then checking IE7's box. close the installer when it's done.
- move back out of the IEs4Linux directory by running
- set up Wine for SBCG4AP and install the game
- copy the WINEPREFIX ("drive C") for IE6 to make one for SBCG4AP which has IE6 installed by running
Code:
cp -a ~/.ies4linux/ie6 ~/.wine_sbcg4ap
- download the Homestar Ruiner demo installer with your browser (i'll assume to your desktop) or by running
Code:
wget http://www.telltalegames.com/demo/homestarruiner -O ~/Desktop/homestarruinerdemo.exe
- start the installer by running
Code:
env WINEPREFIX=$HOME/.wine_sbcg4ap WINEDLLOVERRIDES="rpcrt4,ole32,d3d9=b" wine ~/Desktop/homestarruinerdemo.exe
- follow its instructions. the default paths are fine, and be sure to answer "yes" to the question about installing DirectX. uncheck "Play now" when it's done and click "Finish". then you can delete the installer if you like by selecting it and hitting delete or running
Code:
rm ~/Desktop/homestarruinerdemo.exe
- set up Wine for this WINEPREFIX (and therefore the game)
- run the Wine config tool with the game's WINEPREFIX by running
Code:
env WINEPREFIX=$HOME/.wine_sbcg4ap winecfg
- on the "Applications" tab, set the Windows version to Windows XP
- on the Audio tab, say OK to the box telling you to edit your audio settings and it will set some defaults. check they make sense.
- add DLL overrides. to do this, go to the "Libraries" tab and add each of the following:
by choosing from the list (or typing) and then clicking add, for each.
- for each of the overrides above, click its entry in the list of "Existing overrides" and click "Edit". choose "Built-in (Wine)" from the menu and click OK.
- optional (do this if you're having problems with the game screen or just want to run in a window): on the "Graphics" tab, check "Emulate a virtual desktop" and enter the resolution you want.
- click "Apply" and then "Close"
- start the game
double click the launcher, enter your My Telltale login information (if asked) and then click on the green area at right about the level of Strong Bad's feet; unfortunately the image that should be there doesn't appear.
to install the second episode, make sure you run the installer in your SBCG4AP environment:
Code:
env WINEPREFIX=$HOME/.wine_sbcg4ap wine ~/Desktop/Strong_Badia_the_Free_setup.exe
this time, you can say no to the DirectX question. if you do, you need to put a link to the DLL which the DirectX installer would have added (already in the Episode 1 directory) for Episode 2 after installing by running
Code:
ln -s "../Episode 1 - Homestar Ruiner/d3dx9_27.dll" ~/.wine_sbcg4ap/drive_c/"Program Files/Telltale Games/Strong Bad/Episode 2 - Strong Badia the Free/"
then the launcher the game puts on your desktop should work just fine.
to install the third, do the same stuff as for the second, but the link command will be a tad different:
Code:
ln -s "../Episode 1 - Homestar Ruiner/d3dx9_27.dll" ~/.wine_sbcg4ap/drive_c/"Program Files/Telltale Games/Strong Bad/Episode 3 - Baddest of the Bands/"