Pluto Strikes Back
Informations
Creator | Message |
---|---|
twinoatl
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 0 DescriptionAction game. It is a kind of pinball with planets, dealing with gravity. ScreenshotsSource code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Pluto Strikes Back" #Presentation POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "Pluto Strikes Back" "Kloonigames" "http://www.kloonigames.com/blog/games/pluto/" "Twinoatl" "PlutoStrikesBack" POL_Wine_SelectPrefix "PlutoStrikesBack" POL_Wine_PrefixCreate cd $WINEPREFIX/drive_c || POL_SetupWindow_Fatal "Drive_c does not exist" POL_Download "http://www.kloonigames.com/download.php?file=pluto_r1.5.zip" mv "download.php?file=pluto_r1.5.zip" pluto_r1.5.zip POL_SetupWindow_Wait "Extracting the game and the libraries" "Extracting..." unzip pluto_r1.5.zip POL_Call POL_Install_vcrun6 POL_Shortcut "pluto.exe" "Pluto Strikes Back" POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Thursday 23 May 2019 at 20:30 |
Dadu042
|
MessageOK (Wine 4.6 staging). I played 2 minutes. Replies |
Quentin PÂRIS | Sunday 8 June 2014 at 20:18 |
Quentin PÂRIS
|
InformationThis update has been approved by the team. MessageThe file was not called download.php after the download. As a result, it broke the script. Here is the patch the fix the problem. Differences@@ -15,7 +15,7 @@ cd $WINEPREFIX/drive_c || POL_SetupWindow_Fatal "Drive_c does not exist" POL_Download "http://www.kloonigames.com/download.php?file=pluto_r1.5.zip" -mv download.php pluto_r1.5.zip +mv "download.php?file=pluto_r1.5.zip" pluto_r1.5.zip POL_SetupWindow_Wait "Extracting the game and the libraries" "Extracting..." unzip pluto_r1.5.zip New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Pluto Strikes Back" #Presentation POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "Pluto Strikes Back" "Kloonigames" "http://www.kloonigames.com/blog/games/pluto/" "Twinoatl" "PlutoStrikesBack" POL_Wine_SelectPrefix "PlutoStrikesBack" POL_Wine_PrefixCreate cd $WINEPREFIX/drive_c || POL_SetupWindow_Fatal "Drive_c does not exist" POL_Download "http://www.kloonigames.com/download.php?file=pluto_r1.5.zip" mv "download.php?file=pluto_r1.5.zip" pluto_r1.5.zip POL_SetupWindow_Wait "Extracting the game and the libraries" "Extracting..." unzip pluto_r1.5.zip POL_Call POL_Install_vcrun6 POL_Shortcut "pluto.exe" "Pluto Strikes Back" POL_SetupWindow_Close exit Replies |
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