Farming Simulator 2013

Informations

Créateur Messages
Dadu042

Attention

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

Informations

Plate-formes :
Téléchargements : 9643
Wine: 4.0

Retours d'expérience

Description

From the famous serie.

About AZERTY keyboards (non QWERTY): even if in the menu "Commands" it seems possible to remap the keys, once the game is played the keyboard react again as a QWERTY keyboard (occurs with game v1.1 and v2.1).

Workaround for AZERTY French, to make the game playable :

  1. Aller dans le menu principal -> puis "Options" -> puis "Commandes".
  2. "Atteler" : taper "q".
  3. "Reculer" : taper "s".
  4. "Avancer" : taper "w".
  5. "Se déplacer à droite" : taper "d".
  6. "Se déplacer à gauche" : taper "a".
  7. Cliquer sur le bouton "Sauvegarder".

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-04-02 22-25)
# Last revision : (2019-04-02 22-25)
# Wine version used : 4.0
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4

# Used : DVD v1.1.0.0 french (version appear on the main menu, at bottom right).
# What does not work :
# - automatic update (this launch the web browser)
# - mods downloading ( " )
# - multiplayer
#
# Game see French's Azerty keyboard as a Qwerty, you will have to reasign some commands keys.
#
# Update tested : v2.1.0.2
#
# About mods: as of 2019-03, the mods are no longuer downloadable from the official website of the game,
# but some are hosted on third part websites.

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Farming Simulator 2013"
PREFIX="fs2013"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="Giants"
GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"
   
Set_OS "Win7"
 
POL_SetupWindow_Init
POL_Debug_Init

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

# Minimum version to have access to Wine 4.x
POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
###############
# 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 "data/d_39104.dat"
        POL_Wine start /unix "$CDROM/Setup.exe"
        POL_Wine_WaitExit "Setup.exe"
        cd "$POL_System_TmpDir"
fi
   
POL_Shortcut "FarmingSimulator2013.exe" "$TITLE" ""

# According your language you can change this filename 
POL_Shortcut_Document "$TITLE" "FarmingSimulator2013_EN.pdf"

POL_Call POL_Install_VideoDriver

# Required (Dadu042)
POL_SetupWindow_VMS "256"

# Seems useless for this game (at least for Wine 4.0)
# POL_Call POL_Install_d3dx9

POL_Call POL_Install_physx

################
# Patch update #
################

POL_SetupWindow_menu "$(eval_gettext 'Do want to install a official update file? (downloaded 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:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 21:42
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -38,6 +38,9 @@
 
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
+# Minimum version to have access to Wine 4.x
+POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-04-02 22-25)
# Last revision : (2019-04-02 22-25)
# Wine version used : 4.0
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4

# Used : DVD v1.1.0.0 french (version appear on the main menu, at bottom right).
# What does not work :
# - automatic update (this launch the web browser)
# - mods downloading ( " )
# - multiplayer
#
# Game see French's Azerty keyboard as a Qwerty, you will have to reasign some commands keys.
#
# Update tested : v2.1.0.2
#
# About mods: as of 2019-03, the mods are no longuer downloadable from the official website of the game,
# but some are hosted on third part websites.

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Farming Simulator 2013"
PREFIX="fs2013"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="Giants"
GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"
   
Set_OS "Win7"
 
POL_SetupWindow_Init
POL_Debug_Init

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

# Minimum version to have access to Wine 4.x
POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
###############
# 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 "data/d_39104.dat"
        POL_Wine start /unix "$CDROM/Setup.exe"
        POL_Wine_WaitExit "Setup.exe"
        cd "$POL_System_TmpDir"
fi
   
POL_Shortcut "FarmingSimulator2013.exe" "$TITLE" ""

# According your language you can change this filename 
POL_Shortcut_Document "$TITLE" "FarmingSimulator2013_EN.pdf"

POL_Call POL_Install_VideoDriver

# Required (Dadu042)
POL_SetupWindow_VMS "256"

# Seems useless for this game (at least for Wine 4.0)
# POL_Call POL_Install_d3dx9

POL_Call POL_Install_physx

################
# Patch update #
################

POL_SetupWindow_menu "$(eval_gettext 'Do want to install a official update file? (downloaded 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

Réponses

Dadu042 Mardi 2 Avril 2019 à 22:28
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

Script v1.

Differences

@@ -1,4 +1,3 @@
-#!/bin/bash
 #!/usr/bin/env playonlinux-bash
 # Date : (2019-04-02 22-25)
 # Last revision : (2019-04-02 22-25)
@@ -22,7 +21,7 @@
 # About mods: as of 2019-03, the mods are no longuer downloadable from the official website of the game,
 # but some are hosted on third part websites.
 
-[ -z "$PLAYONLINUX" ] && exit 0
+[ "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
    
 TITLE="Farming Simulator 2013"

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2019-04-02 22-25)
# Last revision : (2019-04-02 22-25)
# Wine version used : 4.0
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
#
# Playonlinux version used : 4.3.4

# Used : DVD v1.1.0.0 french (version appear on the main menu, at bottom right).
# What does not work :
# - automatic update (this launch the web browser)
# - mods downloading ( " )
# - multiplayer
#
# Game see French's Azerty keyboard as a Qwerty, you will have to reasign some commands keys.
#
# Update tested : v2.1.0.2
#
# About mods: as of 2019-03, the mods are no longuer downloadable from the official website of the game,
# but some are hosted on third part websites.

[ "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="Farming Simulator 2013"
PREFIX="fs2013"
WORKING_WINE_VERSION="4.0"
AUTHOR="Dadu042"
EDITOR="Giants"
GAME_URL="https://en.wikipedia.org/wiki/Farming_Simulator"
   
Set_OS "Win7"
 
POL_SetupWindow_Init
POL_Debug_Init

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

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
###############
# 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 "data/d_39104.dat"
        POL_Wine start /unix "$CDROM/Setup.exe"
        POL_Wine_WaitExit "Setup.exe"
        cd "$POL_System_TmpDir"
fi
   
POL_Shortcut "FarmingSimulator2013.exe" "$TITLE" ""

# According your language you can change this filename 
POL_Shortcut_Document "$TITLE" "FarmingSimulator2013_EN.pdf"

POL_Call POL_Install_VideoDriver

# Required (Dadu042)
POL_SetupWindow_VMS "256"

# Seems useless for this game (at least for Wine 4.0)
# POL_Call POL_Install_d3dx9

POL_Call POL_Install_physx

################
# Patch update #
################

POL_SetupWindow_menu "$(eval_gettext 'Do want to install a official update file? (downloaded 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

Réponses

Edité par Dadu042

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