Cacodemons Barbecue Party in Hell

Informations

Créateur Messages
twinoatl Anonymous

Information

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

Informations

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

Retours d'expérience

Description

You play as Mr. Cacodemon and you have to pluck and grill the kittens. Automatic download.

IndieDB.com - Kloonigames.com 2006.

Captures d'écran

Miniature

Code source

#!/bin/bash

# CHANFELOG
# Twinoatl (2009-12-02)
#   First script
# Dadu042 (2019-10-30)
#   Fix for POL 4.2.12
# Dadu042 (2020-02-07)
#  Fix POL_Shortcut categories.

#Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
 
source "$PLAYONLINUX/lib/sources"

Title="Cacodemons barbecue party in hell"
Prefix="Cacodemon"

POL_SetupWindow_Init 

#Presentation
POL_SetupWindow_presentation "$Title" "Kloonigames" "http://www.kloonigames.com/blog/games/cacodemon" "Twinoatl" "$Prefix"
 
#Préparation du prefix
select_prefix "$REPERTOIRE/wineprefix/$Prefix"
POL_SetupWindow_prefixcreate

Set_SoundDriver esd
 
cd "$REPERTOIRE/ressources"
POL_SetupWindow_download "Téléchargement du jeu..." "$Title" "http://www.kloonigames.com/download.php?file=cacodemon.zip" ""
POL_SetupWindow_download "Téléchargement de MSVCP60.dll" "$Title" "http://www.dllbank.com/zip/m/msvcp60.dll.zip" ""

# compatibilité avec le script de zoloom
mv download.php cacodemon.zip
 
cd "$WINEPREFIX/drive_c/"
unzip "$REPERTOIRE/ressources/cacodemon.zip"
 
cd "$WINEPREFIX/drive_c/cacodemon"
unzip "$REPERTOIRE/ressources/msvcp60.dll.zip"
 
# POL_SetupWindow_make_shortcut "$Prefix" "cacodemon" "cacodemon.exe" "" "$Title"
POL_Shortcut "cacodemon.exe" "Cacodemon" "" "" "Game;ActionGame;"

POL_SetupWindow_Close
exit

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Vendredi 7 Février 2020 à 8:11
Dadu042

Information

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

Differences

@@ -5,6 +5,8 @@
 #   First script
 # Dadu042 (2019-10-30)
 #   Fix for POL 4.2.12
+# Dadu042 (2020-02-07)
+#  Fix POL_Shortcut categories.
 
 #Vérifier que PlayOnLinux est bien exécuté avant
 [ "$PLAYONLINUX" = "" ] && exit 0 
@@ -39,7 +41,7 @@
 unzip "$REPERTOIRE/ressources/msvcp60.dll.zip"
  
 # POL_SetupWindow_make_shortcut "$Prefix" "cacodemon" "cacodemon.exe" "" "$Title"
-POL_Shortcut "cacodemon.exe" "Cacodemon" "" "Game;ActionGame;"
+POL_Shortcut "cacodemon.exe" "Cacodemon" "" "" "Game;ActionGame;"
 
 POL_SetupWindow_Close
 exit
\ No newline at end of file

Nouveau code source

#!/bin/bash

# CHANFELOG
# Twinoatl (2009-12-02)
#   First script
# Dadu042 (2019-10-30)
#   Fix for POL 4.2.12
# Dadu042 (2020-02-07)
#  Fix POL_Shortcut categories.

#Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
 
source "$PLAYONLINUX/lib/sources"

Title="Cacodemons barbecue party in hell"
Prefix="Cacodemon"

POL_SetupWindow_Init 

#Presentation
POL_SetupWindow_presentation "$Title" "Kloonigames" "http://www.kloonigames.com/blog/games/cacodemon" "Twinoatl" "$Prefix"
 
#Préparation du prefix
select_prefix "$REPERTOIRE/wineprefix/$Prefix"
POL_SetupWindow_prefixcreate

Set_SoundDriver esd
 
