Slender: The Eight Pages

Informatie

Creator Bericht
KoRnKloWn

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 19403
Wine: 4.0.1

Feedbacks

Omschrijving

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.

Schermafdrukken

Miniature

Broncode

#!/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:

Contribute
Member Bericht
Dadu042 Maandag 3 Februari 2020 om 22:13
Dadu042

Information

This update has been approved by the team.

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"
  

New source code

#!/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

Antwoorden

Dadu042 Dinsdag 21 Mei 2019 om 7:27
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Bericht

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

New source code

#!/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

Antwoorden

Aangepast door 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