Slender: The Eight Pages

Informations

Créateur Messages
KoRnKloWn

Attention

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

Informations

Plate-formes :
Téléchargements : 19369
Wine: 4.0.1

Retours d'expérience

Description

Slender is a free indie spookfest based around the meme of the Slender Man. Released in 2012, and based on the Unreal 3D game engine.

Wikipedia pagePCgamingWiki page.

Captures d'écran

Miniature

Code source

#!/usr/bin/env playonlinux-bash
# Date : (2012-08-07)
# Last revision : (2019-05-21 06-57)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Author: Tory Gaurnier 
#
# Playonlinux version used : 4.3.4
#
# This game is a hex-based MMORTS.
# The 3D engine of this game is Unity ( https://appdb.winehq.org/objectManager.php?sClass=application&iId=11075 )
#
# Changelog:
# 2019 Dadu042: updates.
# 2012 Tory Gaurnier: first POL script.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Slender: The Eight Pages"
PREFIX="Slenderthe8pages"
  
# Starting the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Parsec Productions" "http://www.parsecproductions.com" "Tory Gaurnier" "$PREFIX"

POL_SetupWindow_message "$(eval_gettext 'If you have not already downloaded the game, you will need to. You should be able to find it via a web search engine, you will need the file 'Slender_v0_9_7.zip' for this script to complete.')" "$TITLE"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Create and setup wine prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "4.0.1"

Set_OS "win7"
 
# Install game
POL_SetupWindow_browse "$(eval_gettext 'Select downloaded ZIP file here')" "$TITLE"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting Slender...')" "$TITLE"
unzip -o "$APP_ANSWER" -d "$WINEPREFIX/drive_c/Program Files" || POL_Debug_Fatal "$(eval_gettext 'Sorry, but that was not a valid .zip file')"

POL_Shortcut "Slender - The Eight Pages.exe" "$TITLE" "" "Game;AdventureGame;"
POL_Shortcut_Document "$TITLE" "readme.txt"

POL_Call POL_Install_VideoDriver

POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Lundi 3 Février 2020 à 22:13
Dadu042

Information

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

Differences

@@ -29,6 +29,8 @@
 
 POL_SetupWindow_message "$(eval_gettext 'If you have not already downloaded the game, you will need to. You should be able to find it via a web search engine, you will need the file 'Slender_v0_9_7.zip' for this script to complete.')" "$TITLE"
 
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 # Setting prefix path
 POL_Wine_SelectPrefix "$PREFIX"
  

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2012-08-07)
# Last revision : (2019-05-21 06-57)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Author: Tory Gaurnier 
#
# Playonlinux version used : 4.3.4
#
# This game is a hex-based MMORTS.
# The 3D engine of this game is Unity ( https://appdb.winehq.org/objectManager.php?sClass=application&iId=11075 )
#
# Changelog:
# 2019 Dadu042: updates.
# 2012 Tory Gaurnier: first POL script.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Slender: The Eight Pages"
PREFIX="Slenderthe8pages"
  
# Starting the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Parsec Productions" "http://www.parsecproductions.com" "Tory Gaurnier" "$PREFIX"

POL_SetupWindow_message "$(eval_gettext 'If you have not already downloaded the game, you will need to. You should be able to find it via a web search engine, you will need the file 'Slender_v0_9_7.zip' for this script to complete.')" "$TITLE"

POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Create and setup wine prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "4.0.1"

Set_OS "win7"
 
# Install game
POL_SetupWindow_browse "$(eval_gettext 'Select downloaded ZIP file here')" "$TITLE"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting Slender...')" "$TITLE"
unzip -o "$APP_ANSWER" -d "$WINEPREFIX/drive_c/Program Files" || POL_Debug_Fatal "$(eval_gettext 'Sorry, but that was not a valid .zip file')"

POL_Shortcut "Slender - The Eight Pages.exe" "$TITLE" "" "Game;AdventureGame;"
POL_Shortcut_Document "$TITLE" "readme.txt"

POL_Call POL_Install_VideoDriver

POL_SetupWindow_Close
exit 0

Réponses

Dadu042 Mardi 21 Mai 2019 à 7:27
Dadu042

Warning

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

Messages

Little updates.

Differences

@@ -43,7 +43,7 @@
 POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting Slender...')" "$TITLE"
 unzip -o "$APP_ANSWER" -d "$WINEPREFIX/drive_c/Program Files" || POL_Debug_Fatal "$(eval_gettext 'Sorry, but that was not a valid .zip file')"
 
-POL_Shortcut "Slender - The Eight Pages.exe" "$TITLE"
+POL_Shortcut "Slender - The Eight Pages.exe" "$TITLE" "" "Game;AdventureGame;"
 POL_Shortcut_Document "$TITLE" "readme.txt"
 
 POL_Call POL_Install_VideoDriver

Nouveau code source

#!/usr/bin/env playonlinux-bash
# Date : (2012-08-07)
# Last revision : (2019-05-21 06-57)
# Wine version used : see below
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Author: Tory Gaurnier 
#
# Playonlinux version used : 4.3.4
#
# This game is a hex-based MMORTS.
# The 3D engine of this game is Unity ( https://appdb.winehq.org/objectManager.php?sClass=application&iId=11075 )
#
# Changelog:
# 2019 Dadu042: updates.
# 2012 Tory Gaurnier: first POL script.

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Slender: The Eight Pages"
PREFIX="Slenderthe8pages"
  
# Starting the script
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "Parsec Productions" "http://www.parsecproductions.com" "Tory Gaurnier" "$PREFIX"

POL_SetupWindow_message "$(eval_gettext 'If you have not already downloaded the game, you will need to. You should be able to find it via a web search engine, you will need the file 'Slender_v0_9_7.zip' for this script to complete.')" "$TITLE"

# Setting prefix path
POL_Wine_SelectPrefix "$PREFIX"
 
# Create and setup wine prefix
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "4.0.1"

Set_OS "win7"
 
# Install game
POL_SetupWindow_browse "$(eval_gettext 'Select downloaded ZIP file here')" "$TITLE"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting Slender...')" "$TITLE"
unzip -o "$APP_ANSWER" -d "$WINEPREFIX/drive_c/Program Files" || POL_Debug_Fatal "$(eval_gettext 'Sorry, but that was not a valid .zip file')"

POL_Shortcut "Slender - The Eight Pages.exe" "$TITLE" "" "Game;AdventureGame;"
POL_Shortcut_Document "$TITLE" "readme.txt"

POL_Call POL_Install_VideoDriver

POL_SetupWindow_Close
exit 0

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