Savage XR

Informations

Créateur Messages
sea-eye-aya Anonymous

Attention

This installer is a beta script. It means that it might not work as expected

Informations

Plate-formes :
Téléchargements : 3276
Wine: 3.20

Retours d'expérience

Description

Multiplayer RTS/FPS shooter/fighter, medieval. Website.

Savage XR (2009), is the successor of the 2003 award winning PC game Savage: The Battle for Newerth (Wikipedia).

NOTE: this game has a native Linux client ! (2019).

Captures d'écran

Miniature

Code source

#!/usr/bin/env playonlinux-bash
#
# Savage XR - Battle for Newerth. Installer script for Play On Linux/Mac.
#         http://www.savagexr.com
#         http://www.newerth.com/
#
# Date : (2018-10-19 12-00)
# Last revision : see changelog
# Wine version used : 3.20
# Distribution used to test : Xubuntu 18.04
# Game used to test : v1.4 (once patched after first start)
# Author : sea-eye-aya
#
# Tabs (not spaces), UTF-8, Unix line encoding.

# CHANGELOG
# [sea-eye-aya] (2018-10-19 12-00)
#   First script version.
# [sea-eye-aya] (2018-10-19 12-00)
#   Updates.
# [Dadu042] (2019-05-30 15-20)
#   Wine 3.18 -> 3.21  Minor changes. Standardize.
# [sea-eye-aya] (2020-01-11 12-00)
#   For some reason the PoL installer can no longer find the downloaded install file (xr_setup-1.0-cl_win_prod.exe) 
#   when it runs the POL_Wine command. Adding the $POL_System_TmpDir prefix to the command allows it to find it.
# [Dadu042] (2020-01-11 20-23)
#   Wine 3.21 -> 3.20 (latest available from POL v4.2.12)
#   Add POL_RequiredVersion "4.2.12"
#   Fix POL_Shortcut category.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Savage XR"
PREFIX="SavageXR"
EDITOR="Newerth"
GAME_URL="http://www.newerth.com"
AUTHOR="sea-eye-aya"
WORKING_WINE_VERSION="3.20"
 
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_System_TmpCreate "Tmp$PREFIX"
cd "$POL_System_TmpDir" || exit 1
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Local install is really only meant for this script development purposes,
        # to stop hitting Newerth.com bandwidth needlessly!
        #
        POL_SetupWindow_browse "$(eval_gettext 'Please select the SavageXR installer.')" "$TITLE"
        cp "$APP_ANSWER" "$POL_System_TmpDir"
        SAVAGE_INSTALLER=$(basename "$APP_ANSWER")
 
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
        # Grr POL_Download automatically give the file a name which is the end of the URL...
        #
        SAVAGE_INSTALLER="xr_setup-1.0-cl_win_prod.exe"
        AUTO_NAME="?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2"
        POL_Download "http://www.newerth.com/?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2" "84ddcf12e693f8ad0c91aefa39481328"
        mv "$AUTO_NAME" "$SAVAGE_INSTALLER"
fi
 
# Set WINE environment.
#
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_SetArch "x86"
Set_OS "win7"
 
# Run SavageXR installer.
#
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'Before to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
POL_Wine "$POL_System_TmpDir/$SAVAGE_INSTALLER"
 
# Create shortcut to game.
#
POL_Shortcut "savage.exe" "$TITLE" "" "" "Game;"
POL_Shortcut_Document "$TITLE" "SavageXR_Guide.pdf"

# Clean up and exit.
#
POL_System_TmpDelete
 
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Samedi 11 Janvier 2020 à 20:25
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -6,7 +6,7 @@
 #
 # Date : (2018-10-19 12-00)
 # Last revision : see changelog
-# Wine version used : 3.21
+# Wine version used : 3.20
 # Distribution used to test : Xubuntu 18.04
 # Game used to test : v1.4 (once patched after first start)
 # Author : sea-eye-aya
@@ -14,12 +14,19 @@
 # Tabs (not spaces), UTF-8, Unix line encoding.
 
 # CHANGELOG
-# [Dadu042] (2019-05-30 15-20)
-#   Wine 3.18 -> 3.21  Minor changes. Standardize.
 # [sea-eye-aya] (2018-10-19 12-00)
-#   Updates.
+#   First script version.
 # [sea-eye-aya] (2018-10-19 12-00)
