Tomb Raider Anniversary

Informations

Creator Message
GNU_Raziel

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 22582
Wine: 3.0.3

Feedbacks

Screenshots

Source code

#!/bin/bash
# Date : (2010-05-11 21-00)
# Last revision : 
# Wine version used : 1.8.2
# Distribution used to test : Mint 17.3
# Author : GNU_Raziel,Nicolas HOUDELOT
# Licence : Retail
#
# CHANGELOG
# [Dadu042] (2020-01-01)
#   First script.
# [Nicolas HOUDELOT] (2016-05-07)
# - update & fix deprecated functions
# - add images at installation
# - bump to wine 1.8.2
# [Dadu042] (2020-03-28)
# - Wine 1.8.2 (outdated) -> 3.0.3
# - Fix POL_Shortcut

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Tomb Raider Anniversary"
PREFIX="TombRaiderAnniversary"
WINE_VERSION="3.0.3"
GAME_VMS=64

LNG_CHOOSE_DDV="$(eval_gettext 'Please select your $TITLE Digital Download executable')"
LNG_INSTALL_ON="$(eval_gettext 'Installation in progress...')"
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/f/f1/Tomb_Raider_-_Anniversary.png/64px-Tomb_Raider_-_Anniversary.png" "https://upload.wikimedia.org/wikipedia/en/thumb/f/f1/Tomb_Raider_-_Anniversary.png/150px-Tomb_Raider_-_Anniversary.png"  "$TITLE"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Eidos Interactive" "http://www.tombraider.com/anniversary" "GNU_Raziel" "$PREFIX" 

POL_System_SetArch "auto"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"

#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 ##
#Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,LOCAL"
if [ "$INSTALL_METHOD" == "DVD" ]; then
        #asking for CDROM and checking if it's correct one
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd $HOME
        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
        POL_Wine "$SETUP_EXE"
        INSTALL_ON="1"
        until [ "$INSTALL_ON" == "" ]; do
        sleep 5
        INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
        done
        POL_SetupWindow_detect_exit
fi

# 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

# making shortcut
POL_Shortcut "tra.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 Message
Dadu042 Saturday 28 March 2020 at 22:51
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,23 +1,28 @@
 #!/bin/bash
 # Date : (2010-05-11 21-00)
-# Last revision : (2016-05-07)
+# Last revision : 
 # Wine version used : 1.8.2
 # Distribution used to test : Mint 17.3
 # Author : GNU_Raziel,Nicolas HOUDELOT
 # Licence : Retail
 #
-# Changelog
-# (2016-05-07) - Nicolas HOUDELOT
+# CHANGELOG
+# [Dadu042] (2020-01-01)
+#   First script.
+# [Nicolas HOUDELOT] (2016-05-07)
 # - update & fix deprecated functions
 # - add images at installation
 # - bump to wine 1.8.2
+# [Dadu042] (2020-03-28)
+# - Wine 1.8.2 (outdated) -> 3.0.3
+# - Fix POL_Shortcut
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
 TITLE="Tomb Raider Anniversary"
 PREFIX="TombRaiderAnniversary"
-WINE_VERSION="1.8.2"
+WINE_VERSION="3.0.3"
 GAME_VMS=64
 
 LNG_CHOOSE_DDV="$(eval_gettext 'Please select your $TITLE Digital Download executable')"
@@ -80,8 +85,8 @@
         rm -rf "$POL_USER_ROOT/tmp/*"
 fi
 
-#making shortcut
-POL_Shortcut "tra.exe" "$TITLE" "" "" "" "Game;Adventure;"
+# making shortcut
+POL_Shortcut "tra.exe" "$TITLE" "" ""  "Game;Adventure;"
 POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
 POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
 POL_SetupWindow_Close

New source code

#!/bin/bash
# Date : (2010-05-11 21-00)
# Last revision : 
# Wine version used : 1.8.2
# Distribution used to test : Mint 17.3
# Author : GNU_Raziel,Nicolas HOUDELOT
# Licence : Retail
#
# CHANGELOG
# [Dadu042] (2020-01-01)
#   First script.
# [Nicolas HOUDELOT] (2016-05-07)
# - update & fix deprecated functions
# - add images at installation
# - bump to wine 1.8.2
# [Dadu042] (2020-03-28)
# - Wine 1.8.2 (outdated) -> 3.0.3
# - Fix POL_Shortcut

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Tomb Raider Anniversary"
PREFIX="TombRaiderAnniversary"
WINE_VERSION="3.0.3"
GAME_VMS=64

