DescriptionTomb Raider: The Last Revelation is the fourth instalment in the Tomb Raider video game series. The story opens in Angkor Wat in 1984, when Lara Croft is 16. She and her mentor, Werner Von Croy, are exploring ancient ruins, searching for an ancient artefact called the Iris. They find it, but Lara finds inscriptions that warn of terrible retribution for any who disturb the artefact. Von Croy ignores the warnings and the temple begins to close. Lara is forced to run, leaving him trapped inside. In 1999, Lara and a local guide are searching for the Tomb of Seth, hoping to find the Amulet of Horus, a charm in the shape of an ankh, set with a ruby.
ImagesScript[code language=playonlinux]
#!/bin/bash
##Informations
# Date : (2012-08-25 14-57)
# Last revision : (2012-08-25 14-57)
# Wine version used : 1.5.11
# Distribution used to test : Ubuntu 12.04 LTS
# Author : tharvik
## Configuration
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Tomb Raider: The Last Revelation"
PREFIX="Tomb_Raider_The_Last_Revelation"
## Script
# Welcome
POL_SetupWindow_Init
POL_Debug_Init
# No website, dead (--> http://en.wikipedia.org/wiki/Core_Design)
POL_SetupWindow_presentation "$TITLE" "Core Design" "" "tharvik" "$PREFIX"
# Creating Prefix
POL_System_SetArch "x86"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "1.5.11"
Set_OS "win95"
# Asking the mountpoint
POL_SetupWindow_message "$(eval_gettext "Please insert the game media into your disk drive.")" "$TITLE"
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "tomb4.exe"
POL_SetupWindow_check_cdrom "audio/001_VonCroy2.wav"
POL_SetupWindow_check_cdrom "audio/012_VonCroy11b.wav"
POL_SetupWindow_check_cdrom "data/alexhub.tr4"
POL_SetupWindow_check_cdrom "data/joby5a.tr4"
# Installing
POL_SetupWindow_wait "$(eval_gettext "Please wait while $TITLE is installed.")" "$TITLE"
POL_Wine start /unix "$CDROM/autorun.exe"
POL_Wine_WaitExit
# Add Shortcut
POL_Shortcut "tomb4.exe" "$TITLE"
# Cleaning
POL_SetupWindow_message "$TITLE has been successfully installed." "$TITLE"
POL_SetupWindow_Close
exit
[/code]
tharvik