Soldat
Informations
Creator | Message |
---|---|
twinoatl
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks3 2 Description2D multiplayer only shooter, released in 2012. Inspired by Worms. Editor website. Automatic download. ScreenshotsSource code#!/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:
ContributeMember | Message |
skozlov | Saturday 6 March 2021 at 20:17 |
skozlov
|
WarningThis update has not been approved yet by the team. MessagePlayed 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 New source code#!/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 RepliesEdited by skozlov |
Dadu042 | Friday 1 November 2019 at 9:07 |
Dadu042
|
InformationThis update has been approved by the team. MessageOk (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 New source code#!/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 Replies |
wizardofthewest | Friday 31 March 2017 at 0:39 |
wizardofthewest
|
WarningThis update has not been approved yet by the team. MessageUpdate 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 New source code#!/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 Replies |
j dub | Thursday 4 August 2016 at 12:37 |
j dub
|
MessageCan 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. Replies |
wizardofthewest | Wednesday 3 February 2016 at 6:23 |
wizardofthewest
|
WarningThis update has not been approved yet by the team. MessageUpdate 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 New source code#!/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 Replies |
wizardofthewest | Saturday 30 January 2016 at 5:24 |
wizardofthewest
|
WarningThis update has not been approved yet by the team. MessageUpdate 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 New source code#!/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 RepliesEdited by petch |
deri82 | Friday 10 July 2015 at 11:05 |
deri82
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesFriday 10 July 2015 at 11:10
|
testprova | Thursday 9 July 2015 at 22:10 |
testprova
|
WarningThis update has not been approved yet by the team. MessageChanged 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" New source code#!/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 RepliesThursday 9 July 2015 at 22:12
Thursday 9 July 2015 at 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