LNG_CHOOSE_DDV="$(eval_gettext 'Please select your $TITLE Digital Download executable')"
LNG_INSTALL_ON="$(eval_gettext 'Installation in progress...')"
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/f/f1/Tomb_Raider_-_Anniversary.png/64px-Tomb_Raider_-_Anniversary.png" "https://upload.wikimedia.org/wikipedia/en/thumb/f/f1/Tomb_Raider_-_Anniversary.png/150px-Tomb_Raider_-_Anniversary.png"  "$TITLE"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Eidos Interactive" "http://www.tombraider.com/anniversary" "GNU_Raziel" "$PREFIX" 

POL_System_SetArch "auto"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"

#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 ##
#Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,LOCAL"
if [ "$INSTALL_METHOD" == "DVD" ]; then
        #asking for CDROM and checking if it's correct one
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd $HOME
        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
        POL_Wine "$SETUP_EXE"
        INSTALL_ON="1"
        until [ "$INSTALL_ON" == "" ]; do
        sleep 5
        INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
        done
        POL_SetupWindow_detect_exit
fi

# 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

# making shortcut
POL_Shortcut "tra.exe" "$TITLE" "" ""  "Game;Adventure;"
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
POL_SetupWindow_Close
exit 0

Replies

nhoudelot Sunday 8 May 2016 at 0:41
nhoudelot Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

did also an update for this old script.
I kept the Digital Download version like it was, as i can't test it

Differences

@@ -1,117 +1,88 @@
 #!/bin/bash
 # Date : (2010-05-11 21-00)
-# Last revision : (2010-05-11 21-00)
-# Wine version used : 1.3.3
-# Distribution used to test : Debian Squeeze (Testing)
-# Author : GNU_Raziel
+# Last revision : (2016-05-07)
+# Wine version used : 1.8.2
+# Distribution used to test : Mint 17.3
+# Author : GNU_Raziel,Nicolas HOUDELOT
 # Licence : Retail
- 
+#
+# Changelog
+# (2016-05-07) - Nicolas HOUDELOT
+# - update & fix deprecated functions
+# - add images at installation
+# - bump to wine 1.8.2
+
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-
+ 
 TITLE="Tomb Raider Anniversary"
 PREFIX="TombRaiderAnniversary"
-WORKING_WINE_VERSION="1.3.3"
+WINE_VERSION="1.8.2"
+GAME_VMS=64
 
-if [ "$POL_LANG" == "fr" ]; then
-LNG_CHOOSE_MEDIA="Quelle version possédez-vous?"
-LNG_DVD="Version DVD"
-LNG_DDV="Version Digital Download"
-LNG_CHOOSE_DDV="Veuillez selectionner votre executable Digital Download de $TITLE"
-LNG_INSERT_MEDIA="Veuillez insérer le disque $TITLE dans votre lecteur\nsi ce n'est pas déja fait."
-LNG_WAIT_END="Appuyez sur \"Suivant\" UNIQUEMENT quand l'installation du\njeu sera terminée sous peine de devoir recommencer l'installation."
-LNG_INSTALL_ON="Installation en cours..."
-LNG_GAME_VMS="Quelle est la quantité de mémoire (Mo) de votre carte graphique ?\n(minimum pour ce jeu : 256)" 
-LNG_VMS_ERROR="Ce jeu ne fonctionnera correctement qu'avec une carte graphique ayant plus de 256Mo de mémoire."
-LNG_SUCCES="$TITLE a été installé avec succès."
-else
-LNG_CHOOSE_MEDIA="What version do you have?"
-LNG_DVD="DVD Version"
-LNG_DDV="Digital Download Version"
-LNG_CHOOSE_DDV="Please select your $TITLE Digital Download executable"
-LNG_INSERT_MEDIA="Please insert $TITLE media into your disk drive\nif not already done."
-LNG_WAIT_END="Click on \"Next\" ONLY when the game installation is finished\nor you will have to redo the installation."
-LNG_INSTALL_ON="Installation in progress..."
-LNG_GAME_VMS="How much memory does your graphics board have?\n(minimum for this game : 256)" 
-LNG_VMS_ERROR="This game will work correctly only with a graphic card with more than 256Mo of memory."
-LNG_SUCCES="$TITLE has been installed successfully."
-fi
- 
+LNG_CHOOSE_DDV="$(eval_gettext 'Please select your $TITLE Digital Download executable')"
+LNG_INSTALL_ON="$(eval_gettext 'Installation in progress...')"
+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/f/f1/Tomb_Raider_-_Anniversary.png/64px-Tomb_Raider_-_Anniversary.png" "https://upload.wikimedia.org/wikipedia/en/thumb/f/f1/Tomb_Raider_-_Anniversary.png/150px-Tomb_Raider_-_Anniversary.png"  "$TITLE"
 #starting the script
