Wildlife Park 2
Informations
Créateur | Messages |
---|---|
LinuxScripter
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionBecome a zoo manager and take good care of your animals. Code source#!/bin/bash # Date : (2018-03-23 22:41) # Last revision : (2018-03-24 09:51) # Wine version used : 3.0 # Distribution used to test : Ubuntu 18.04 64bit # Author : LinuxScripter # Script licence : GPLv3 # Program licence : Proprietary [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Wildlife Park 2" PREFIX="WildlifePark2" EDITOR="B-Alive" AUTHOR="LinuxScripter" GAME_URL="www.wildlifepark2.com" WORKING_WINE_VERSION="3.0" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Function_SetResolution POL_Call POL_Install_quartz POL_Wine_OverrideDLL "" "winegstreamer" POL_SetupWindow_InstallMethod "CD,STEAM" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "wlp2.ico" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else POL_Call POL_Install_steam cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/304350 POL_Wine_WaitBefore "$TITLE" fi if ["$INSTALL_METHOD" == "STEAM"]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/304350" else POL_Shortcut "WLP2.exe" "$TITLE" "wlp2.ico" fi POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
LinuxScripter | Samedi 24 Mars 2018 à 9:53 |
LinuxScripter
|
InformationCette mise à jour a été acceptée par l'équipe MessagesAdded a proper end to the second if loop. Differences@@ -0,0 +1,54 @@ +#!/bin/bash +# Date : (2018-03-23 22:41) +# Last revision : (2018-03-24 09:51) +# Wine version used : 3.0 +# Distribution used to test : Ubuntu 18.04 64bit +# Author : LinuxScripter +# Script licence : GPLv3 +# Program licence : Proprietary + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Wildlife Park 2" +PREFIX="WildlifePark2" +EDITOR="B-Alive" +AUTHOR="LinuxScripter" +GAME_URL="www.wildlifepark2.com" +WORKING_WINE_VERSION="3.0" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +POL_Call POL_Function_SetResolution + +POL_Call POL_Install_quartz +POL_Wine_OverrideDLL "" "winegstreamer" + +POL_SetupWindow_InstallMethod "CD,STEAM" + +if [ "$INSTALL_METHOD" == "CD" ]; then +POL_SetupWindow_cdrom +POL_SetupWindow_check_cdrom "wlp2.ico" +POL_Wine start /unix "$CDROM/setup.exe" +POL_Wine_WaitExit "$TITLE" +else +POL_Call POL_Install_steam +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" +POL_Wine "steam.exe" steam://install/304350 +POL_Wine_WaitBefore "$TITLE" +fi + +if ["$INSTALL_METHOD" == "STEAM"]; then +POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/304350" +else +POL_Shortcut "WLP2.exe" "$TITLE" "wlp2.ico" +fi + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2018-03-23 22:41) # Last revision : (2018-03-24 09:51) # Wine version used : 3.0 # Distribution used to test : Ubuntu 18.04 64bit # Author : LinuxScripter # Script licence : GPLv3 # Program licence : Proprietary [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Wildlife Park 2" PREFIX="WildlifePark2" EDITOR="B-Alive" AUTHOR="LinuxScripter" GAME_URL="www.wildlifepark2.com" WORKING_WINE_VERSION="3.0" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Function_SetResolution POL_Call POL_Install_quartz POL_Wine_OverrideDLL "" "winegstreamer" POL_SetupWindow_InstallMethod "CD,STEAM" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "wlp2.ico" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else POL_Call POL_Install_steam cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/304350 POL_Wine_WaitBefore "$TITLE" fi if ["$INSTALL_METHOD" == "STEAM"]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/304350" else POL_Shortcut "WLP2.exe" "$TITLE" "wlp2.ico" fi POL_SetupWindow_Close exit 0 Réponses |
LinuxScripter | Vendredi 23 Mars 2018 à 23:09 |
LinuxScripter
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesThe winegstreamer lib might not be visible when browsing though dlls in winecfg but without it the instalation process from the CD fails. Quartz is needed to go past the B-Alive splash screen. The game should be run in virtual desktop or else it changes user's resolution. When all of those fixes are applied the game runs flawlessly. The webpage is down so don't bother. Differences@@ -0,0 +1,53 @@ +#!/bin/bash +# Date : (2018-03-23 22:41) +# Last revision : (2018-03-23 22:41) +# Wine version used : 3.0 +# Distribution used to test : Ubuntu 18.04 64bit +# Author : LinuxScripter +# Script licence : GPLv3 +# Program licence : Proprietary + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Wildlife Park 2" +PREFIX="WildlifePark2" +EDITOR="B-Alive" +AUTHOR="LinuxScripter" +GAME_URL="www.wildlifepark2.com" +WORKING_WINE_VERSION="3.0" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +POL_Call POL_Function_SetResolution + +POL_Call POL_Install_quartz +POL_Wine_OverrideDLL "" "winegstreamer" + +POL_SetupWindow_InstallMethod "CD,STEAM" + +if [ "$INSTALL_METHOD" == "CD" ]; then +POL_SetupWindow_cdrom +POL_SetupWindow_check_cdrom "wlp2.ico" +POL_Wine start /unix "$CDROM/setup.exe" +POL_Wine_WaitExit "$TITLE" +else +POL_Call POL_Install_steam +cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" +POL_Wine "steam.exe" steam://install/304350 +POL_Wine_WaitBefore "$TITLE" +fi + +if ["$INSTALL_METHOD" == "STEAM"]; then +POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/304350" +else +POL_Shortcut "WLP2.exe" "$TITLE" "wlp2.ico" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2018-03-23 22:41) # Last revision : (2018-03-23 22:41) # Wine version used : 3.0 # Distribution used to test : Ubuntu 18.04 64bit # Author : LinuxScripter # Script licence : GPLv3 # Program licence : Proprietary [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Wildlife Park 2" PREFIX="WildlifePark2" EDITOR="B-Alive" AUTHOR="LinuxScripter" GAME_URL="www.wildlifepark2.com" WORKING_WINE_VERSION="3.0" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Function_SetResolution POL_Call POL_Install_quartz POL_Wine_OverrideDLL "" "winegstreamer" POL_SetupWindow_InstallMethod "CD,STEAM" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "wlp2.ico" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else POL_Call POL_Install_steam cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine "steam.exe" steam://install/304350 POL_Wine_WaitBefore "$TITLE" fi if ["$INSTALL_METHOD" == "STEAM"]; then POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/304350" else POL_Shortcut "WLP2.exe" "$TITLE" "wlp2.ico" POL_SetupWindow_Close exit 0 RéponsesVendredi 23 Mars 2018 à 23:11
|
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