Forbidden

Informations

Créateur Messages
twinoatl Anonymous

Information

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

Informations

Plate-formes :
Téléchargements : 10221
Wine: System

Retours d'expérience

Description

Experimental little game, 2009.

Note: This script does download the game automatically.

IndieDB. Official website.

Captures d'écran

Miniature

Code source

#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi
source "$PLAYONLINUX/lib/sources"
 
cfg_check
 
#Presentation
POL_SetupWindow_Init
POL_SetupWindow_presentation "Forbidden.exe (free)" "Kloonigames" "http://www.kloonigames.com/blog/games/forbidden_exe" "Twinoatl" "Forbidden"
 
mkdir -p $REPERTOIRE/wineprefix/Forbidden
 
TEMP="$HOME/.PlayOnLinux/tmp/Forbidden"
chmod 777 $TEMP -R
rm $TEMP -R
mkdir -p $TEMP
cd $REPERTOIRE/wineprefix/Forbidden
 
select_prefixe "$(pwd)"
POL_SetupWindow_prefixcreate 
Set_SoundDriver esd
cd $WINEPREFIX/dosdevices
rm ./*
ln -s ../drive_c c:
ln -s / z:
ln -s $TEMP d:
 
cd $TEMP
POL_SetupWindow_download "Téléchargement du jeu..." "Installation" "http://www.kloonigames.com/download.php?file=forbidden.zip"
POL_SetupWindow_download "Téléchargement de MSVCP60.dll" "Installation" "http://www.dllbank.com/zip/m/msvcp60.dll.zip"
mv download.php forbidden.zip # compatibilité avec le script de zoloom
 
mkdir -p $WINEPREFIX/drive_c/
cd $WINEPREFIX/drive_c/
 
unzip $TEMP/forbidden.zip
 
cd $WINEPREFIX/drive_c/forbidden
unzip "$TEMP/msvcp60.dll.zip"
 
chmod 777 $TEMP -R
rm $TEMP -R
cd $WINEPREFIX/dosdevices
rm ./d:
 
# POL_SetupWindow_make_shortcut "Forbidden" "forbidden" "forbidden.exe" "" "Forbidden.exe"
POL_Shortcut "forbidden.exe" "$TITLE" "" "Game;AdventureGame;"
POL_SetupWindow_message "Forbidden has been installed successfully" "Installation finished"
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Jeudi 23 Mai 2019 à 22:09
Dadu042

Information

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

Messages

Fix shortcut (POL 4.3.4).

Differences

@@ -4,21 +4,21 @@
 exit 0
 fi
 source "$PLAYONLINUX/lib/sources"
-
+ 
 cfg_check
-
+ 
 #Presentation
 POL_SetupWindow_Init
 POL_SetupWindow_presentation "Forbidden.exe (free)" "Kloonigames" "http://www.kloonigames.com/blog/games/forbidden_exe" "Twinoatl" "Forbidden"
-
+ 
 mkdir -p $REPERTOIRE/wineprefix/Forbidden
-
+ 
 TEMP="$HOME/.PlayOnLinux/tmp/Forbidden"
 chmod 777 $TEMP -R
 rm $TEMP -R
 mkdir -p $TEMP
 cd $REPERTOIRE/wineprefix/Forbidden
-
+ 
 select_prefixe "$(pwd)"
 POL_SetupWindow_prefixcreate 
 Set_SoundDriver esd
@@ -27,26 +27,27 @@
 ln -s ../drive_c c:
 ln -s / z:
 ln -s $TEMP d:
-
+ 
 cd $TEMP
 POL_SetupWindow_download "Téléchargement du jeu..." "Installation" "http://www.kloonigames.com/download.php?file=forbidden.zip"
 POL_SetupWindow_download "Téléchargement de MSVCP60.dll" "Installation" "http://www.dllbank.com/zip/m/msvcp60.dll.zip"
 mv download.php forbidden.zip # compatibilité avec le script de zoloom
-
+ 
 mkdir -p $WINEPREFIX/drive_c/
 cd $WINEPREFIX/drive_c/
-
+ 
 unzip $TEMP/forbidden.zip
-
+ 
 cd $WINEPREFIX/drive_c/forbidden
 unzip "$TEMP/msvcp60.dll.zip"
-
+ 
 chmod 777 $TEMP -R
 rm $TEMP -R
 cd $WINEPREFIX/dosdevices
 rm ./d:
-
-POL_SetupWindow_make_shortcut "Forbidden" "forbidden" "forbidden.exe" "" "Forbidden.exe"
+ 
+# POL_SetupWindow_make_shortcut "Forbidden" "forbidden" "forbidden.exe" "" "Forbidden.exe"
+POL_Shortcut "forbidden.exe" "$TITLE" "" "Game;AdventureGame;"
 POL_SetupWindow_message "Forbidden has been installed successfully" "Installation finished"
-POL_SetupWindow_Close 
+POL_SetupWindow_Close
 exit
\ No newline at end of file

Nouveau code source

#!/bin/bash
if [ "$PLAYONLINUX" = "" ]
then
exit 0
fi
source "$PLAYONLINUX/lib/sources"
 
cfg_check
 
#Presentation
POL_SetupWindow_Init
POL_SetupWindow_presentation "Forbidden.exe (free)" "Kloonigames" "http://www.kloonigames.com/blog/games/forbidden_exe" "Twinoatl" "Forbidden"
 
mkdir -p $REPERTOIRE/wineprefix/Forbidden
 
TEMP="$HOME/.PlayOnLinux/tmp/Forbidden"
chmod 777 $TEMP -R
rm $TEMP -R
mkdir -p $TEMP
cd $REPERTOIRE/wineprefix/Forbidden
 
select_prefixe "$(pwd)"
POL_SetupWindow_prefixcreate 
Set_SoundDriver esd
cd $WINEPREFIX/dosdevices
rm ./*
ln -s ../drive_c c:
ln -s / z:
ln -s $TEMP d:
 
cd $TEMP
POL_SetupWindow_download "Téléchargement du jeu..." "Installation" "http://www.kloonigames.com/download.php?file=forbidden.zip"
POL_SetupWindow_download "Téléchargement de MSVCP60.dll" "Installation" "http://www.dllbank.com/zip/m/msvcp60.dll.zip"
mv download.php forbidden.zip # compatibilité avec le script de zoloom
 
mkdir -p $WINEPREFIX/drive_c/
cd $WINEPREFIX/drive_c/
 
unzip $TEMP/forbidden.zip
 
cd $WINEPREFIX/drive_c/forbidden
unzip "$TEMP/msvcp60.dll.zip"
 
chmod 777 $TEMP -R
rm $TEMP -R
cd $WINEPREFIX/dosdevices
rm ./d:
 
# POL_SetupWindow_make_shortcut "Forbidden" "forbidden" "forbidden.exe" "" "Forbidden.exe"
POL_Shortcut "forbidden.exe" "$TITLE" "" "Game;AdventureGame;"
POL_SetupWindow_message "Forbidden has been installed successfully" "Installation finished"
POL_SetupWindow_Close
exit

Réponses

Edité par 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