Forum

Arma 2 free

game

Författare Svar
lahtis Wednesday 23 October 2013 at 20:06
lahtis

Arma 2 free version installer code is a this.
You get a free version in game for http://www.arma2.com/free site. You got a free activation key for installer in login https://free.arma2.com/activation address.


#!/bin/bash
# Date : (2013-10-03)
# Last revision : (2013-10-06 16:34)
# Distribution used to test : Ubuntu 12.10
# Nvidia 9800 GT, 325.15 test drivers
# Author : lahtis
# Licence : GPLv3
# Installer for Arma 2 Free version
# PlayOnLinux: 4.2.1
# Flashes fixed with StrictDrawOrdering = enabled
 
[-z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Arma 2 Free"
PREFIX="Arma2Free"
WORKING_WINE_VERSION="1.7.0"
EDITOR="Bohemia Interactive"
GAME_URL="http://www.arma2.com/free"
AUTHOR="lahtis"
 
#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

POL_SetupWindow_Init
POL_Debug_Init
     
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "winxp"

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS

POL_SetupWindow_question "$(eval_gettext 'You want to open $TITLE download page in your browser?')" "$TITLE"
    if [ "$APP_ANSWER" = "TRUE" ]
    then
        POL_Browser "http://www.arma2.com/free"
    fi

cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select unzip setup file to run. Do not run the game when installer is finished. You got a free activation key for installer in login https://free.arma2.com/activation address.')" "$TITLE"
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"      

# Fix moire flashes in smoke and dirt
POL_Wine_Direct3D "StrictDrawOrdering" "enabled"
 
# Create Shortcuts
POL_Shortcut 'arma2free.exe' "$TITLE"
 
POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE"
         
POL_SetupWindow_Close
 
exit 0


icons, installer files and screenshots found a my http://ubuntuone.com/68ChjmCsPjln7aGc9gOMYU page.

Using Ubuntu 18.04.4 LTS and latest Playonlinux.
My scripts: https://github.com/lahtis/playonlinux
petch Wednesday 23 October 2013 at 21:05
petch

Hi lahtis,
There's nothing wrong in your script, so I'll just give possible improvements:
- The call to POL_SetupWindow_VMS seems a bit early, usually it's placed after installation, among tweaks and settings adjustments;
- You can shorten the browsing test as
[ "$APP_ANSWER" = "TRUE" ] && POL_Browser "http://www.arma2.com/free"

but it's a matter of taste, no hard rule about that
- One should never simultaneously need POL_SetupWindow_WaitBefore and POL_SetupWIndow_WaitExit (as I explained in http://www.playonlinux.com/en/topic-11130.html)
- Endind the script with a success message as been out of fashion since the addition of an integrated debugger in POL4 (since your message could be followed by a failure message and the possibility to send a bug report, something confusing when received after a success message ;) )
Cheers,
Pierre.
lahtis Friday 1 November 2013 at 12:34
lahtis

Updated script.


#!/bin/bash
# Date : (2013-10-03)
# Last revision : (2013-11-01 12:50)
# Distribution used to test : Ubuntu 12.10
# Nvidia 9800 GT, 325.15 test drivers
# Author : lahtis
# Licence : GPLv3
# Installer for Arma 2 Free version
# PlayOnLinux: 4.2.1
# Flashes fixed with StrictDrawOrdering = enabled

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Arma 2 Free"
PREFIX="Arma2Free"
WORKING_WINE_VERSION="1.7.0"
EDITOR="Bohemia Interactive"
GAME_URL="http://www.arma2.com/free"
AUTHOR="lahtis"

#Initialization
POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

POL_SetupWindow_Init
#POL_SetupWindow_SetID 12345 ##TODO
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Set_OS "winxp"

POL_SetupWindow_question "$(eval_gettext 'You want to open $TITLE download page in your browser?')" "$TITLE"
if [ "$APP_ANSWER" = "TRUE" ] && POL_Browser "http://www.arma2.com/free"


cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select unzipped setup file to run. Do not run the game when installer is finished. You got a free activation key for installer in login https://free.arma2.com/activation address.')" "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"

# Fix moire flashes in smoke and dirt
POL_Wine_Direct3D "StrictDrawOrdering" "enabled"

# Asking about memory size of graphic card
POL_SetupWindow_VMS $GAME_VMS
POL_Wine_reboot

# Create Shortcuts
POL_Shortcut 'arma2free.exe' "$TITLE"

POL_SetupWindow_Close

exit 0

Using Ubuntu 18.04.4 LTS and latest Playonlinux.
My scripts: https://github.com/lahtis/playonlinux