Tunneler

Informations

Creator Message
puk007 Anonymous

Warning

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

Informations

Platforms:
Downloads: 5730
Wine: System

Feedbacks

Description

Tunneler is a top-down perspective game (1992), made for DOS. Two tanks explore an underground realm, venturing from their protective bases to dig tunnels and find their opponent for battle. Wikipedia.

Screenshots

Miniature

Source code

#!/bin/bash
# Date : (2009-06-15 15-00)
# Last revision : (2009-06-15 15-00)
# Wine version used : N/A 
# Distribution used to test : N/A
# Author : NSLW
# Licence : Free
 
# CHANGELOG
# [NSLW] (2009-06-15 15-00)
#   #Translated from V2 to V3
# [Dadu042] (2019-06-03 12-37)
#   Fix download link (broken).

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
#Presentation
POL_SetupWindow_Init
POL_SetupWindow_presentation "Tunneler" "" "" "puk007 and NSLW" "Tunneler"
 
select_prefix "$REPERTOIRE/wineprefix/Tunneler/"
 
dosprefixcreate
 
cd $WINEPREFIX/drive_c/
 
POL_SetupWindow_download "Téléchargement du jeu" "Tunneler" "http://tunneler.org/files/tunneler.zip"
 
rm -rf Tunneler
unzip tunneler.zip
rm tunneler.zip
 
export $CDROM="none"
 
creer_lanceur_dos "Tunneler" "Tunneler/" "TUNNELER.COM" "" "Tunneler"

Contributions

Filters:

Contribute
Member Message
Dadu042 Monday 3 June 2019 at 16:48
Dadu042

Message

The function to download the game fail. Too old function, to update.

Replies

Dadu042 Monday 3 June 2019 at 12:38
Dadu042

Information

This update has been approved by the team.

Message

#   Fix download link (broken).

Differences

@@ -33,4 +33,4 @@
  
 export $CDROM="none"
  
-creer_lanceur_dos "Tunneler" "Tunneler/" "TUNNELER.EXE" "" "Tunneler"
+creer_lanceur_dos "Tunneler" "Tunneler/" "TUNNELER.COM" "" "Tunneler"

New source code

#!/bin/bash
# Date : (2009-06-15 15-00)
# Last revision : (2009-06-15 15-00)
# Wine version used : N/A 
# Distribution used to test : N/A
# Author : NSLW
# Licence : Free
 
# CHANGELOG
# [NSLW] (2009-06-15 15-00)
#   #Translated from V2 to V3
# [Dadu042] (2019-06-03 12-37)
#   Fix download link (broken).

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
#Presentation
POL_SetupWindow_Init
POL_SetupWindow_presentation "Tunneler" "" "" "puk007 and NSLW" "Tunneler"
 
select_prefix "$REPERTOIRE/wineprefix/Tunneler/"
 
dosprefixcreate
 
cd $WINEPREFIX/drive_c/
 
POL_SetupWindow_download "Téléchargement du jeu" "Tunneler" "http://tunneler.org/files/tunneler.zip"
 
rm -rf Tunneler
unzip tunneler.zip
rm tunneler.zip
 
export $CDROM="none"
 
creer_lanceur_dos "Tunneler" "Tunneler/" "TUNNELER.COM" "" "Tunneler"

Replies

Edited by Dadu042