Railroad Pioneer

Informations

Creator Message
andykimpe Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 5555
Wine: 2.22

Feedbacks

Description

Strategy / business simulator, 2003: Be a pioneer and build the most famous transcontinental railroad tracks in the United States of America throughout the 19th century.
Steam's web page. PCGamingWiki.

Source code

#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe
#
#
# CHANGELOG:
# [andykimpe] (2015-12-23 20-00)
#   First script (Wine 1.4.1).
# [Dadu042] (2019-12-24)
#   Wine 2.0 -> 2.22
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="2.22"
 
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"

POL_RequiredVersion "4.0.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_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" = "CD" ]; then
    POL_SetupWindow_cdrom
    POL_SetupWindow_check_cdrom "Setup.exe"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$CDROM/Setup.exe"
    POL_Wine_WaitExit "$TITLE"
else
    cd "$HOME"
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
fi

POL_SetupWindow_VMS "256"
Set_Managed "Off"
 
POL_Shortcut "Railroad.exe" "$TITLE" "" "" "Game;"
 
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Message
Dadu042 Tuesday 24 December 2019 at 17:19
Dadu042

Information

This update has been approved by the team.

Differences

@@ -1,30 +1,37 @@
 #!/bin/bash
 # Date : (2015-12-23 20-00)
-# Last revision : (2015-12-23 20-00)
-# Wine version used : 1.4.1
+# Last revision : see changelog
+# Wine version used : 2.22
 # Distribution used to test : Fedora 23
 # PlayOnLinux: 4.2.9
 # Author : andykimpe
-
+#
+#
+# CHANGELOG:
+# [andykimpe] (2015-12-23 20-00)
+#   First script (Wine 1.4.1).
+# [Dadu042] (2019-12-24)
+#   Wine 2.0 -> 2.22
  
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
 TITLE="Railroad Pioneer"
 PREFIX="Railroad_Pioneer"
-WORKING_WINE_VERSION="2.0"
+WORKING_WINE_VERSION="2.22"
  
 # Start the script
 POL_SetupWindow_Init
 POL_Debug_Init
  
 POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
- 
+
+POL_RequiredVersion "4.0.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_SetupWindow_InstallMethod "LOCAL,CD"
  
@@ -45,8 +52,7 @@
 POL_SetupWindow_VMS "256"
 Set_Managed "Off"
  
-POL_Shortcut "Railroad.exe" "$TITLE"
+POL_Shortcut "Railroad.exe" "$TITLE" "" "" "Game;"
  
 POL_SetupWindow_Close
- 
 exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : see changelog
# Wine version used : 2.22
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe
#
#
# CHANGELOG:
# [andykimpe] (2015-12-23 20-00)
#   First script (Wine 1.4.1).
# [Dadu042] (2019-12-24)
#   Wine 2.0 -> 2.22
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="2.22"
 
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"

POL_RequiredVersion "4.0.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_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" = "CD" ]; then
    POL_SetupWindow_cdrom
    POL_SetupWindow_check_cdrom "Setup.exe"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$CDROM/Setup.exe"
    POL_Wine_WaitExit "$TITLE"
else
    cd "$HOME"
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
fi

POL_SetupWindow_VMS "256"
Set_Managed "Off"
 
POL_Shortcut "Railroad.exe" "$TITLE" "" "" "Game;"
 
POL_SetupWindow_Close
exit

Replies

andykimpe Thursday 2 March 2017 at 2:46
andykimpe Anonymous

Warning

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

Message

update wine version for 2.0 stable

Differences

@@ -12,7 +12,7 @@
  
 TITLE="Railroad Pioneer"
 PREFIX="Railroad_Pioneer"
-WORKING_WINE_VERSION="1.4.1"
+WORKING_WINE_VERSION="2.0"
  
 # Start the script
 POL_SetupWindow_Init

New source code

#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : (2015-12-23 20-00)
# Wine version used : 1.4.1
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe

 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="2.0"
 
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 

 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" = "CD" ]; then
    POL_SetupWindow_cdrom
    POL_SetupWindow_check_cdrom "Setup.exe"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$CDROM/Setup.exe"
    POL_Wine_WaitExit "$TITLE"
else
    cd "$HOME"
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
fi

POL_SetupWindow_VMS "256"
Set_Managed "Off"
 
POL_Shortcut "Railroad.exe" "$TITLE"
 
POL_SetupWindow_Close
 
exit

Replies

Anonymous
Thursday 2 March 2017 at 22:59
no cd available here http://www.gamecopyworld.eu/games/pc_railroad_pioneer.shtml#Railroad%20Pioneer%20v1.0%20[ENGLISH]%20No-CD/Fixed%20EXE
Tuesday 24 December 2019 at 17:16
Approved.
andykimpe Wednesday 23 December 2015 at 17:48
andykimpe Anonymous

Warning

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

Differences

@@ -0,0 +1,52 @@
+#!/bin/bash
+# Date : (2015-12-23 20-00)
+# Last revision : (2015-12-23 20-00)
+# Wine version used : 1.4.1
+# Distribution used to test : Fedora 23
+# PlayOnLinux: 4.2.9
+# Author : andykimpe
+
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="Railroad Pioneer"
+PREFIX="Railroad_Pioneer"
+WORKING_WINE_VERSION="1.4.1"
+ 
+# Start the script
+POL_SetupWindow_Init
+POL_Debug_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
+ 
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+ 
+
+ 
+POL_SetupWindow_InstallMethod "LOCAL,CD"
+ 
+if [ "$INSTALL_METHOD" = "CD" ]; then
+    POL_SetupWindow_cdrom
+    POL_SetupWindow_check_cdrom "Setup.exe"
+    POL_Wine_WaitBefore "$TITLE"
+    POL_Wine "$CDROM/Setup.exe"
+    POL_Wine_WaitExit "$TITLE"
+else
+    cd "$HOME"
+    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
+    POL_Wine_WaitBefore "$TITLE"
+    POL_Wine "$APP_ANSWER"
+    POL_Wine_WaitExit "$TITLE"
+fi
+
+POL_SetupWindow_VMS "256"
+Set_Managed "Off"
+ 
+POL_Shortcut "Railroad.exe" "$TITLE"
+ 
+POL_SetupWindow_Close
+ 
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2015-12-23 20-00)
# Last revision : (2015-12-23 20-00)
# Wine version used : 1.4.1
# Distribution used to test : Fedora 23
# PlayOnLinux: 4.2.9
# Author : andykimpe

 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Railroad Pioneer"
PREFIX="Railroad_Pioneer"
WORKING_WINE_VERSION="1.4.1"
 
# Start the script
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "JoWooD Entertainment." "https://wikipedia.org/wiki/JoWooD_Entertainment" "andykimpe" "$PREFIX"
 
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
 

 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
if [ "$INSTALL_METHOD" = "CD" ]; then
    POL_SetupWindow_cdrom
    POL_SetupWindow_check_cdrom "Setup.exe"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$CDROM/Setup.exe"
    POL_Wine_WaitExit "$TITLE"
else
    cd "$HOME"
    POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
    POL_Wine_WaitBefore "$TITLE"
    POL_Wine "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
fi

POL_SetupWindow_VMS "256"
Set_Managed "Off"
 
POL_Shortcut "Railroad.exe" "$TITLE"
 
POL_SetupWindow_Close
 
exit

Replies

Anonymous
Thursday 24 December 2015 at 0:46
Wine 1.8 is more recent and more likely to be installed by new scripts, so it might be a good idea to use it if it works. Just a suggestion.