-#   First script version.
+#   Updates.
+# [Dadu042] (2019-05-30 15-20)
+#   Wine 3.18 -> 3.21  Minor changes. Standardize.
+# [sea-eye-aya] (2020-01-11 12-00)
+#   For some reason the PoL installer can no longer find the downloaded install file (xr_setup-1.0-cl_win_prod.exe) 
+#   when it runs the POL_Wine command. Adding the $POL_System_TmpDir prefix to the command allows it to find it.
+# [Dadu042] (2020-01-11 20-23)
+#   Wine 3.21 -> 3.20 (latest available from POL v4.2.12)
+#   Add POL_RequiredVersion "4.2.12"
+#   Fix POL_Shortcut category.
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
@@ -29,12 +36,14 @@
 EDITOR="Newerth"
 GAME_URL="http://www.newerth.com"
 AUTHOR="sea-eye-aya"
-WORKING_WINE_VERSION="3.21"
+WORKING_WINE_VERSION="3.20"
  
 POL_SetupWindow_Init
 POL_Debug_Init
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
+POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_System_TmpCreate "Tmp$PREFIX"
 cd "$POL_System_TmpDir" || exit 1
  
@@ -74,7 +83,7 @@
  
 # Create shortcut to game.
 #
-POL_Shortcut "savage.exe" "$TITLE" "Game;"
+POL_Shortcut "savage.exe" "$TITLE" "" "" "Game;"
 POL_Shortcut_Document "$TITLE" "SavageXR_Guide.pdf"
 
 # Clean up and exit.

Nouveau code source

#!/usr/bin/env playonlinux-bash
#
# Savage XR - Battle for Newerth. Installer script for Play On Linux/Mac.
#         http://www.savagexr.com
#         http://www.newerth.com/
#
# Date : (2018-10-19 12-00)
# Last revision : see changelog
# Wine version used : 3.20
# Distribution used to test : Xubuntu 18.04
# Game used to test : v1.4 (once patched after first start)
# Author : sea-eye-aya
#
# Tabs (not spaces), UTF-8, Unix line encoding.

# CHANGELOG
# [sea-eye-aya] (2018-10-19 12-00)
#   First script version.
# [sea-eye-aya] (2018-10-19 12-00)
#   Updates.
# [Dadu042] (2019-05-30 15-20)
#   Wine 3.18 -> 3.21  Minor changes. Standardize.
# [sea-eye-aya] (2020-01-11 12-00)
#   For some reason the PoL installer can no longer find the downloaded install file (xr_setup-1.0-cl_win_prod.exe) 
#   when it runs the POL_Wine command. Adding the $POL_System_TmpDir prefix to the command allows it to find it.
# [Dadu042] (2020-01-11 20-23)
#   Wine 3.21 -> 3.20 (latest available from POL v4.2.12)
#   Add POL_RequiredVersion "4.2.12"
#   Fix POL_Shortcut category.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Savage XR"
PREFIX="SavageXR"
EDITOR="Newerth"
GAME_URL="http://www.newerth.com"
AUTHOR="sea-eye-aya"
WORKING_WINE_VERSION="3.20"
 
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_System_TmpCreate "Tmp$PREFIX"
cd "$POL_System_TmpDir" || exit 1
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Local install is really only meant for this script development purposes,
        # to stop hitting Newerth.com bandwidth needlessly!
        #
        POL_SetupWindow_browse "$(eval_gettext 'Please select the SavageXR installer.')" "$TITLE"
        cp "$APP_ANSWER" "$POL_System_TmpDir"
        SAVAGE_INSTALLER=$(basename "$APP_ANSWER")
 
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
        # Grr POL_Download automatically give the file a name which is the end of the URL...
        #
        SAVAGE_INSTALLER="xr_setup-1.0-cl_win_prod.exe"
        AUTO_NAME="?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2"
        POL_Download "http://www.newerth.com/?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2" "84ddcf12e693f8ad0c91aefa39481328"
        mv "$AUTO_NAME" "$SAVAGE_INSTALLER"
fi
 
# Set WINE environment.
#
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_SetArch "x86"
Set_OS "win7"
 
# Run SavageXR installer.
#
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'Before to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
POL_Wine "$POL_System_TmpDir/$SAVAGE_INSTALLER"
 
