The forum

[Script] Eleusis

Author Replies
Dadu042 Wednesday 6 March 2019 at 10:22
Dadu042

Eleusis is a point and click game, released in 2011, and based on the Unreal Engine 3.

Gameplay tested for 5 minutes.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/bash
# Date : (2019-03-01 12-11)
# Last revision : (2019-03-05 10-19)
# Wine version used : 3.0.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux : 4.2.12
#
# Tested : retail DVD (not the 1st edition !) v1.3 (nothing special printed of the DVD),
#          'Eleusis_Setup_13.exe': september 17th 2013.
#
# Note: This game is based on "unreal engine 3".
#
# Known issues (2019-05-06 Dadu042) :
# - Localization : game language selected (when installing) always switch to english.
# - Game does launch (!) if I open Debug window of POL 4.2.12
# - .BIK videos does not load (however these seems mainly used for intro credits)
# - A picture of green orb / ball sits in the middle of screen during installation: Fixed if DotNet preinstalled.
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
  
TITLE="Eleusis"
PREFIX="eleusis"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="UIG"
GAME_URL="http://uieg.de"
  
POL_SetupWindow_Init
POL_Debug_Init
 
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
 
Set_OS "win7"
 
# Not sure if indispensable :
POL_Call POL_Install_vcrun2010
 
POL_Call POL_Install_d3dx9_43
 
POL_Call POL_Install_dotnet40
# The game install DotNet 3.5 (SP1) then it download DotNet 4.0, so the old one seems not indispensable :
# POL_Call POL_Install_dotnet35sp1
 
# Only for Nvidia Physx (not tested)
# POL_Call POL_Install_physx
 
###############
# Please note #
###############
 
POL_SetupWindow_message  "Please note: DO NOT ACCEPT TO INSTALL DotNet35SP1 when asked (Cancel it).\n" "$TITLE"
 
###############
# Install     #
###############
 
POL_SetupWindow_InstallMethod "LOCAL,DVD"
 
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
        cd "$HOME"
        POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE"
        SETUP_EXE="$APP_ANSWER"
        POL_Wine start /unix "$SETUP_EXE"
        POL_Wine_WaitExit "$TITLE"
        cd "$POL_System_TmpDir"
else
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "UIG GmbH Online.url"
        POL_Wine start /unix "$CDROM/Eleusis_Setup_13.exe"
        POL_Wine_WaitExit "Eleusis_Setup_13.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "UDK.exe" "$TITLE" ""
 
##############################################
# User guide                                 #
##############################################
 
# None found.
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Edited by Dadu042

Dadu042 Sunday 21 April 2019 at 1:00
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@playonlinux.com