Vous êtes ici > Les forums > Vos créations > death rally (96) en

Les forums

death rally (96)

Nouveau  - Répondre
Auteur Posts
jojo Le Dimanche 22 Janvier 2012 à 20:02 - [Citer]
Membre

Membre
Voici un script simpliste pour jouer au vieux death rally. L'install est désormais dispo en freeware.
Le jeux se fini (en mode difficile) en quelque heure, mais ceux qui aime les jeux rétro de type arcade devrait pouvoir s'amuser avec.

#!/bin/bash
# Date : (2012-22-01 18-00)
# Last revision : (2012-22-01 18-00)
# Wine version used : 
# Distribution used to test : xubuntu 11.10
# Author : Jonathan Nifenecker
# Script licence : GPL v.2
# Program licence : freeware
# Depend : none

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

TITRE="Death Rally 1996 (free re-release)"
PREFIXE="DeathRally"
cd $REPERTOIRE/tmp/
POL_SetupWindow_Init
POL_SetupWindow_presentation "$TITRE" "Remedy" "http://www.remedygames.com/games/deathrally" "Crazyiop" "$PREFIXE"
cd $REPERTOIRE/tmp/
select_prefix "$REPERTOIRE/wineprefix/$PREFIXE"
POL_SetupWindow_prefixcreate

POL_System_TmpCreate "deathrallytemp"
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
 
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
	POL_SetupWindow_browse "Please, select the installation file." "Installing Death Rally"
	POL_SetupWindow_wait "Installation in progress." "Installation of Death Rally"
	POL_Wine start /unix "$APP_ANSWER"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://www.remedygames.com/files/DeathRallyWin_10.exe"
    POL_SetupWindow_wait "Installation in progress" "Installation of Death Rally"
    POL_Wine start /unix "$POL_System_TmpDir/DeathRallyWin_10.exe"
fi
 
POL_System_TmpDelete
 
sleep 0.1
POL_SetupWindow_set_text "Death Rally ..."
POL_SetupWindow_detect_exit
sleep 1
POL_SetupWindow_pulse 33
sleep 0.1

POL_SetupWindow_detect_exit
POL_SetupWindow_make_shortcut "$PREFIXE" "Program Files/Death Rally" "dr.exe" "" "$TITRE"
POL_SetupWindow_message "$TITRE has been installed successfully" "$TITRE"
POL_SetupWindow_Close 

exit
Il n'y a rien à voir ici