# Create shortcut to game.
#
POL_Shortcut "savage.exe" "$TITLE" "" "" "Game;"
POL_Shortcut_Document "$TITLE" "SavageXR_Guide.pdf"

# Clean up and exit.
#
POL_System_TmpDelete
 
POL_SetupWindow_Close
exit

Réponses

sea-eye-aya Samedi 11 Janvier 2020 à 18:51
sea-eye-aya Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

For some reason the PoL installer can no longer find the downloaded install file (xr_setup-1.0-cl_win_prod.exe) when it runs the POL_Wine command. Adding the $POL_System_TmpDir prefix to the command allows it to find it.

Differences

@@ -70,7 +70,7 @@
 #
 POL_Wine_WaitBefore "$TITLE"
 POL_SetupWindow_message "$(eval_gettext 'Before to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
-POL_Wine "$SAVAGE_INSTALLER"
+POL_Wine "$POL_System_TmpDir/$SAVAGE_INSTALLER"
  
 # Create shortcut to game.
 #

Nouveau code source

#!/usr/bin/env playonlinux-bash
#
# Savage XR - Battle for Newerth. Installer script for Play On Linux/Mac.
#         http://www.savagexr.com
#         http://www.newerth.com/
#
# Date : (2018-10-19 12-00)
# Last revision : see changelog
# Wine version used : 3.21
# Distribution used to test : Xubuntu 18.04
# Game used to test : v1.4 (once patched after first start)
# Author : sea-eye-aya
#
# Tabs (not spaces), UTF-8, Unix line encoding.

# CHANGELOG
# [Dadu042] (2019-05-30 15-20)
#   Wine 3.18 -> 3.21  Minor changes. Standardize.
# [sea-eye-aya] (2018-10-19 12-00)
#   Updates.
# [sea-eye-aya] (2018-10-19 12-00)
#   First script version.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Savage XR"
PREFIX="SavageXR"
EDITOR="Newerth"
GAME_URL="http://www.newerth.com"
AUTHOR="sea-eye-aya"
WORKING_WINE_VERSION="3.21"
 
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_System_TmpCreate "Tmp$PREFIX"
cd "$POL_System_TmpDir" || exit 1
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Local install is really only meant for this script development purposes,
        # to stop hitting Newerth.com bandwidth needlessly!
        #
        POL_SetupWindow_browse "$(eval_gettext 'Please select the SavageXR installer.')" "$TITLE"
        cp "$APP_ANSWER" "$POL_System_TmpDir"
        SAVAGE_INSTALLER=$(basename "$APP_ANSWER")
 
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
        # Grr POL_Download automatically give the file a name which is the end of the URL...
        #
        SAVAGE_INSTALLER="xr_setup-1.0-cl_win_prod.exe"
        AUTO_NAME="?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2"
        POL_Download "http://www.newerth.com/?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2" "84ddcf12e693f8ad0c91aefa39481328"
        mv "$AUTO_NAME" "$SAVAGE_INSTALLER"
fi
 
# Set WINE environment.
#
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_SetArch "x86"
Set_OS "win7"
 
# Run SavageXR installer.
#
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'Before to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
POL_Wine "$POL_System_TmpDir/$SAVAGE_INSTALLER"
 
# Create shortcut to game.
#
POL_Shortcut "savage.exe" "$TITLE" "Game;"
POL_Shortcut_Document "$TITLE" "SavageXR_Guide.pdf"

# Clean up and exit.
#
POL_System_TmpDelete
 
POL_SetupWindow_Close
exit

Réponses

Samedi 11 Janvier 2020 à 20:20
Script approved.
Dadu042 Jeudi 30 Mai 2019 à 14:49
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

See changelog.
Script tested and approved.
 

Differences

@@ -14,8 +14,8 @@
 # Tabs (not spaces), UTF-8, Unix line encoding.
 
 # CHANGELOG
-# [Dadu042] (2019-05-30)
-#   Wine 3.18 -> 3.21  Minor changes.
+# [Dadu042] (2019-05-30 15-20)
+#   Wine 3.18 -> 3.21  Minor changes. Standardize.
 # [sea-eye-aya] (2018-10-19 12-00)
 #   Updates.
 # [sea-eye-aya] (2018-10-19 12-00)
@@ -23,14 +23,18 @@
 
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
- 
+
 TITLE="Savage XR"
 PREFIX="SavageXR"
