Burning Cars

Informations

Créateur Messages
Fake Shemp Anonymous

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 7772
Wine: 1.7.26

Retours d'expérience

Description

Isometric 3D racing, 2014. Steam page.

He got close a few times, but never won the Trashpit Championship. As skilled behind the wheel as your father was, there was something missing. Maybe it was instinct, maybe ferocity, or the hummingbird beat reaction times that success on the track demands.

Code source

#!/bin/bash

# Date : (2014-09-23 20-11)
# Wine version used : 1.7.26
# Distribution used to test : Mint 17
# Author : Fake Shemp

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Burning Cars"
PREFIX="BurningCars"

# Latest working Wine version
WORKING_WINE_VERSION="1.7.26"
 
POL_SetupWindow_Init

# Starting debugging API
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "Polynetix Studio" "http://polynetix.com/" "Fake Shemp" "$PREFIX"

# Select installation file
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select your installation file.')" "$TITLE"
SETUP_EXE="$APP_ANSWER"

# Configure Wine
POL_System_SetArch "amd64"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
Set_OS "win7"

# Install dependencies
POL_Call POL_Install_physx
POL_Call POL_Install_dxfullsetup

# Install program
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"

# Create shortcut
POL_Shortcut "Burning Cars Launcher.exe" "$TITLE"

POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Fake Shemp Mardi 23 September 2014 à 22:41
Fake Shemp Anonymous

Information

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

Messages

Seems I missed the script. Here it is:

Differences

@@ -0,0 +1,48 @@
+#!/bin/bash
+
+# Date : (2014-09-23 20-11)
+# Wine version used : 1.7.26
+# Distribution used to test : Mint 17
+# Author : Fake Shemp
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Burning Cars"
+PREFIX="BurningCars"
+
+# Latest working Wine version
+WORKING_WINE_VERSION="1.7.26"
+ 
+POL_SetupWindow_Init
+
+# Starting debugging API
+POL_Debug_Init
+
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "Polynetix Studio" "http://polynetix.com/" "Fake Shemp" "$PREFIX"
+
+# Select installation file
+cd "$HOME"
+POL_SetupWindow_browse "$(eval_gettext 'Please select your installation file.')" "$TITLE"
+SETUP_EXE="$APP_ANSWER"
+
+# Configure Wine
+POL_System_SetArch "amd64"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
+Set_OS "win7"
+
+# Install dependencies
+POL_Call POL_Install_physx
+POL_Call POL_Install_dxfullsetup
+
+# Install program
+POL_Wine start /unix "$SETUP_EXE"
+POL_Wine_WaitExit "$TITLE"
+
+# Create shortcut
+POL_Shortcut "Burning Cars Launcher.exe" "$TITLE"
+
+POL_SetupWindow_Close
+exit
\ No newline at end of file

Nouveau code source

#!/bin/bash

# Date : (2014-09-23 20-11)
# Wine version used : 1.7.26
# Distribution used to test : Mint 17
# Author : Fake Shemp

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Burning Cars"
PREFIX="BurningCars"

# Latest working Wine version
WORKING_WINE_VERSION="1.7.26"
 
POL_SetupWindow_Init

# Starting debugging API
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "Polynetix Studio" "http://polynetix.com/" "Fake Shemp" "$PREFIX"

# Select installation file
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select your installation file.')" "$TITLE"
SETUP_EXE="$APP_ANSWER"

# Configure Wine
POL_System_SetArch "amd64"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
Set_OS "win7"

# Install dependencies
POL_Call POL_Install_physx
POL_Call POL_Install_dxfullsetup

# Install program
POL_Wine start /unix "$SETUP_EXE"
POL_Wine_WaitExit "$TITLE"

# Create shortcut
POL_Shortcut "Burning Cars Launcher.exe" "$TITLE"

POL_SetupWindow_Close
exit

Réponses