Soldat
Informations
Créateur | Messages |
---|---|
twinoatl
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience3 2 Description2D multiplayer only shooter, released in 2012. Inspired by Worms. Editor website. Automatic download. Captures d'écranCode source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2019-11-01) # Wine version used : 4.0.0 # Distribution used to test : Ubuntu 19.04 amd64 # Author : yaps8 # CHANGELOG # [Dadu042] (2019-11-01) # Add shortcut to Config.exe # Fix website URL # # [wizardofthewest] (2017-03-30) # Update game version to 1.7.1 # # [wizardofthewest] (2016-02-02 11-42) # Update game version to 1.7.0 # # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" VERSION="171" MD5SUM="428c9fe24ff4c23bc3d1a40b9c4614ed" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "https://soldat.pl/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat$VERSION.zip" "$MD5SUM" unzip "soldat$VERSION.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/SoldatSetup.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "soldat.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut "Config.exe" "$TITLE - Config" "" "" "Game;ActionGame;" POL_System_TmpDelete POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
skozlov | Samedi 6 Mars 2021 à 20:17 |
skozlov
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesPlayed on the public server for several minutes on a mac, works fine. Started on Linux, tried controls - all OK Differences@@ -1,11 +1,16 @@ #!/bin/bash # Date : (2012-10-10 18-00) -# Last revision : (2019-11-01) +# Last revision : (2021-03-06) # Wine version used : 4.0.0 -# Distribution used to test : Ubuntu 19.04 amd64 +# Distribution used to test : Ubuntu 20.10 amd64 and macOS 11 # Author : yaps8 - + # CHANGELOG +# [skozlov] (2021-03-06) +# Add LOCAL installation method +# Fix website URL +# Update to 1.7.1.1 +# # [Dadu042] (2019-11-01) # Add shortcut to Config.exe # Fix website URL @@ -21,38 +26,45 @@ # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Soldat" PREFIX="Soldat" -VERSION="171" -MD5SUM="428c9fe24ff4c23bc3d1a40b9c4614ed" - +VERSION="1711" +MD5SUM="8ca59e47d0efcba7781034aa34d86eef" +INSTALL_ZIP="soldat$VERSION.zip" + POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "https://soldat.pl/" "yaps8" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate - + POL_System_TmpCreate "$PREFIX" - + cd "$POL_System_TmpDir" -POL_Download "http://static.soldat.pl/downloads/soldat$VERSION.zip" "$MD5SUM" -unzip "soldat$VERSION.zip" - +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then + POL_Download "https://static.soldat.pl/downloads/$INSTALL_ZIP" "$MD5SUM" +else + POL_SetupWindow_browse "Please select the $INSTALL_ZIP" "$TITLE" + cp "$APP_ANSWER" "$INSTALL_ZIP" +fi +unzip "$INSTALL_ZIP" + POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$POL_System_TmpDir/SoldatSetup.exe" +POL_Wine start /unix "$POL_System_TmpDir/soldat$VERSION.exe" POL_Wine_WaitExit "$TITLE" - + POL_Shortcut "soldat.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut "Config.exe" "$TITLE - Config" "" "" "Game;ActionGame;" - + POL_System_TmpDelete - + POL_SetupWindow_Close - + exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2021-03-06) # Wine version used : 4.0.0 # Distribution used to test : Ubuntu 20.10 amd64 and macOS 11 # Author : yaps8 # CHANGELOG # [skozlov] (2021-03-06) # Add LOCAL installation method # Fix website URL # Update to 1.7.1.1 # # [Dadu042] (2019-11-01) # Add shortcut to Config.exe # Fix website URL # # [wizardofthewest] (2017-03-30) # Update game version to 1.7.1 # # [wizardofthewest] (2016-02-02 11-42) # Update game version to 1.7.0 # # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" VERSION="1711" MD5SUM="8ca59e47d0efcba7781034aa34d86eef" INSTALL_ZIP="soldat$VERSION.zip" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "https://soldat.pl/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" == "DOWNLOAD" ]; then POL_Download "https://static.soldat.pl/downloads/$INSTALL_ZIP" "$MD5SUM" else POL_SetupWindow_browse "Please select the $INSTALL_ZIP" "$TITLE" cp "$APP_ANSWER" "$INSTALL_ZIP" fi unzip "$INSTALL_ZIP" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/soldat$VERSION.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "soldat.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut "Config.exe" "$TITLE - Config" "" "" "Game;ActionGame;" POL_System_TmpDelete POL_SetupWindow_Close exit RéponsesEdité par skozlov |
Dadu042 | Vendredi 1 Novembre 2019 à 9:07 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe MessagesOk (2 min). Game is set for LAN by default, fter setting to Internet, it seems to me that no one is still playing this game. Differences@@ -1,11 +1,15 @@ #!/bin/bash # Date : (2012-10-10 18-00) -# Last revision : (2017-03-30) -# Wine version used : 2.4 -# Distribution used to test : Arch Linux / Antergos x86x64 +# Last revision : (2019-11-01) +# Wine version used : 4.0.0 +# Distribution used to test : Ubuntu 19.04 amd64 # Author : yaps8 - + # CHANGELOG +# [Dadu042] (2019-11-01) +# Add shortcut to Config.exe +# Fix website URL +# # [wizardofthewest] (2017-03-30) # Update game version to 1.7.1 # @@ -17,37 +21,38 @@ # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Soldat" PREFIX="Soldat" VERSION="171" MD5SUM="428c9fe24ff4c23bc3d1a40b9c4614ed" - + POL_SetupWindow_Init POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" - + +POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "https://soldat.pl/" "yaps8" "$PREFIX" + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate - + POL_System_TmpCreate "$PREFIX" - + cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat$VERSION.zip" "$MD5SUM" unzip "soldat$VERSION.zip" - + POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/SoldatSetup.exe" POL_Wine_WaitExit "$TITLE" - -POL_Shortcut "soldat.exe" "$TITLE" - + +POL_Shortcut "soldat.exe" "$TITLE" "" "" "Game;ActionGame;" +POL_Shortcut "Config.exe" "$TITLE - Config" "" "" "Game;ActionGame;" + POL_System_TmpDelete - + POL_SetupWindow_Close - + exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2019-11-01) # Wine version used : 4.0.0 # Distribution used to test : Ubuntu 19.04 amd64 # Author : yaps8 # CHANGELOG # [Dadu042] (2019-11-01) # Add shortcut to Config.exe # Fix website URL # # [wizardofthewest] (2017-03-30) # Update game version to 1.7.1 # # [wizardofthewest] (2016-02-02 11-42) # Update game version to 1.7.0 # # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" VERSION="171" MD5SUM="428c9fe24ff4c23bc3d1a40b9c4614ed" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "https://soldat.pl/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat$VERSION.zip" "$MD5SUM" unzip "soldat$VERSION.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/SoldatSetup.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "soldat.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut "Config.exe" "$TITLE - Config" "" "" "Game;ActionGame;" POL_System_TmpDelete POL_SetupWindow_Close exit Réponses |
wizardofthewest | Vendredi 31 Mars 2017 à 0:39 |
wizardofthewest
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate game to 1.7.1 Differences@@ -1,11 +1,14 @@ #!/bin/bash # Date : (2012-10-10 18-00) -# Last revision : (2016-02-02 11-42) -# Wine version used : 1.9.2 +# Last revision : (2017-03-30) +# Wine version used : 2.4 # Distribution used to test : Arch Linux / Antergos x86x64 # Author : yaps8 - + # CHANGELOG +# [wizardofthewest] (2017-03-30) +# Update game version to 1.7.1 +# # [wizardofthewest] (2016-02-02 11-42) # Update game version to 1.7.0 # @@ -14,35 +17,37 @@ # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Soldat" PREFIX="Soldat" - +VERSION="171" +MD5SUM="428c9fe24ff4c23bc3d1a40b9c4614ed" + POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate - + POL_System_TmpCreate "$PREFIX" - + cd "$POL_System_TmpDir" -POL_Download "http://static.soldat.pl/downloads/soldat170.zip" "bf65e1c1f43da085afe747be93d2cdc4" -unzip "soldat170.zip" - +POL_Download "http://static.soldat.pl/downloads/soldat$VERSION.zip" "$MD5SUM" +unzip "soldat$VERSION.zip" + POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$POL_System_TmpDir/Soldat170.exe" +POL_Wine start /unix "$POL_System_TmpDir/SoldatSetup.exe" POL_Wine_WaitExit "$TITLE" - -POL_Shortcut "Soldat.exe" "$TITLE" - + +POL_Shortcut "soldat.exe" "$TITLE" + POL_System_TmpDelete - + POL_SetupWindow_Close - -exit + +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2017-03-30) # Wine version used : 2.4 # Distribution used to test : Arch Linux / Antergos x86x64 # Author : yaps8 # CHANGELOG # [wizardofthewest] (2017-03-30) # Update game version to 1.7.1 # # [wizardofthewest] (2016-02-02 11-42) # Update game version to 1.7.0 # # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" VERSION="171" MD5SUM="428c9fe24ff4c23bc3d1a40b9c4614ed" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat$VERSION.zip" "$MD5SUM" unzip "soldat$VERSION.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/SoldatSetup.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "soldat.exe" "$TITLE" POL_System_TmpDelete POL_SetupWindow_Close exit Réponses |
j dub | Jeudi 4 Aoüt 2016 à 12:37 |
j dub
|
MessagesCan start the program but the initial screen with the 'Profile' selection window appears initially and then disappears to a black screen after about 1 second... Why would this be? Are you able to help? Many thanks. If I select to play the intro it will play and then it will go into a black screen when escape is pressed. Réponses |
wizardofthewest | Mercredi 3 Février 2016 à 6:23 |
wizardofthewest
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate game version to 1.7.0 Differences@@ -1,11 +1,14 @@ #!/bin/bash # Date : (2012-10-10 18-00) -# Last revision : (2016-01-29 11-42) +# Last revision : (2016-02-02 11-42) # Wine version used : 1.9.2 # Distribution used to test : Arch Linux / Antergos x86x64 # Author : yaps8 # CHANGELOG +# [wizardofthewest] (2016-02-02 11-42) +# Update game version to 1.7.0 +# # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # @@ -29,11 +32,11 @@ POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "http://static.soldat.pl/downloads/soldat169.zip" "1046a29eb56fb933248c43daf7f82af3" -unzip "soldat169.zip" +POL_Download "http://static.soldat.pl/downloads/soldat170.zip" "bf65e1c1f43da085afe747be93d2cdc4" +unzip "soldat170.zip" POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$POL_System_TmpDir/Soldat169.exe" +POL_Wine start /unix "$POL_System_TmpDir/Soldat170.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "Soldat.exe" "$TITLE" @@ -42,4 +45,4 @@ POL_SetupWindow_Close -exit \ No newline at end of file +exit Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2016-02-02 11-42) # Wine version used : 1.9.2 # Distribution used to test : Arch Linux / Antergos x86x64 # Author : yaps8 # CHANGELOG # [wizardofthewest] (2016-02-02 11-42) # Update game version to 1.7.0 # # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat170.zip" "bf65e1c1f43da085afe747be93d2cdc4" unzip "soldat170.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/Soldat170.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "Soldat.exe" "$TITLE" POL_System_TmpDelete POL_SetupWindow_Close exit Réponses |
wizardofthewest | Samedi 30 Janvier 2016 à 5:24 |
wizardofthewest
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesUpdate game version to 1.6.9 Differences@@ -1,42 +1,45 @@ #!/bin/bash # Date : (2012-10-10 18-00) -# Last revision : (2013-07-24 11-42) -# Wine version used : 1.4.1 -# Distribution used to test : Ubuntu 12.04 LTS x86_64 +# Last revision : (2016-01-29 11-42) +# Wine version used : 1.9.2 +# Distribution used to test : Arch Linux / Antergos x86x64 # Author : yaps8 - + # CHANGELOG +# [wizardofthewest] (2016-01-29 11-42) +# Update game version to 1.6.9 +# # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Soldat" PREFIX="Soldat" - + POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate - + POL_System_TmpCreate "$PREFIX" - + cd "$POL_System_TmpDir" -POL_Download "http://static.soldat.pl/downloads/soldat168.zip" "e63a450f20b8d995ce711f8090b6c427" -unzip "soldat168.zip" - +POL_Download "http://static.soldat.pl/downloads/soldat169.zip" "1046a29eb56fb933248c43daf7f82af3" +unzip "soldat169.zip" + POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$POL_System_TmpDir/Soldat168.exe" +POL_Wine start /unix "$POL_System_TmpDir/Soldat169.exe" POL_Wine_WaitExit "$TITLE" - + POL_Shortcut "Soldat.exe" "$TITLE" - + POL_System_TmpDelete - + POL_SetupWindow_Close - + exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2016-01-29 11-42) # Wine version used : 1.9.2 # Distribution used to test : Arch Linux / Antergos x86x64 # Author : yaps8 # CHANGELOG # [wizardofthewest] (2016-01-29 11-42) # Update game version to 1.6.9 # # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat169.zip" "1046a29eb56fb933248c43daf7f82af3" unzip "soldat169.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/Soldat169.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "Soldat.exe" "$TITLE" POL_System_TmpDelete POL_SetupWindow_Close exit RéponsesEdité par petch |
deri82 | Vendredi 10 Juillet 2015 à 11:05 |
deri82
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -4,39 +4,39 @@ # Wine version used : 1.4.1 # Distribution used to test : Ubuntu 12.04 LTS x86_64 # Author : yaps8 - + # CHANGELOG # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Soldat" PREFIX="Soldat" - + POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate - + POL_System_TmpCreate "$PREFIX" - + cd "$POL_System_TmpDir" -POL_Download "http://static.soldat.pl/downloads/soldat163.zip" "e4a548483681924a48b9ae791840ce63" -unzip "soldat163.zip" - +POL_Download "http://static.soldat.pl/downloads/soldat168.zip" "e63a450f20b8d995ce711f8090b6c427" +unzip "soldat168.zip" + POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$POL_System_TmpDir/Soldat163.exe" +POL_Wine start /unix "$POL_System_TmpDir/Soldat168.exe" POL_Wine_WaitExit "$TITLE" - + POL_Shortcut "Soldat.exe" "$TITLE" - + POL_System_TmpDelete - + POL_SetupWindow_Close - + exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2013-07-24 11-42) # Wine version used : 1.4.1 # Distribution used to test : Ubuntu 12.04 LTS x86_64 # Author : yaps8 # CHANGELOG # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat168.zip" "e63a450f20b8d995ce711f8090b6c427" unzip "soldat168.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/Soldat168.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "Soldat.exe" "$TITLE" POL_System_TmpDelete POL_SetupWindow_Close exit RéponsesVendredi 10 Juillet 2015 à 11:10
|
testprova | Jeudi 9 Juillet 2015 à 22:10 |
testprova
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesChanged the 163s into 168 (168 is the latest version).
Differences@@ -26,11 +26,11 @@ POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" -POL_Download "http://static.soldat.pl/downloads/soldat163.zip" "e4a548483681924a48b9ae791840ce63" -unzip "soldat163.zip" +POL_Download "http://static.soldat.pl/downloads/soldat168.zip" "e4a548483681924a48b9ae791840ce63" +unzip "soldat168.zip" POL_Wine_WaitBefore "$TITLE" -POL_Wine start /unix "$POL_System_TmpDir/Soldat163.exe" +POL_Wine start /unix "$POL_System_TmpDir/Soldat168.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "Soldat.exe" "$TITLE" Nouveau code source#!/bin/bash # Date : (2012-10-10 18-00) # Last revision : (2013-07-24 11-42) # Wine version used : 1.4.1 # Distribution used to test : Ubuntu 12.04 LTS x86_64 # Author : yaps8 # CHANGELOG # [SuperPlumus] (2013-07-24 11-42) # Update gettext messages [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Soldat" PREFIX="Soldat" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Michal Marcinkowski" "http://soldat.thd.vg/en/" "yaps8" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://static.soldat.pl/downloads/soldat168.zip" "e4a548483681924a48b9ae791840ce63" unzip "soldat168.zip" POL_Wine_WaitBefore "$TITLE" POL_Wine start /unix "$POL_System_TmpDir/Soldat168.exe" POL_Wine_WaitExit "$TITLE" POL_Shortcut "Soldat.exe" "$TITLE" POL_System_TmpDelete POL_SetupWindow_Close exit RéponsesJeudi 9 Juillet 2015 à 22:12
Jeudi 9 Juillet 2015 à 22:33
|
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