Du är här

V-Rally 3

Informations

Creator Meddelanden
Dadu042

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 4197
Wine: 3.0.3

Feedbacks

Description

Rally racing game, 2003.

Wikipedia.

Source code

#!/usr/bin/env playonlinux-bash
# Date : (2019-01-07 23-45)
# Last revision : (2019-01-20 19-56)
# Wine version used : 3.0.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="V-Rally 3"
PREFIX="v-rally3"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="Atari"
GAME_URL="https://en.wikipedia.org/wiki/V-Rally_3"

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"
 
# d3dx9_43

# POL_SetupWindow_InstallMethod "LOCAL,CD,STEAM"
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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"
        
elif [ "$INSTALL_METHOD" == "STEAM" ];then
# V Rally 3 on Steam: maybe one day ?  (2018)
# https://steamcommunity.com/app/658700/discussions/0/1698293703765955248/

        POL_Call POL_Install_steam
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine "steam.exe" steam://install/297920
        POL_Wine_WaitBefore "$TITLE"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "Vr3.ICO"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
 
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/297920"
else
        POL_Shortcut "VRally3.exe" "$TITLE" "" "Game;RacingGame;"
 
fi
 
# Disable intro videos in order to let the game menu appear (Wine 3.0.3)
mv "$WINEPREFIX/drive_c/Program Files/Atari/VRally3/Euro/Bnk/Video" "$WINEPREFIX/drive_c/Program Files/Atari/VRally3/Euro/Bnk/Video_disabled"
 
#
# Trick from :
# 'Game crashes after title screen' : Remove "Videos" folder from "Euro\Bnk" in game installation directory. They will not play, but they aren't essential.
# https://pcgamingwiki.com/wiki/V-Rally_3#Game_crashes_after_title_screen
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Meddelanden
Dadu042 Wednesday 17 April 2019 at 10:50
Dadu042

Information

This update has been approved by the team.

Meddelanden

Script v1.0

There is perhaps a way to display the videos, by installing the right old codec.

 

I used the European version, 2 CD-ROM (released in 2003).

  • All videos disabled (MPEG1 format) in order to let the game start.
  • Musics seems to not work.

Differences

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env playonlinux-bash
 # Date : (2019-01-07 23-45)
 # Last revision : (2019-01-20 19-56)
 # Wine version used : 3.0.3
@@ -7,113 +7,71 @@
 # Program licence : Retail
  
 [ -z "$PLAYONLINUX" ] && exit 0
- 
 source "$PLAYONLINUX/lib/sources"
  
- 
 TITLE="V-Rally 3"
- 
 PREFIX="v-rally3"
- 
 WORKING_WINE_VERSION="3.0.3"
- 
 AUTHOR="Dadu042"
- 
 EDITOR="Atari"
- 
 GAME_URL="https://en.wikipedia.org/wiki/V-Rally_3"
- 
- 
+
 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"
  
 # d3dx9_43
- 
+
 # POL_SetupWindow_InstallMethod "LOCAL,CD,STEAM"
  
 POL_SetupWindow_InstallMethod "LOCAL,CD"
  
 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"
- 
- 
+        
 elif [ "$INSTALL_METHOD" == "STEAM" ];then
- 
 # V Rally 3 on Steam: maybe one day ?  (2018)
- 
 # https://steamcommunity.com/app/658700/discussions/0/1698293703765955248/
- 
+
         POL_Call POL_Install_steam
- 
         cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
- 
         POL_Wine "steam.exe" steam://install/297920
- 
         POL_Wine_WaitBefore "$TITLE"
- 
 else
- 
         POL_SetupWindow_cdrom
- 
         POL_SetupWindow_check_cdrom "Vr3.ICO"
- 
         POL_Wine start /unix "$CDROM/setup.exe"
- 
         POL_Wine_WaitExit "setup.exe"
- 
         cd "$POL_System_TmpDir"
- 
 fi
  
  
 if [ "$INSTALL_METHOD" == "STEAM" ]; then
- 
         POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/297920"
- 
 else
- 
         POL_Shortcut "VRally3.exe" "$TITLE" "" "Game;RacingGame;"
  
 fi
  
 # Disable intro videos in order to let the game menu appear (Wine 3.0.3)
- 
 mv "$WINEPREFIX/drive_c/Program Files/Atari/VRally3/Euro/Bnk/Video" "$WINEPREFIX/drive_c/Program Files/Atari/VRally3/Euro/Bnk/Video_disabled"
  
 #
- 
 # Trick from :
- 
 # 'Game crashes after title screen' : Remove "Videos" folder from "Euro\Bnk" in game installation directory. They will not play, but they aren't essential.
- 
 # https://pcgamingwiki.com/wiki/V-Rally_3#Game_crashes_after_title_screen
  
 POL_System_TmpDelete
- 
 POL_SetupWindow_Close
- 
 exit 0
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2019-01-07 23-45)
# Last revision : (2019-01-20 19-56)
# Wine version used : 3.0.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="V-Rally 3"
PREFIX="v-rally3"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="Atari"
GAME_URL="https://en.wikipedia.org/wiki/V-Rally_3"

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"
 
# d3dx9_43

# POL_SetupWindow_InstallMethod "LOCAL,CD,STEAM"
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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"
        
elif [ "$INSTALL_METHOD" == "STEAM" ];then
# V Rally 3 on Steam: maybe one day ?  (2018)
# https://steamcommunity.com/app/658700/discussions/0/1698293703765955248/

        POL_Call POL_Install_steam
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine "steam.exe" steam://install/297920
        POL_Wine_WaitBefore "$TITLE"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "Vr3.ICO"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
 
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Shortcut "steam.exe" "$TITLE" "" "steam://rungameid/297920"
else
        POL_Shortcut "VRally3.exe" "$TITLE" "" "Game;RacingGame;"
 
fi
 
# Disable intro videos in order to let the game menu appear (Wine 3.0.3)
mv "$WINEPREFIX/drive_c/Program Files/Atari/VRally3/Euro/Bnk/Video" "$WINEPREFIX/drive_c/Program Files/Atari/VRally3/Euro/Bnk/Video_disabled"
 
#
# Trick from :
# 'Game crashes after title screen' : Remove "Videos" folder from "Euro\Bnk" in game installation directory. They will not play, but they aren't essential.
# https://pcgamingwiki.com/wiki/V-Rally_3#Game_crashes_after_title_screen
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Svar

Ändrat av 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