GOG.com - Arma: Cold War Assault
Informations
Creator | Message |
---|---|
petch
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 0 DescriptionEnglish: Simulation of two military campaigns during the Cold War era...
Source code#!/bin/bash # Date : (2012-01-09 22-00) # Last revision : see changelog # Wine version used : 2.22 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2012-01-09 22-00) # Initial script. # [Pierre Etchemaite] (2013-10-30 19-57) # ? # [Dadu042] (2020-01-19 13:50) # Wine 1.4.1 -> 2.22 # Tested with install archives: # setup_arma_cold_war_assault.exe 444364681 "299f5cb319d023b502937a10fc21fc83" [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="arma_cold_war_assault" PREFIX="ColdWarAssault_gog" WORKING_WINE_VERSION="2.22" TITLE="GOG.com - Arma: Cold War Assault" SHORTCUT_NAME="Arma: Cold War Assault" POL_SetupWindow_Init POL_SetupWindow_SetID 1040 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bohemia Interactive Studio" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "0c4aceb672ef1a11b85853c2752e159b" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_SetupWindow_VMS "16" # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "ColdWarAssault.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;ActionGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Arma Cold War Assault/manual.pdf" # C:\GOG Games\Arma Cold War Assault\readme.txt POL_SetupWindow_Close cat <<_EOF_ > "$POL_USER_ROOT/configurations/configurators/$SHORTCUT_NAME" #!/bin/bash [ -z "\$PLAYONLINUX" ] && exit 0 source "\$PLAYONLINUX/lib/sources" export WINEPREFIX="\$POL_USER_ROOT/wineprefix/$PREFIX" export WINEDEBUG="" POL_LoadVar_PROGRAMFILES cd "$GOGROOT/Arma Cold War Assault/" || exit 1 POL_Wine ColdWarAssaultPreferences.exe exit 0 _EOF_ exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Monday 20 January 2020 at 22:47 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -1,13 +1,21 @@ #!/bin/bash # Date : (2012-01-09 22-00) -# Last revision : (2013-10-30 19-57) -# Wine version used : 1.4.1 +# Last revision : see changelog +# Wine version used : 2.22 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : - +# +# CHANGELOG +# [Pierre Etchemaite] (2012-01-09 22-00) +# Initial script. +# [Pierre Etchemaite] (2013-10-30 19-57) +# ? +# [Dadu042] (2020-01-19 13:50) +# Wine 1.4.1 -> 2.22 + # Tested with install archives: # setup_arma_cold_war_assault.exe 444364681 "299f5cb319d023b502937a10fc21fc83" @@ -16,7 +24,7 @@ GOGID="arma_cold_war_assault" PREFIX="ColdWarAssault_gog" -WORKING_WINE_VERSION="1.4.1" +WORKING_WINE_VERSION="2.22" TITLE="GOG.com - Arma: Cold War Assault" SHORTCUT_NAME="Arma: Cold War Assault" @@ -65,4 +73,4 @@ exit 0 _EOF_ -exit 0 +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2012-01-09 22-00) # Last revision : see changelog # Wine version used : 2.22 # Distribution used to test : Debian Sid (Unstable) # Author : Pierre Etchemaite pe-pol@concept-micro.com # Script licence : GPL v.2 # Program licence : Retail # Depend : # # CHANGELOG # [Pierre Etchemaite] (2012-01-09 22-00) # Initial script. # [Pierre Etchemaite] (2013-10-30 19-57) # ? # [Dadu042] (2020-01-19 13:50) # Wine 1.4.1 -> 2.22 # Tested with install archives: # setup_arma_cold_war_assault.exe 444364681 "299f5cb319d023b502937a10fc21fc83" [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" GOGID="arma_cold_war_assault" PREFIX="ColdWarAssault_gog" WORKING_WINE_VERSION="2.22" TITLE="GOG.com - Arma: Cold War Assault" SHORTCUT_NAME="Arma: Cold War Assault" POL_SetupWindow_Init POL_SetupWindow_SetID 1040 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Bohemia Interactive Studio" "http://www.gog.com/gamecard/$GOGID" "Pierre Etchemaite" "$PREFIX" POL_Call POL_GoG_setup "$GOGID" "0c4aceb672ef1a11b85853c2752e159b" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_GoG_install # GoG work! Set_OS winxp POL_SetupWindow_VMS "16" # Doesn't hurt ;) POL_Wine_reboot POL_Shortcut "ColdWarAssault.exe" "$SHORTCUT_NAME" "$SHORTCUT_NAME.png" "" "Game;ActionGame;" POL_Shortcut_Document "$SHORTCUT_NAME" "$GOGROOT/Arma Cold War Assault/manual.pdf" # C:\GOG Games\Arma Cold War Assault\readme.txt POL_SetupWindow_Close cat <<_EOF_ > "$POL_USER_ROOT/configurations/configurators/$SHORTCUT_NAME" #!/bin/bash [ -z "\$PLAYONLINUX" ] && exit 0 source "\$PLAYONLINUX/lib/sources" export WINEPREFIX="\$POL_USER_ROOT/wineprefix/$PREFIX" export WINEDEBUG="" POL_LoadVar_PROGRAMFILES cd "$GOGROOT/Arma Cold War Assault/" || exit 1 POL_Wine ColdWarAssaultPreferences.exe exit 0 _EOF_ exit 0 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