18 Wheels of Steel: Across America
Informations
Creator | Message |
---|---|
odziom91
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks1 0 DescriptionTrucking simulator. Source code#!/bin/bash # # Date : (2014-07-06 11-48) # Last revision : (2016-08-01 22-55) # Wine version used : 1.9.15-staging # Distribution used to test : Manjaro Linux 16.06.1 x64 # Author : OdzioM # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" WORKING_WINE_VERSION="5.0" GAME_VMS="64" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "CD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" fi POL_SetupWindow_VMS $GAME_VMS POL_Shortcut "aa.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Sunday 10 May 2020 at 17:48 |
Dadu042
|
InformationThis update has been approved by the team. MessageAvoid disapointment to POL < v4.3 users Differences@@ -20,6 +20,8 @@ POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" +POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" @@ -43,7 +45,7 @@ POL_SetupWindow_VMS $GAME_VMS -POL_Shortcut "aa.exe" "$TITLE" "" "" +POL_Shortcut "aa.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" New source code#!/bin/bash # # Date : (2014-07-06 11-48) # Last revision : (2016-08-01 22-55) # Wine version used : 1.9.15-staging # Distribution used to test : Manjaro Linux 16.06.1 x64 # Author : OdzioM # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" WORKING_WINE_VERSION="5.0" GAME_VMS="64" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "CD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" fi POL_SetupWindow_VMS $GAME_VMS POL_Shortcut "aa.exe" "$TITLE" "" "" "Game;" POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" POL_SetupWindow_Close exit 0 Replies |
LinuxScripter | Sunday 10 May 2020 at 13:26 |
LinuxScripter
|
WarningThis update has not been approved yet by the team. MessageUsing latest stable wine version because the setup window will not display correctly on a old one. Differences@@ -12,7 +12,7 @@ TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" -WORKING_WINE_VERSION="1.9.15-staging" +WORKING_WINE_VERSION="5.0" GAME_VMS="64" POL_SetupWindow_Init New source code#!/bin/bash # # Date : (2014-07-06 11-48) # Last revision : (2016-08-01 22-55) # Wine version used : 1.9.15-staging # Distribution used to test : Manjaro Linux 16.06.1 x64 # Author : OdzioM # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" WORKING_WINE_VERSION="5.0" GAME_VMS="64" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "CD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" fi POL_SetupWindow_VMS $GAME_VMS POL_Shortcut "aa.exe" "$TITLE" "" "" POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" POL_SetupWindow_Close exit 0 RepliesSunday 10 May 2020 at 17:47
Edited by LinuxScripter |
Fersabat | Tuesday 6 September 2016 at 7:11 |
Fersabat
|
MessageI would like to know which program can I use in a Mac to run the game? RepliesMonday 3 June 2019 at 12:56
|
odziom91 | Monday 1 August 2016 at 23:00 |
odziom91
|
WarningThis update has not been approved yet by the team. MessageChange Log:
Differences@@ -1,9 +1,9 @@ #!/bin/bash # # Date : (2014-07-06 11-48) -# Last revision : (2014-07-06 11-28) -# Wine version used : 1.7.12 -# Distribution used to test : Linux Mint 17 "Qiana" x64 +# Last revision : (2016-08-01 22-55) +# Wine version used : 1.9.15-staging +# Distribution used to test : Manjaro Linux 16.06.1 x64 # Author : OdzioM # Licence : Retail @@ -12,7 +12,7 @@ TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" -WORKING_WINE_VERSION="1.7.12" +WORKING_WINE_VERSION="1.9.15-staging" GAME_VMS="64" POL_SetupWindow_Init New source code#!/bin/bash # # Date : (2014-07-06 11-48) # Last revision : (2016-08-01 22-55) # Wine version used : 1.9.15-staging # Distribution used to test : Manjaro Linux 16.06.1 x64 # Author : OdzioM # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" WORKING_WINE_VERSION="1.9.15-staging" GAME_VMS="64" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "CD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" fi POL_SetupWindow_VMS $GAME_VMS POL_Shortcut "aa.exe" "$TITLE" "" "" POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" POL_SetupWindow_Close exit 0 Replies |
odziom91 | Sunday 6 July 2014 at 11:51 |
odziom91
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,51 @@ +#!/bin/bash +# +# Date : (2014-07-06 11-48) +# Last revision : (2014-07-06 11-28) +# Wine version used : 1.7.12 +# Distribution used to test : Linux Mint 17 "Qiana" x64 +# Author : OdzioM +# Licence : Retail + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="18 Wheels of Steel: Across America" +PREFIX="18WOSAA" +WORKING_WINE_VERSION="1.7.12" +GAME_VMS="64" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" + +POL_System_SetArch "auto" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + +POL_SetupWindow_InstallMethod "CD,LOCAL" + +if [ "$INSTALL_METHOD" == "CD" ]; then + POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE" + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "setup.exe" + POL_Wine start /unix "$CDROM/setup.exe" + POL_Wine_WaitExit "$TITLE" +else + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" + POL_Wine start /unix "$SETUP_EXE" + POL_Wine_WaitExit "$TITLE" +fi + +POL_SetupWindow_VMS $GAME_VMS + +POL_Shortcut "aa.exe" "$TITLE" "" "" + +POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # # Date : (2014-07-06 11-48) # Last revision : (2014-07-06 11-28) # Wine version used : 1.7.12 # Distribution used to test : Linux Mint 17 "Qiana" x64 # Author : OdzioM # Licence : Retail [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="18 Wheels of Steel: Across America" PREFIX="18WOSAA" WORKING_WINE_VERSION="1.7.12" GAME_VMS="64" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "SCS Software" "http://www.scssoft.com/aa.php" "OdzioM" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "auto" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod "CD,LOCAL" if [ "$INSTALL_METHOD" == "CD" ]; then POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disc drive.')" "$TITLE" POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "setup.exe" POL_Wine start /unix "$CDROM/setup.exe" POL_Wine_WaitExit "$TITLE" else cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" fi POL_SetupWindow_VMS $GAME_VMS POL_Shortcut "aa.exe" "$TITLE" "" "" POL_SetupWindow_message "Installation complete!\n\nTo run $TITLE please select $TITLE icon from your desktop." "$TITLE" POL_SetupWindow_Close exit 0 RepliesThursday 25 February 2016 at 15:13
|
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