cd "$REPERTOIRE/ressources"
POL_SetupWindow_download "Téléchargement du jeu..." "$Title" "http://www.kloonigames.com/download.php?file=cacodemon.zip" ""
POL_SetupWindow_download "Téléchargement de MSVCP60.dll" "$Title" "http://www.dllbank.com/zip/m/msvcp60.dll.zip" ""

# compatibilité avec le script de zoloom
mv download.php cacodemon.zip
 
cd "$WINEPREFIX/drive_c/"
unzip "$REPERTOIRE/ressources/cacodemon.zip"
 
cd "$WINEPREFIX/drive_c/cacodemon"
unzip "$REPERTOIRE/ressources/msvcp60.dll.zip"
 
# POL_SetupWindow_make_shortcut "$Prefix" "cacodemon" "cacodemon.exe" "" "$Title"
POL_Shortcut "cacodemon.exe" "Cacodemon" "" "" "Game;ActionGame;"

POL_SetupWindow_Close
exit

Réponses

Dadu042 Mercredi 30 Octobre 2019 à 14:54
Dadu042

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -1,5 +1,10 @@
 #!/bin/bash
-# Last Revision : (2009-12-02)
+
+# CHANFELOG
+# Twinoatl (2009-12-02)
+#   First script
+# Dadu042 (2019-10-30)
+#   Fix for POL 4.2.12
 
 #Vérifier que PlayOnLinux est bien exécuté avant
 [ "$PLAYONLINUX" = "" ] && exit 0 
@@ -33,7 +38,8 @@
 cd "$WINEPREFIX/drive_c/cacodemon"
 unzip "$REPERTOIRE/ressources/msvcp60.dll.zip"
  
-POL_SetupWindow_make_shortcut "$Prefix" "cacodemon" "cacodemon.exe" "" "$Title"
+# POL_SetupWindow_make_shortcut "$Prefix" "cacodemon" "cacodemon.exe" "" "$Title"
+POL_Shortcut "cacodemon.exe" "Cacodemon" "" "Game;ActionGame;"
 
 POL_SetupWindow_Close
 exit
\ No newline at end of file

Nouveau code source

#!/bin/bash

# CHANFELOG
# Twinoatl (2009-12-02)
#   First script
# Dadu042 (2019-10-30)
#   Fix for POL 4.2.12

#Vérifier que PlayOnLinux est bien exécuté avant
[ "$PLAYONLINUX" = "" ] && exit 0 
 
source "$PLAYONLINUX/lib/sources"

Title="Cacodemons barbecue party in hell"
Prefix="Cacodemon"

POL_SetupWindow_Init 

#Presentation
POL_SetupWindow_presentation "$Title" "Kloonigames" "http://www.kloonigames.com/blog/games/cacodemon" "Twinoatl" "$Prefix"
 
#Préparation du prefix
select_prefix "$REPERTOIRE/wineprefix/$Prefix"
POL_SetupWindow_prefixcreate

Set_SoundDriver esd
 
cd "$REPERTOIRE/ressources"
POL_SetupWindow_download "Téléchargement du jeu..." "$Title" "http://www.kloonigames.com/download.php?file=cacodemon.zip" ""
POL_SetupWindow_download "Téléchargement de MSVCP60.dll" "$Title" "http://www.dllbank.com/zip/m/msvcp60.dll.zip" ""

# compatibilité avec le script de zoloom
mv download.php cacodemon.zip
 
cd "$WINEPREFIX/drive_c/"
unzip "$REPERTOIRE/ressources/cacodemon.zip"
 
cd "$WINEPREFIX/drive_c/cacodemon"
unzip "$REPERTOIRE/ressources/msvcp60.dll.zip"
 
# POL_SetupWindow_make_shortcut "$Prefix" "cacodemon" "cacodemon.exe" "" "$Title"
POL_Shortcut "cacodemon.exe" "Cacodemon" "" "Game;ActionGame;"

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