+EDITOR="Newerth"
+GAME_URL="http://www.newerth.com"
+AUTHOR="sea-eye-aya"
+WORKING_WINE_VERSION="3.21"
  
 POL_SetupWindow_Init
 POL_Debug_Init
-POL_SetupWindow_presentation "$TITLE" "Newerth" "http://www.newerth.com" "sea-eye-aya" "$PREFIX"
- 
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+
 POL_System_TmpCreate "Tmp$PREFIX"
 cd "$POL_System_TmpDir" || exit 1
  
@@ -58,7 +62,7 @@
 # Set WINE environment.
 #
 POL_Wine_SelectPrefix "$PREFIX"
-POL_Wine_PrefixCreate "3.21"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 POL_System_SetArch "x86"
 Set_OS "win7"
  
@@ -71,7 +75,8 @@
 # Create shortcut to game.
 #
 POL_Shortcut "savage.exe" "$TITLE" "Game;"
- 
+POL_Shortcut_Document "$TITLE" "SavageXR_Guide.pdf"
+
 # Clean up and exit.
 #
 POL_System_TmpDelete

Nouveau code source

#!/usr/bin/env playonlinux-bash
#
# Savage XR - Battle for Newerth. Installer script for Play On Linux/Mac.
#         http://www.savagexr.com
#         http://www.newerth.com/
#
# Date : (2018-10-19 12-00)
# Last revision : see changelog
# Wine version used : 3.21
# Distribution used to test : Xubuntu 18.04
# Game used to test : v1.4 (once patched after first start)
# Author : sea-eye-aya
#
# Tabs (not spaces), UTF-8, Unix line encoding.

# CHANGELOG
# [Dadu042] (2019-05-30 15-20)
#   Wine 3.18 -> 3.21  Minor changes. Standardize.
# [sea-eye-aya] (2018-10-19 12-00)
#   Updates.
# [sea-eye-aya] (2018-10-19 12-00)
#   First script version.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Savage XR"
PREFIX="SavageXR"
EDITOR="Newerth"
GAME_URL="http://www.newerth.com"
AUTHOR="sea-eye-aya"
WORKING_WINE_VERSION="3.21"
 
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_System_TmpCreate "Tmp$PREFIX"
cd "$POL_System_TmpDir" || exit 1
 
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
  
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Local install is really only meant for this script development purposes,
        # to stop hitting Newerth.com bandwidth needlessly!
        #
        POL_SetupWindow_browse "$(eval_gettext 'Please select the SavageXR installer.')" "$TITLE"
        cp "$APP_ANSWER" "$POL_System_TmpDir"
        SAVAGE_INSTALLER=$(basename "$APP_ANSWER")
 
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
        # Grr POL_Download automatically give the file a name which is the end of the URL...
        #
        SAVAGE_INSTALLER="xr_setup-1.0-cl_win_prod.exe"
        AUTO_NAME="?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2"
        POL_Download "http://www.newerth.com/?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2" "84ddcf12e693f8ad0c91aefa39481328"
        mv "$AUTO_NAME" "$SAVAGE_INSTALLER"
fi
 
# Set WINE environment.
#
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_SetArch "x86"
Set_OS "win7"
 
# Run SavageXR installer.
#
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'Before to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
POL_Wine "$SAVAGE_INSTALLER"
 
# Create shortcut to game.
#
POL_Shortcut "savage.exe" "$TITLE" "Game;"
POL_Shortcut_Document "$TITLE" "SavageXR_Guide.pdf"

# Clean up and exit.
#
POL_System_TmpDelete
 
POL_SetupWindow_Close
exit

Réponses

Edité par Dadu042

