Ruckingenur CE
Informations
Créateur | Messages |
---|---|
casept
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience1 0 DescriptionA game by zachtronics in which you reverse engineer electronic circuits. This version contains levels created by the community. Note: download automatically. Captures d'écranCode source#!/bin/bash # Date : (2017-04-18 09-31) # Last revision : (2019-05-23) # Wine version used : see below # Distribution used to test : XUbuntu 19.04 # Author : casept # PlayOnLinux : 4.5.4 # # CHANGELOG # [dadu042] (2019-05-23) # Make this software work again (under POL 4.5.4). Upgrade Wine 2.7 to 2.22 (on Wine 3.0, MIDI music fail). # [casept] (2017-04-19 12-20) # Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables. POL 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Ruckingenur CE" PREFIX="RuckingenurCE" WORKING_WINE_VERSION="2.22" GAME_URL="http://www.zachtronics.com/ruckingenur-ii/" PUBLISHER="Zachtronics" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "Casept" "RuckingenurCE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_System_SetArch "x86" POL_Call POL_Install_dotnet20 POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" POL_Wine_WaitExit "$TITLE" fi POL_System_TmpDelete POL_Shortcut "RuckingenurCE.exe" "$TITLE" "Game;LogicGame;" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Jeudi 23 Mai 2019 à 19:36 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesWork. Game seems hard, they recommend to play 'Ruckingenur II' first. Differences@@ -17,7 +17,7 @@ TITLE="Ruckingenur CE" PREFIX="RuckingenurCE" -WORKING_WINE_VERSION="3.0" +WORKING_WINE_VERSION="2.22" GAME_URL="http://www.zachtronics.com/ruckingenur-ii/" PUBLISHER="Zachtronics" Nouveau code source#!/bin/bash # Date : (2017-04-18 09-31) # Last revision : (2019-05-23) # Wine version used : see below # Distribution used to test : XUbuntu 19.04 # Author : casept # PlayOnLinux : 4.5.4 # # CHANGELOG # [dadu042] (2019-05-23) # Make this software work again (under POL 4.5.4). Upgrade Wine 2.7 to 2.22 (on Wine 3.0, MIDI music fail). # [casept] (2017-04-19 12-20) # Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables. POL 4.2.10 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Ruckingenur CE" PREFIX="RuckingenurCE" WORKING_WINE_VERSION="2.22" GAME_URL="http://www.zachtronics.com/ruckingenur-ii/" PUBLISHER="Zachtronics" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "Casept" "RuckingenurCE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_System_SetArch "x86" POL_Call POL_Install_dotnet20 POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" POL_Wine_WaitExit "$TITLE" fi POL_System_TmpDelete POL_Shortcut "RuckingenurCE.exe" "$TITLE" "Game;LogicGame;" POL_SetupWindow_Close exit 0 RéponsesEdité par Dadu042 |
casept | Mercredi 19 Avril 2017 à 12:27 |
casept
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesClean up and use more variables Differences@@ -0,0 +1,50 @@ +#!/bin/bash +# Date : (2017-04-18 09-31) +# Last revision : (2017-04-18 09-31) +# Wine version used : 2.6 +# Distribution used to test : Ubuntu 16.04 LTS +# Author : casept +# PlayOnLinux : playonlinux-4.2.10 + +#CHANGELOG +#[casept] (2017-04-19 12-20) +# Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Ruckingenur CE" +PREFIX="RuckingenurCE" +WORKING_WINE_VERSION="2.6" +GAME_URL="http://www.zachtronics.com/ruckingenur-ii/" +PUBLISHER="Zachtronics" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_System_SetArch "x86" + +POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "casept" "RuckingenurCE" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +POL_System_TmpCreate "$PREFIX" +POL_Call POL_Install_dotnet20 +POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" + POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" + POL_Wine start /unix "$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" + POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" + POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" + POL_Wine_WaitExit "$TITLE" +fi + +POL_System_TmpDelete +POL_Shortcut "Ruckingenur CE.lnk" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2017-04-18 09-31) # Last revision : (2017-04-18 09-31) # Wine version used : 2.6 # Distribution used to test : Ubuntu 16.04 LTS # Author : casept # PlayOnLinux : playonlinux-4.2.10 #CHANGELOG #[casept] (2017-04-19 12-20) # Clean up the script, add WORKING_WINE_VERSION, PUBLISHER and GAME_URL variables [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Ruckingenur CE" PREFIX="RuckingenurCE" WORKING_WINE_VERSION="2.6" GAME_URL="http://www.zachtronics.com/ruckingenur-ii/" PUBLISHER="Zachtronics" POL_SetupWindow_Init POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_presentation "$TITLE" "$PUBLISHER" "$GAME_URL" "casept" "RuckingenurCE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$PREFIX" POL_Call POL_Install_dotnet20 POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" POL_Wine_WaitExit "$TITLE" fi POL_System_TmpDelete POL_Shortcut "Ruckingenur CE.lnk" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
casept | Mercredi 19 Avril 2017 à 12:07 |
casept
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesBump wine version to 2.6 and do not allow the user to force kill the installer. Differences@@ -0,0 +1,41 @@ +#!/bin/bash +# Date : (2017-04-18 09-31) +# Last revision : (2017-04-18 09-31) +# Wine version used : 2.6 +# Distribution used to test : Ubuntu 16.04 LTS +# Author : casept +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Ruckingenur CE" +PREFIX="RuckingenurCE" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_System_SetArch "x86" + +POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "2.6" +POL_System_TmpCreate "$PREFIX" +POL_Call POL_Install_dotnet20 +POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" + POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" + POL_Wine start /unix "$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" + POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" + POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" + POL_Wine_WaitExit "$TITLE" +fi + +POL_System_TmpDelete +POL_Shortcut "Ruckingenur CE.lnk" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2017-04-18 09-31) # Last revision : (2017-04-18 09-31) # Wine version used : 2.6 # Distribution used to test : Ubuntu 16.04 LTS # Author : casept [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Ruckingenur CE" PREFIX="RuckingenurCE" POL_SetupWindow_Init POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.6" POL_System_TmpCreate "$PREFIX" POL_Call POL_Install_dotnet20 POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" POL_Wine_WaitExit "$TITLE" fi POL_System_TmpDelete POL_Shortcut "Ruckingenur CE.lnk" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
casept | Mercredi 19 Avril 2017 à 9:28 |
casept
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,41 @@ +#!/bin/bash +# Date : (2017-04-18 09-31) +# Last revision : (2017-04-18 09-31) +# Wine version used : 1.6.2 +# Distribution used to test : Ubuntu 16.04 LTS +# Author : casept +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Ruckingenur CE" +PREFIX="RuckingenurCE" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_System_SetArch "x86" + +POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "1.6.2" +POL_System_TmpCreate "$PREFIX" +POL_Call POL_Install_dotnet20 +POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" + POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" + POL_Wine start /unix "$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" + POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" + POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" + POL_Wine_WaitExit "$TITLE" --allow-kill +fi + +POL_System_TmpDelete +POL_Shortcut "Ruckingenur CE.lnk" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2017-04-18 09-31) # Last revision : (2017-04-18 09-31) # Wine version used : 1.6.2 # Distribution used to test : Ubuntu 16.04 LTS # Author : casept [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Ruckingenur CE" PREFIX="RuckingenurCE" POL_SetupWindow_Init POL_Debug_Init POL_System_SetArch "x86" POL_SetupWindow_presentation "$TITLE" "Zachtronics" "http://www.zachtronics.com/ruckingenur-ii/" "casept" "RuckingenurCE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.6.2" POL_System_TmpCreate "$PREFIX" POL_Call POL_Install_dotnet20 POL_SetupWindow_InstallMethod "LOCAL, DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "Please select the setup file to run." "$TITLE" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" POL_Download "http://www.zachtronics.com/images/ruckingenur-ce-installer.exe" "2419e668d80039f61dba73e4e9047e2c" POL_SetupWindow_wait "Please wait while $TITLE is installed." "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/ruckingenur-ce-installer.exe" POL_Wine_WaitExit "$TITLE" --allow-kill fi POL_System_TmpDelete POL_Shortcut "Ruckingenur CE.lnk" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 19 Avril 2017 à 9:34
|
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