-cd $REPERTOIRE/tmp
-rm *.jpg
 POL_SetupWindow_Init
- 
-POL_SetupWindow_presentation "$TITLE" "Eidos Interactive" "http://www.tombraider.com/anniversary" "GNU_Raziel" "$PREFIX"  
- 
-select_prefix "$REPERTOIRE/wineprefix/$PREFIX"
+POL_SetupWindow_presentation "$TITLE" "Eidos Interactive" "http://www.tombraider.com/anniversary" "GNU_Raziel" "$PREFIX" 
 
-#downloading specific Wine
-POL_SetupWindow_install_wine "$WORKING_WINE_VERSION"
-Use_WineVersion "$WORKING_WINE_VERSION"
+POL_System_SetArch "auto"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINE_VERSION"
 
-#fetching PROGRAMFILES environmental variable 
-POL_LoadVar_PROGRAMFILES
- 
-#Choose between DVD and Digital Download version
-POL_SetupWindow_menu "$LNG_CHOOSE_MEDIA" "$TITLE" "$LNG_DVD~$LNG_DDV" "~"
- 
-if [ "$APP_ANSWER" == "$LNG_DVD" ]; then
-	GAME_MEDIAVERSION="DVD"	
-else
-	GAME_MEDIAVERSION="DD"
-fi
- 
-if [ "$GAME_MEDIAVERSION" == "DVD" ]; then
-	#asking for CDROM and checking if it's correct one
-	POL_SetupWindow_message "$LNG_INSERT_MEDIA"
-	POL_SetupWindow_cdrom
-	POL_SetupWindow_check_cdrom "setup.exe"
-	wine start /unix "$CDROM/setup.exe"
-	POL_SetupWindow_message "$LNG_WAIT_END" "$TITLE"
-else
-	#Asking then installing DDV of the game
-	cd $HOME
-	POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
-	SETUP_EXE="$APP_ANSWER"
-	POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
-	wine start /unix "$SETUP_EXE"
-	INSTALL_ON="1"
-	until [ "$INSTALL_ON" == "" ]; do
-	sleep 5
-	INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
-	done
-	POL_SetupWindow_detect_exit
-fi
- 
+#Configuration de wine
+Set_OS "winxp"
 #asking about memory size of graphic card
-POL_SetupWindow_menu_list "$LNG_GAME_VMS" "$TITLE" "128-256-320-384-512-640-768-896-1024-1792-2048" "-" "256"
-VMS="$APP_ANSWER"
- 
-cd "$WINEPREFIX/drive_c/windows/temp/"
-echo "[HKEY_CURRENT_USER\\Software\\Wine\\Direct3D]" > vms.reg
-echo "\"VideoMemorySize\"=\"$VMS\"" >> vms.reg
-regedit vms.reg
-if [ "$VMS" -lt "256" ]; then
-	POL_SetupWindow_message "$LNG_VMS_ERROR" "$TITLE"
-fi
- 
+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
-[ "$PLAYONMAC" == "" ] && Set_SoundDriver "alsa"
-[ "$PLAYONMAC" == "" ] || Set_Managed "Off"
+[ "$POL_OS" = "Mac" ] && Set_Managed "Off"
 ## End Section