sea-eye-aya Dimanche 28 Octobre 2018 à 13:26
sea-eye-aya Anonymous

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -0,0 +1,71 @@
+#!/usr/bin/env playonlinux-bash
+#
+# Savage XR - Battle for Newerth installer script for Play On Linux/Mac.
+# 	http://www.savagexr.com
+# 	http://www.newerth.com/
+#
+# Date : (2018-10-19 12-00)
+# Last revision : (2018-10-23 12-00)
+# Wine version used : 3.18
+# Distribution used to test : Void Linux, Ubuntu 16.04
+# Author : sea-eye-aya
+#
+# Tabs (not spaces), UTF-8, Unix line encoding.
+#
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Savage XR"
+PREFIX="SavageXR"
+
+POL_SetupWindow_Init
+POL_Debug_Init
+POL_SetupWindow_presentation "$TITLE" "Newerth" "http://www.newerth.com" "sea-eye-aya" "$PREFIX"
+
+POL_System_TmpCreate "Tmp$PREFIX"
+cd "$POL_System_TmpDir" || exit 1
+
+POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
+ 
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+	# Local install is really only meant for this script development purposes,
+	# to stop hitting Newerth.com bandwidth needlessly!
+	#
+	POL_SetupWindow_browse "$(eval_gettext 'Please select the SavageXR installer.')" "$TITLE"
+	cp "$APP_ANSWER" "$POL_System_TmpDir"
+	SAVAGE_INSTALLER=$(basename "$APP_ANSWER")
+
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+	# Grr POL_Download automatically give the file a name which is the end of the URL...
+	#
+	SAVAGE_INSTALLER="xr_setup-1.0-cl_win_prod.exe"
+	AUTO_NAME="?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2"
+	POL_Download "http://www.newerth.com/?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2" "84ddcf12e693f8ad0c91aefa39481328"
+	mv "$AUTO_NAME" "$SAVAGE_INSTALLER"
+fi
+
+# Set WINE enviroment.
+#
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "3.18"
+POL_System_SetArch "x86"
+Set_OS "win7"
+
+# Run SavageXR installer.
+#
+POL_Wine_WaitBefore "$TITLE"
+POL_SetupWindow_message "$(eval_gettext 'About to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
+POL_Wine "$SAVAGE_INSTALLER"
+
+# Create shortcut to game.
+#
+POL_Shortcut "savage.exe" "$TITLE"
+
+# Clean up and exit.
+#
+POL_System_TmpDelete
+
+POL_SetupWindow_Close
+exit

Nouveau code source

#!/usr/bin/env playonlinux-bash
#
# Savage XR - Battle for Newerth installer script for Play On Linux/Mac.
#         http://www.savagexr.com
#         http://www.newerth.com/
#
# Date : (2018-10-19 12-00)
# Last revision : (2018-10-23 12-00)
# Wine version used : 3.18
# Distribution used to test : Void Linux, Ubuntu 16.04
# Author : sea-eye-aya
#
# Tabs (not spaces), UTF-8, Unix line encoding.
#
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Savage XR"
PREFIX="SavageXR"

POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Newerth" "http://www.newerth.com" "sea-eye-aya" "$PREFIX"

POL_System_TmpCreate "Tmp$PREFIX"
cd "$POL_System_TmpDir" || exit 1

POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
        # Local install is really only meant for this script development purposes,
        # to stop hitting Newerth.com bandwidth needlessly!
        #
        POL_SetupWindow_browse "$(eval_gettext 'Please select the SavageXR installer.')" "$TITLE"
        cp "$APP_ANSWER" "$POL_System_TmpDir"
        SAVAGE_INSTALLER=$(basename "$APP_ANSWER")

elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
        # Grr POL_Download automatically give the file a name which is the end of the URL...
        #
        SAVAGE_INSTALLER="xr_setup-1.0-cl_win_prod.exe"
        AUTO_NAME="?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2"
        POL_Download "http://www.newerth.com/?id=downloads&op=downloadFile&file=xr_setup-1.0-cl_win_prod.exe&mirrorid=2" "84ddcf12e693f8ad0c91aefa39481328"
        mv "$AUTO_NAME" "$SAVAGE_INSTALLER"
fi

# Set WINE enviroment.
#
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "3.18"
POL_System_SetArch "x86"
Set_OS "win7"

# Run SavageXR installer.
#
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "$(eval_gettext 'About to start the Savage XR Installer, please choose:\n\t * The default install location.\n\t * The default settings.\n\nOnce installed you can register an account (to have your player stats and rankings recorded) or login as guest by leaving the fields empty.')"
POL_Wine "$SAVAGE_INSTALLER"

# Create shortcut to game.
#
POL_Shortcut "savage.exe" "$TITLE"

# Clean up and exit.
#
POL_System_TmpDelete

POL_SetupWindow_Close
exit

Réponses

Vendredi 2 Novembre 2018 à 14:14
I'll check your script during the week-end. I still thing that's really not required to copy the installer to /tmp and you should probably don't use it. You don't need to change the all script for that to wrok

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