Pluto Strikes Back
Informations
Créateur | Messages |
---|---|
twinoatl
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience1 0 DescriptionAction game. It is a kind of pinball with planets, dealing with gravity. Captures d'écranCode source#!/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:
ContribuerMembre | Messages |
Dadu042 | Jeudi 23 Mai 2019 à 20:30 |
Dadu042
|
MessagesOK (Wine 4.6 staging). I played 2 minutes. Réponses |
Quentin PÂRIS | Dimanche 8 Juin 2014 à 20:18 |
Quentin PÂRIS
|
InformationCette mise à jour a été acceptée par l'équipe MessagesThe 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 Nouveau code source#!/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 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