Farming Simulator 17

Informatie

Creator Bericht
Dadu042

Warning

This installer is a beta script. It means that it might not work as expected

Informatie

Platforms:
Downloads: 7224
Wine: 4.0.3

Feedbacks

Omschrijving

Game from the famous serie.

Broncode

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-05 18-22)
# Last revision : (2019-05-05 18-22)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
   
[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="Farming Simulator 17"
PREFIX="fs17"
WORKING_WINE_VERSION="4.0.3"
AUTHOR="Dadu042"
EDITOR="Giants"
GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"

 
POL_SetupWindow_Init
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
  
Set_OS "win7"

POL_Call POL_Install_d3dx11
  
###############
# Go          #
###############
    
POL_SetupWindow_InstallMethod "LOCAL,DVD"
    
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.inf"
        POL_Wine start /unix "$CDROM/Setup.exe"
        POL_Wine_WaitExit "Setup.exe"
        cd "$POL_System_TmpDir"
fi
    
POL_Shortcut "FarmingSimulator2017.exe" "$TITLE" ""
  
# Filename to change according the language
POL_Shortcut_Document "$TITLE" "FarmingSimulator2017_EN.pdf"

# Really indispensable ? (Dadu042)
POL_SetupWindow_VMS "1024"
 
POL_Call POL_Install_VideoDriver

POL_Call POL_Install_physx

################
# Patch update #
################
 
POL_SetupWindow_menu "$(eval_gettext 'Do want to install a official update file? (to download by yourself).')" "$TITLE" "$(eval_gettext 'Yes')~$(eval_gettext 'No')" "~"
  
if [ "$APP_ANSWER" == "$(eval_gettext 'Yes')" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the patch file to run')" "$TITLE"
        PATCH_EXE="$APP_ANSWER"
        POL_Wine start /unix "$PATCH_EXE"
        POL_Wine_WaitExit "$PATCH_EXE"
fi

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Bericht
Dadu042 Maandag 3 Februari 2020 om 21:26
Dadu042

Information

This update has been approved by the team.

Differences

@@ -13,7 +13,7 @@
     
 TITLE="Farming Simulator 17"
 PREFIX="fs17"
-WORKING_WINE_VERSION="4.0.1"
+WORKING_WINE_VERSION="4.0.3"
 AUTHOR="Dadu042"
 EDITOR="Giants"
 GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"
@@ -23,7 +23,9 @@
 POL_Debug_Init
     
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-    
+
+POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "amd64"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-05 18-22)
# Last revision : (2019-05-05 18-22)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
   
[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="Farming Simulator 17"
PREFIX="fs17"
WORKING_WINE_VERSION="4.0.3"
AUTHOR="Dadu042"
EDITOR="Giants"
GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"

 
POL_SetupWindow_Init
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
  
Set_OS "win7"

POL_Call POL_Install_d3dx11
  
###############
# Go          #
###############
    
POL_SetupWindow_InstallMethod "LOCAL,DVD"
    
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.inf"
        POL_Wine start /unix "$CDROM/Setup.exe"
        POL_Wine_WaitExit "Setup.exe"
        cd "$POL_System_TmpDir"
fi
    
POL_Shortcut "FarmingSimulator2017.exe" "$TITLE" ""
  
# Filename to change according the language
POL_Shortcut_Document "$TITLE" "FarmingSimulator2017_EN.pdf"

# Really indispensable ? (Dadu042)
POL_SetupWindow_VMS "1024"
 
POL_Call POL_Install_VideoDriver

POL_Call POL_Install_physx

################
# Patch update #
################
 
POL_SetupWindow_menu "$(eval_gettext 'Do want to install a official update file? (to download by yourself).')" "$TITLE" "$(eval_gettext 'Yes')~$(eval_gettext 'No')" "~"
  
if [ "$APP_ANSWER" == "$(eval_gettext 'Yes')" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the patch file to run')" "$TITLE"
        PATCH_EXE="$APP_ANSWER"
        POL_Wine start /unix "$PATCH_EXE"
        POL_Wine_WaitExit "$PATCH_EXE"
fi

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Antwoorden

Dadu042 Zondag 5 Mei 2019 om 19:50
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

Script v1.2

 

I played only 5 minutes.

Differences

@@ -13,7 +13,7 @@
     
 TITLE="Farming Simulator 17"
 PREFIX="fs17"
-WORKING_WINE_VERSION="4.1"
+WORKING_WINE_VERSION="4.0.1"
 AUTHOR="Dadu042"
 EDITOR="Giants"
 GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2019-05-05 18-22)
# Last revision : (2019-05-05 18-22)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4
   
[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="Farming Simulator 17"
PREFIX="fs17"
WORKING_WINE_VERSION="4.0.1"
AUTHOR="Dadu042"
EDITOR="Giants"
GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"

 
POL_SetupWindow_Init
POL_Debug_Init
    
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
    
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "amd64"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
  
Set_OS "win7"

POL_Call POL_Install_d3dx11
  
###############
# Go          #
###############
    
POL_SetupWindow_InstallMethod "LOCAL,DVD"
    
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        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"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "autorun.inf"
        POL_Wine start /unix "$CDROM/Setup.exe"
        POL_Wine_WaitExit "Setup.exe"
        cd "$POL_System_TmpDir"
fi
    
POL_Shortcut "FarmingSimulator2017.exe" "$TITLE" ""
  
# Filename to change according the language
POL_Shortcut_Document "$TITLE" "FarmingSimulator2017_EN.pdf"

# Really indispensable ? (Dadu042)
POL_SetupWindow_VMS "1024"
 
POL_Call POL_Install_VideoDriver

POL_Call POL_Install_physx

################
# Patch update #
################
 
POL_SetupWindow_menu "$(eval_gettext 'Do want to install a official update file? (to download by yourself).')" "$TITLE" "$(eval_gettext 'Yes')~$(eval_gettext 'No')" "~"
  
if [ "$APP_ANSWER" == "$(eval_gettext 'Yes')" ]; then
        POL_SetupWindow_browse "$(eval_gettext 'Please select the patch file to run')" "$TITLE"
        PATCH_EXE="$APP_ANSWER"
        POL_Wine start /unix "$PATCH_EXE"
        POL_Wine_WaitExit "$PATCH_EXE"
fi

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Antwoorden

Woensdag 29 Januari 2020 om 23:29
Forget to approve it.

Aangepast door Dadu042