Helldorado
Informations
Créateur | Messages |
---|---|
kaiwa
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 Description1883, SANTA FE. Peace in this town has been shattered by a shocking kidnapping. Gather your men and ride on a series of challenging missions to stop treacherous, marauding outlaws in this story of vile blackmail and revenge. Code source#!/bin/bash # Date : 2016-04-29 # Last revision : see changelog # Wine version used : 3.0.3, 1.7.55-staging # Distribution used to test : Ubuntu 16.04 LTS # Author : http://github.com/kaiwa # URL : http://github.com/kaiwa/playonlinux-script-helldorado # Based on http://www.gamersonlinux.com/forum/threads/helldorado-guide.541/ by "booman" # # CHANGELOG # [NSLW] (2009-05-29 18-00) # Initial script. # [Dadu042] (2020-01-16 23:30) # Wine "1.7.55-staging" (outdated) -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Helldorado" PREFIX="$TITLE" # Requiring staging version of wine because of bug https://bugs.winehq.org/show_bug.cgi?id=37811 WINE_VERSION="3.0.3" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Spellbound" "http://www.spellbound.de" "http://github.com/kaiwa" "$PREFIX" POL_SetupWindow_VMS "128" # FIND SETUP.EXE POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE=$APP_ANSWER elif [ "$INSTALL_METHOD" = "DVD" ] then POL_SetupWindow_check_cdrom "setup.exe" SETUP_EXE="$CDROM/setup.exe" fi # CREATE WINE PREFIX POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINE_VERSION" Set_OS "win7" POL_Wine_OverrideDLL "native" "msvcp71" # INSTALL LIBRARIES POL_Call POL_Install_corefonts POL_Call POL_Install_devenum POL_Call POL_Install_dxfullsetup POL_Call POL_Install_physx POL_Call POL_Install_tahoma POL_Call POL_Install_xvid # INSTALL GAME POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" /SILENT /COMPONENTS="Game Files" /DIR="expand:{pf}\\$TITLE" POL_Wine_WaitExit "$TITLE" # ADDITIONAL GAME FILES POL_SetupWindow_question "$(eval_gettext 'Do you have a patch to install?')" "$TITLE" if [ $APP_ANSWER ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the file to install.')" "$TITLE" cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/$TITLE" fi # FINISH INSTALLATION POL_Shortcut "Helldorado.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" Set_Desktop "On" "1024" "768" POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Jeudi 16 Janvier 2020 à 23:36 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,12 +1,18 @@ #!/bin/bash # Date : 2016-04-29 -# Last revision : 2016-04-30 -# Wine version used : 1.7.55-staging +# Last revision : see changelog +# Wine version used : 3.0.3, 1.7.55-staging # Distribution used to test : Ubuntu 16.04 LTS # Author : http://github.com/kaiwa # URL : http://github.com/kaiwa/playonlinux-script-helldorado # Based on http://www.gamersonlinux.com/forum/threads/helldorado-guide.541/ by "booman" +# +# CHANGELOG +# [NSLW] (2009-05-29 18-00) +# Initial script. +# [Dadu042] (2020-01-16 23:30) +# Wine "1.7.55-staging" (outdated) -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -14,7 +20,7 @@ TITLE="Helldorado" PREFIX="$TITLE" # Requiring staging version of wine because of bug https://bugs.winehq.org/show_bug.cgi?id=37811 -WINE_VERSION="1.7.55-staging" +WINE_VERSION="3.0.3" POL_SetupWindow_Init @@ -66,7 +72,7 @@ fi # FINISH INSTALLATION -POL_Shortcut "Helldorado.exe" "$TITLE" +POL_Shortcut "Helldorado.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" Set_Desktop "On" "1024" "768" Nouveau code source#!/bin/bash # Date : 2016-04-29 # Last revision : see changelog # Wine version used : 3.0.3, 1.7.55-staging # Distribution used to test : Ubuntu 16.04 LTS # Author : http://github.com/kaiwa # URL : http://github.com/kaiwa/playonlinux-script-helldorado # Based on http://www.gamersonlinux.com/forum/threads/helldorado-guide.541/ by "booman" # # CHANGELOG # [NSLW] (2009-05-29 18-00) # Initial script. # [Dadu042] (2020-01-16 23:30) # Wine "1.7.55-staging" (outdated) -> 3.0.3 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Helldorado" PREFIX="$TITLE" # Requiring staging version of wine because of bug https://bugs.winehq.org/show_bug.cgi?id=37811 WINE_VERSION="3.0.3" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Spellbound" "http://www.spellbound.de" "http://github.com/kaiwa" "$PREFIX" POL_SetupWindow_VMS "128" # FIND SETUP.EXE POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE=$APP_ANSWER elif [ "$INSTALL_METHOD" = "DVD" ] then POL_SetupWindow_check_cdrom "setup.exe" SETUP_EXE="$CDROM/setup.exe" fi # CREATE WINE PREFIX POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINE_VERSION" Set_OS "win7" POL_Wine_OverrideDLL "native" "msvcp71" # INSTALL LIBRARIES POL_Call POL_Install_corefonts POL_Call POL_Install_devenum POL_Call POL_Install_dxfullsetup POL_Call POL_Install_physx POL_Call POL_Install_tahoma POL_Call POL_Install_xvid # INSTALL GAME POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" /SILENT /COMPONENTS="Game Files" /DIR="expand:{pf}\\$TITLE" POL_Wine_WaitExit "$TITLE" # ADDITIONAL GAME FILES POL_SetupWindow_question "$(eval_gettext 'Do you have a patch to install?')" "$TITLE" if [ $APP_ANSWER ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the file to install.')" "$TITLE" cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/$TITLE" fi # FINISH INSTALLATION POL_Shortcut "Helldorado.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" Set_Desktop "On" "1024" "768" POL_SetupWindow_Close exit Réponses |
kaiwa | Samedi 30 Avril 2016 à 13:27 |
kaiwa
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,76 @@ +#!/bin/bash + +# Date : 2016-04-29 +# Last revision : 2016-04-30 +# Wine version used : 1.7.55-staging +# Distribution used to test : Ubuntu 16.04 LTS +# Author : http://github.com/kaiwa +# URL : http://github.com/kaiwa/playonlinux-script-helldorado +# Based on http://www.gamersonlinux.com/forum/threads/helldorado-guide.541/ by "booman" + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Helldorado" +PREFIX="$TITLE" +# Requiring staging version of wine because of bug https://bugs.winehq.org/show_bug.cgi?id=37811 +WINE_VERSION="1.7.55-staging" + +POL_SetupWindow_Init + +POL_SetupWindow_presentation "$TITLE" "Spellbound" "http://www.spellbound.de" "http://github.com/kaiwa" "$PREFIX" +POL_SetupWindow_VMS "128" + +# FIND SETUP.EXE +POL_SetupWindow_InstallMethod "LOCAL,DVD" + +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" + SETUP_EXE=$APP_ANSWER +elif [ "$INSTALL_METHOD" = "DVD" ] +then + POL_SetupWindow_check_cdrom "setup.exe" + SETUP_EXE="$CDROM/setup.exe" +fi + +# CREATE WINE PREFIX +POL_System_SetArch "x86" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINE_VERSION" +Set_OS "win7" +POL_Wine_OverrideDLL "native" "msvcp71" + +# INSTALL LIBRARIES +POL_Call POL_Install_corefonts +POL_Call POL_Install_devenum +POL_Call POL_Install_dxfullsetup +POL_Call POL_Install_physx +POL_Call POL_Install_tahoma +POL_Call POL_Install_xvid + +# INSTALL GAME +POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" + +POL_Wine_WaitBefore "$TITLE" +POL_Wine start /unix "$SETUP_EXE" /SILENT /COMPONENTS="Game Files" /DIR="expand:{pf}\\$TITLE" +POL_Wine_WaitExit "$TITLE" + +# ADDITIONAL GAME FILES +POL_SetupWindow_question "$(eval_gettext 'Do you have a patch to install?')" "$TITLE" + +if [ $APP_ANSWER ] +then + POL_SetupWindow_browse "$(eval_gettext 'Please select the file to install.')" "$TITLE" + cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/$TITLE" +fi + +# FINISH INSTALLATION +POL_Shortcut "Helldorado.exe" "$TITLE" +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" + +Set_Desktop "On" "1024" "768" + +POL_SetupWindow_Close + +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : 2016-04-29 # Last revision : 2016-04-30 # Wine version used : 1.7.55-staging # Distribution used to test : Ubuntu 16.04 LTS # Author : http://github.com/kaiwa # URL : http://github.com/kaiwa/playonlinux-script-helldorado # Based on http://www.gamersonlinux.com/forum/threads/helldorado-guide.541/ by "booman" [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Helldorado" PREFIX="$TITLE" # Requiring staging version of wine because of bug https://bugs.winehq.org/show_bug.cgi?id=37811 WINE_VERSION="1.7.55-staging" POL_SetupWindow_Init POL_SetupWindow_presentation "$TITLE" "Spellbound" "http://www.spellbound.de" "http://github.com/kaiwa" "$PREFIX" POL_SetupWindow_VMS "128" # FIND SETUP.EXE POL_SetupWindow_InstallMethod "LOCAL,DVD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE=$APP_ANSWER elif [ "$INSTALL_METHOD" = "DVD" ] then POL_SetupWindow_check_cdrom "setup.exe" SETUP_EXE="$CDROM/setup.exe" fi # CREATE WINE PREFIX POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINE_VERSION" Set_OS "win7" POL_Wine_OverrideDLL "native" "msvcp71" # INSTALL LIBRARIES POL_Call POL_Install_corefonts POL_Call POL_Install_devenum POL_Call POL_Install_dxfullsetup POL_Call POL_Install_physx POL_Call POL_Install_tahoma POL_Call POL_Install_xvid # INSTALL GAME POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$SETUP_EXE" /SILENT /COMPONENTS="Game Files" /DIR="expand:{pf}\\$TITLE" POL_Wine_WaitExit "$TITLE" # ADDITIONAL GAME FILES POL_SetupWindow_question "$(eval_gettext 'Do you have a patch to install?')" "$TITLE" if [ $APP_ANSWER ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the file to install.')" "$TITLE" cp "$APP_ANSWER" "$WINEPREFIX/drive_c/$PROGRAMFILES/$TITLE" fi # FINISH INSTALLATION POL_Shortcut "Helldorado.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" Set_Desktop "On" "1024" "768" POL_SetupWindow_Close exit Réponses |
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