Differences between revisions 1 and 2
Revision 1 as of 2016-08-15 21:54:47
Size: 27
Editor: ?GaelLeboeuf
Comment:
Revision 2 as of 2016-08-15 22:32:08
Size: 1703
Editor: ?GaelLeboeuf
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Describe Games/UT99 here. = Unreal Tournament =
== Description ==

Multiplayer-oriented FPS released in 1999 with native Linux port.
Many game types are available (Deathmatch, CTF, Assault, Domination, etc...)

{{attachment:screenshot.png}}

== Install UT99 on Debian/Stretch (AMD64) (working on 2016-08-15) ==

Game Of The Year edition includes bonus pack 1,2 &3.

__1. Install old gtk libs__
 In order to be able to launch the installer (and the game), you need to install 3 old libraries (install the i386 versions!).
 [[https://archive.debian.net/lenny/libglib1.2ldbl|libglib1.2]]
 [[https://archive.debian.net/lenny/libgtk1.2-common|libgtk1.2-common]]
 [[https://archive.debian.net/lenny/oldlibs/libgtk1.2|libgtk1.2]]
 
__2. Run the installer__
 The installer can be downloaded [[http://liflg.org/?catid=6&gameid=51|here]].
 Be careful to choose the right version (GOTY or not...)
 Launch it in 32 bit environement.
{{{
sudo linux32 sh unreal.tournament_436-multilanguage.goty.run
}}}

__3. Install oss compatibility libs__
 In order to have sound working, you need to install oss compatibility for PulseAudio.
{{{
sudo apt-get install osspd-pulseaudio:i386 libpulsedsp:i386
}}}

__4. Create a padsp32 script__
  Create a psdsp32 script based on /usr/bin/padsp and change lines as follow :
{{{
...
if [ x“$LD_PRELOAD” = x ] ; then
LD_PRELOAD=“/usr/lib/i386-linux-gnu/pulseaudio/libpulsedsp.so”
else
LD_PRELOAD=“$LD_PRELOAD /usr/lib/i386-linux-gnu/pulseaudio/libpulsedsp.so”
fi
...
}}}

__5. Create a launcher__

 Like this :
{{{
#! /bin/sh
cd /usr/local/games/ut/System/
/path_to_new_script/padsp32 /usr/local/games/ut/System/ut-bin
}}}

__6. Enjoy!__

Unreal Tournament

Description

Multiplayer-oriented FPS released in 1999 with native Linux port. Many game types are available (Deathmatch, CTF, Assault, Domination, etc...)

screenshot.png

Install UT99 on Debian/Stretch (AMD64) (working on 2016-08-15)

Game Of The Year edition includes bonus pack 1,2 &3.

1. Install old gtk libs

2. Run the installer

  • The installer can be downloaded here. Be careful to choose the right version (GOTY or not...) Launch it in 32 bit environement.

sudo linux32 sh unreal.tournament_436-multilanguage.goty.run 

3. Install oss compatibility libs

  • In order to have sound working, you need to install oss compatibility for PulseAudio.

sudo apt-get install osspd-pulseaudio:i386 libpulsedsp:i386 

4. Create a padsp32 script

  • Create a psdsp32 script based on /usr/bin/padsp and change lines as follow :

...
if [ x“$LD_PRELOAD” = x ] ; then
LD_PRELOAD=“/usr/lib/i386-linux-gnu/pulseaudio/libpulsedsp.so”
else
LD_PRELOAD=“$LD_PRELOAD /usr/lib/i386-linux-gnu/pulseaudio/libpulsedsp.so”
fi 
...

5. Create a launcher

  • Like this :

cd /usr/local/games/ut/System/
/path_to_new_script/padsp32 /usr/local/games/ut/System/ut-bin 

6. Enjoy!