- 
-#cleaning temp
+
+## Installer ##
+#Choose between DVD and Digital Download version
+POL_SetupWindow_InstallMethod "DVD,LOCAL"
+if [ "$INSTALL_METHOD" == "DVD" ]; then
+        #asking for CDROM and checking if it's correct one
+        POL_SetupWindow_cdrom
+        POL_SetupWindow_check_cdrom "setup.exe"
+        POL_Wine start /unix "$CDROM/setup.exe"
+        POL_Wine_WaitExit "$TITLE"
+else
+        #Asking then installing DDV of the game
+        cd $HOME
+        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
+        SETUP_EXE="$APP_ANSWER"
+        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
+        POL_Wine "$SETUP_EXE"
+        INSTALL_ON="1"
+        until [ "$INSTALL_ON" == "" ]; do
+        sleep 5
+        INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
+        done
+        POL_SetupWindow_detect_exit
+fi
+
+# Cleaning temp
 if [ -e "$WINEPREFIX/drive_c/windows/temp/" ]; then
-	rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
-	chmod -R 777 "$REPERTOIRE/tmp/"
-	rm -rf "$REPERTOIRE/tmp/*"
+        rm -rf "$WINEPREFIX/drive_c/windows/temp/*"
+        chmod -R 777 "$POL_USER_ROOT/tmp/"
+        rm -rf "$POL_USER_ROOT/tmp/*"
 fi
- 
-#making shortcut
-POL_SetupWindow_auto_shortcut "$PREFIX" "tra.exe" "$TITLE" "$PREFIX.xpm" ""
-Set_WineVersion_Assign "$WORKING_WINE_VERSION" "$TITLE" 
 
+#making shortcut
+POL_Shortcut "tra.exe" "$TITLE" "" "" "" "Game;Adventure;"
 POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
+POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
 POL_SetupWindow_Close
-exit
\ No newline at end of file
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2010-05-11 21-00)
# Last revision : (2016-05-07)
# Wine version used : 1.8.2
# Distribution used to test : Mint 17.3
# Author : GNU_Raziel,Nicolas HOUDELOT
# Licence : Retail
#
# Changelog
# (2016-05-07) - Nicolas HOUDELOT
# - update & fix deprecated functions
# - add images at installation
# - bump to wine 1.8.2

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Tomb Raider Anniversary"
PREFIX="TombRaiderAnniversary"
WINE_VERSION="1.8.2"
GAME_VMS=64

LNG_CHOOSE_DDV="$(eval_gettext 'Please select your $TITLE Digital Download executable')"
LNG_INSTALL_ON="$(eval_gettext 'Installation in progress...')"
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/f/f1/Tomb_Raider_-_Anniversary.png/64px-Tomb_Raider_-_Anniversary.png" "https://upload.wikimedia.org/wikipedia/en/thumb/f/f1/Tomb_Raider_-_Anniversary.png/150px-Tomb_Raider_-_Anniversary.png"  "$TITLE"
#starting the script
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITLE" "Eidos Interactive" "http://www.tombraider.com/anniversary" "GNU_Raziel" "$PREFIX" 

POL_System_SetArch "auto"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINE_VERSION"

#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 ##
#Choose between DVD and Digital Download version
POL_SetupWindow_InstallMethod "DVD,LOCAL"
if [ "$INSTALL_METHOD" == "DVD" ]; then
        #asking for CDROM and checking if it's correct one
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup.exe"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        #Asking then installing DDV of the game
        cd $HOME
        POL_SetupWindow_browse "$LNG_CHOOSE_DDV" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_SetupWindow_wait_next_signal "$LNG_INSTALL_ON" "$TITLE"
        POL_Wine "$SETUP_EXE"
        INSTALL_ON="1"
        until [ "$INSTALL_ON" == "" ]; do
        sleep 5
        INSTALL_ON=`ps aux | grep "wineserver" | grep -v "grep"`
        done
        POL_SetupWindow_detect_exit
fi

# 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

#making shortcut
POL_Shortcut "tra.exe" "$TITLE" "" "" "" "Game;Adventure;"
POL_SetupWindow_message "$LNG_SUCCES" "$TITLE"
POL_SetupWindow_message "$LNG_CPSWARN" "$TITLE"
POL_SetupWindow_Close
exit 0

Replies

Saturday 28 March 2020 at 22:48
Script approved.