Pluto Strikes Back

Informations

Creator Message
twinoatl Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 9991
Wine: System

Feedbacks

Description

Action game. It is a kind of pinball with planets, dealing with gravity.
Wikipedia.

Screenshots

Miniature

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

Contributions

Filters:

Contribute
Member Message
Dadu042 Thursday 23 May 2019 at 20:30
Dadu042

Message

OK (Wine 4.6 staging). I played 2 minutes.

Replies

Quentin PÂRIS Sunday 8 June 2014 at 20:18
Quentin PÂRIS Anonymous

Information

This update has been approved by the team.

Message

The 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