Tomb Raider: Underworld
Informations
| Creator | Meddelanden |
|---|---|
nhoudelot
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionTomb Raider: Underworld is an action-adventure video game, the eighth instalment of the Tomb Raider series, following character Lara Croft. The story continues from the events in Tomb Raider: Legend as a direct sequel, but also addresses unexplained plot elements by association with Tomb Raider: Anniversary. Source code#!/bin/bash
# Date : (2016-05-07)
# Last revision : see changelog
# Wine version used : see changelog
# Distribution used to test : Mint 17.3
# Author : Nicolas HOUDELOT
# Licence : Retail
#
# Changelog
# (2016-05-07) - Nicolas HOUDELOT
# - Initial Release
# [Dadu042] (2020-03-28)
# Wine 1.8.2 (outdated) -> 3.0.3 (not tested)
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
#Definition des variables
TITLE="Tomb Raider Underworld"
PREFIX="TombRaiderUnderworld"
EDITOR="Eidos Interactive"
WEBSITE="http://www.tombraider.com/"
AUTHOR="Nicolas HOUDELOT"
WINEVERSION="3.0.3"
GAME_VMS=128
LNG_SUCCES="$(eval_gettext '$TITLE has been installed successfully.')"
LNG_CPSWARN="$(eval_gettext 'Please note that this game has a copy protection system\nand sadly, it prevents Wine from running the game.\n\nPlayOnLinux will not provide any help concerning any illegal\nstuff.')"
POL_GetSetupImages "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/64px-Tomb_Raider_-_Underworld.png" "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/150px-Tomb_Raider_-_Underworld.png" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEBSITE" "$AUTHOR" "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
#Configuration de wine
Set_OS "winxp"
#asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
## PlayOnMac Section
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section
## Installer ##
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "setup.exe"
POL_Wine start /unix "$CDROM/setup.exe"
POL_Wine_WaitExit "$TITLE"
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/*"
fi
#simuler_reboot
POL_Wine_reboot
#making shortcut
POL_Shortcut "tru.exe" "$TITLE" "" "" "Game;Adventure;"
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Meddelanden |
| Dadu042 | Sunday 29 March 2020 at 0:16 |
|
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,7 +1,7 @@ #!/bin/bash # Date : (2016-05-07) -# Last revision : (2016-05-07) -# Wine version used : 1.8.2 +# Last revision : see changelog +# Wine version used : see changelog # Distribution used to test : Mint 17.3 # Author : Nicolas HOUDELOT # Licence : Retail @@ -9,6 +9,9 @@ # Changelog # (2016-05-07) - Nicolas HOUDELOT # - Initial Release +# [Dadu042] (2020-03-28) +# Wine 1.8.2 (outdated) -> 3.0.3 (not tested) + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -19,7 +22,7 @@ EDITOR="Eidos Interactive" WEBSITE="http://www.tombraider.com/" AUTHOR="Nicolas HOUDELOT" -WINEVERSION="1.8.2" +WINEVERSION="3.0.3" GAME_VMS=128 LNG_SUCCES="$(eval_gettext '$TITLE has been installed successfully.')" @@ -65,7 +68,7 @@ #simuler_reboot POL_Wine_reboot #making shortcut -POL_Shortcut "tru.exe" "$TITLE" "" "" "" "Game;Adventure;" +POL_Shortcut "tru.exe" "$TITLE" "" "" "Game;Adventure;" POL_SetupWindow_message "$LNG_SUCCES" "$TITLE" POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE" New source code#!/bin/bash
# Date : (2016-05-07)
# Last revision : see changelog
# Wine version used : see changelog
# Distribution used to test : Mint 17.3
# Author : Nicolas HOUDELOT
# Licence : Retail
#
# Changelog
# (2016-05-07) - Nicolas HOUDELOT
# - Initial Release
# [Dadu042] (2020-03-28)
# Wine 1.8.2 (outdated) -> 3.0.3 (not tested)
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
#Definition des variables
TITLE="Tomb Raider Underworld"
PREFIX="TombRaiderUnderworld"
EDITOR="Eidos Interactive"
WEBSITE="http://www.tombraider.com/"
AUTHOR="Nicolas HOUDELOT"
WINEVERSION="3.0.3"
GAME_VMS=128
LNG_SUCCES="$(eval_gettext '$TITLE has been installed successfully.')"
LNG_CPSWARN="$(eval_gettext 'Please note that this game has a copy protection system\nand sadly, it prevents Wine from running the game.\n\nPlayOnLinux will not provide any help concerning any illegal\nstuff.')"
POL_GetSetupImages "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/64px-Tomb_Raider_-_Underworld.png" "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/150px-Tomb_Raider_-_Underworld.png" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEBSITE" "$AUTHOR" "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
#Configuration de wine
Set_OS "winxp"
#asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
## PlayOnMac Section
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section
## Installer ##
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "setup.exe"
POL_Wine start /unix "$CDROM/setup.exe"
POL_Wine_WaitExit "$TITLE"
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/*"
fi
#simuler_reboot
POL_Wine_reboot
#making shortcut
POL_Shortcut "tru.exe" "$TITLE" "" "" "Game;Adventure;"
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
POL_SetupWindow_Close
exit 0 Svar |
| nhoudelot | Sunday 8 May 2016 at 2:24 |
nhoudelot
|
WarningThis update has not been approved yet by the team. Meddelandenok.. i think i did a mystacke by not sending the script while creating the game. Differences@@ -0,0 +1,74 @@ +#!/bin/bash +# Date : (2016-05-07) +# Last revision : (2016-05-07) +# Wine version used : 1.8.2 +# Distribution used to test : Mint 17.3 +# Author : Nicolas HOUDELOT +# Licence : Retail +# +# Changelog +# (2016-05-07) - Nicolas HOUDELOT +# - Initial Release + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +#Definition des variables +TITLE="Tomb Raider Underworld" +PREFIX="TombRaiderUnderworld" +EDITOR="Eidos Interactive" +WEBSITE="http://www.tombraider.com/" +AUTHOR="Nicolas HOUDELOT" +WINEVERSION="1.8.2" +GAME_VMS=128 + +LNG_SUCCES="$(eval_gettext '$TITLE has been installed successfully.')" +LNG_CPSWARN="$(eval_gettext 'Please note that this game has a copy protection system\nand sadly, it prevents Wine from running the game.\n\nPlayOnLinux will not provide any help concerning any illegal\nstuff.')" + +POL_GetSetupImages "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/64px-Tomb_Raider_-_Underworld.png" "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/150px-Tomb_Raider_-_Underworld.png" "$TITLE" +POL_SetupWindow_Init +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEBSITE" "$AUTHOR" "$PREFIX" + +POL_System_SetArch "auto" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +#Configuration de wine +Set_OS "winxp" +#asking about memory size of graphic card +POL_SetupWindow_VMS $GAME_VMS +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver + +# Sound problem fix - pulseaudio related +[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa" +[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y" +## End Fix + +## PlayOnMac Section +[ "$POL_OS" = "Mac" ] && Set_Managed "Off" +## End Section + +## Installer ## +POL_SetupWindow_cdrom +POL_SetupWindow_check_cdrom "setup.exe" +POL_Wine start /unix "$CDROM/setup.exe" +POL_Wine_WaitExit "$TITLE" + +# Cleaning temp +if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then + rm -rf "$WINEPREFIX/drive_c/windows/temp/*" + chmod -R 777 "$POL_USER_ROOT/tmp/" + rm -rf "$POL_USER_ROOT/tmp/*" +fi + +#simuler_reboot +POL_Wine_reboot +#making shortcut +POL_Shortcut "tru.exe" "$TITLE" "" "" "" "Game;Adventure;" + +POL_SetupWindow_message "$LNG_SUCCES" "$TITLE" +POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash
# Date : (2016-05-07)
# Last revision : (2016-05-07)
# Wine version used : 1.8.2
# Distribution used to test : Mint 17.3
# Author : Nicolas HOUDELOT
# Licence : Retail
#
# Changelog
# (2016-05-07) - Nicolas HOUDELOT
# - Initial Release
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
#Definition des variables
TITLE="Tomb Raider Underworld"
PREFIX="TombRaiderUnderworld"
EDITOR="Eidos Interactive"
WEBSITE="http://www.tombraider.com/"
AUTHOR="Nicolas HOUDELOT"
WINEVERSION="1.8.2"
GAME_VMS=128
LNG_SUCCES="$(eval_gettext '$TITLE has been installed successfully.')"
LNG_CPSWARN="$(eval_gettext 'Please note that this game has a copy protection system\nand sadly, it prevents Wine from running the game.\n\nPlayOnLinux will not provide any help concerning any illegal\nstuff.')"
POL_GetSetupImages "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/64px-Tomb_Raider_-_Underworld.png" "https://upload.wikimedia.org/wikipedia/en/thumb/5/56/Tomb_Raider_-_Underworld.png/150px-Tomb_Raider_-_Underworld.png" "$TITLE"
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$WEBSITE" "$AUTHOR" "$PREFIX"
POL_System_SetArch "auto"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
#Configuration de wine
Set_OS "winxp"
#asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
# Set Graphic Card information keys for wine
POL_Wine_SetVideoDriver
# Sound problem fix - pulseaudio related
[ "$POL_OS" = "Linux" ] && Set_SoundDriver "alsa"
[ "$POL_OS" = "Linux" ] && Set_SoundEmulDriver "Y"
## End Fix
## PlayOnMac Section
[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
## End Section
## Installer ##
POL_SetupWindow_cdrom
POL_SetupWindow_check_cdrom "setup.exe"
POL_Wine start /unix "$CDROM/setup.exe"
POL_Wine_WaitExit "$TITLE"
# Cleaning temp
if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
chmod -R 777 "$POL_USER_ROOT/tmp/"
rm -rf "$POL_USER_ROOT/tmp/*"
fi
#simuler_reboot
POL_Wine_reboot
#making shortcut
POL_Shortcut "tru.exe" "$TITLE" "" "" "" "Game;Adventure;"
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
POL_SetupWindow_Close
exit 0 Svar |
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com
Install this program