Evoland Legendary Edition

Informations

Creator Message
Dadu042

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 3148
Wine: 5.0.3

Feedbacks

Description

Action RPG game, top view. The design retraces the history of video games. Inspired by The Legend of Zelda, Diablo and Final Fantasy gameplay.

'Evoland Legendary Edition' is released in 2019. It contain Evoland '1' and Evoland 2.

Note about Evoland 1 : released in 2013 for Windows, the game received a Linux native version in 2015.

Screenshots

MiniatureMiniatureMiniature

Source code

#!/bin/bash
# Date : (2019-03-11 14-23)
# Last revision : (2019-03-11 14-23)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : Digital Download build.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Evoland Legendary Edition"
PREFIX="evoland_le"
WORKING_WINE_VERSION="5.0.3"
AUTHOR="Dadu042"
EDITOR="Shiro Games"
GAME_URL="https://en.wikipedia.org/wiki/Evoland"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

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

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

# Fix the error 'Runtime error 229 at XXXXXXX'
Set_OS winxp
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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 "setup-1.bin"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "Evoland.exe" "$TITLE" "" "" "game;"
 
# POL_Shortcut_Document "$TITLE" "manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribute
Member Message
Dadu042 Sunday 14 February 2021 at 9:26
Dadu042

Information

This update has been approved by the team.

Differences

@@ -14,7 +14,7 @@
  
 TITLE="Evoland Legendary Edition"
 PREFIX="evoland_le"
-WORKING_WINE_VERSION="4.3"
+WORKING_WINE_VERSION="5.0.3"
 AUTHOR="Dadu042"
 EDITOR="Shiro Games"
 GAME_URL="https://en.wikipedia.org/wiki/Evoland"

New source code

#!/bin/bash
# Date : (2019-03-11 14-23)
# Last revision : (2019-03-11 14-23)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : Digital Download build.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Evoland Legendary Edition"
PREFIX="evoland_le"
WORKING_WINE_VERSION="5.0.3"
AUTHOR="Dadu042"
EDITOR="Shiro Games"
GAME_URL="https://en.wikipedia.org/wiki/Evoland"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

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

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

# Fix the error 'Runtime error 229 at XXXXXXX'
Set_OS winxp
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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 "setup-1.bin"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "Evoland.exe" "$TITLE" "" "" "game;"
 
# POL_Shortcut_Document "$TITLE" "manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Sunday 14 February 2021 at 9:24
Dadu042

Warning

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

Differences

@@ -24,7 +24,7 @@
   
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
 
-POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
 
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
@@ -51,10 +51,10 @@
         cd "$POL_System_TmpDir"
 fi
  
-POL_Shortcut "Evoland.exe" "$TITLE" ""
+POL_Shortcut "Evoland.exe" "$TITLE" "" "" "game;"
  
 # POL_Shortcut_Document "$TITLE" "manual.pdf"
  
 POL_System_TmpDelete
 POL_SetupWindow_Close
-exit 0
+exit 0
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2019-03-11 14-23)
# Last revision : (2019-03-11 14-23)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : Digital Download build.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Evoland Legendary Edition"
PREFIX="evoland_le"
WORKING_WINE_VERSION="4.3"
AUTHOR="Dadu042"
EDITOR="Shiro Games"
GAME_URL="https://en.wikipedia.org/wiki/Evoland"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

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

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

# Fix the error 'Runtime error 229 at XXXXXXX'
Set_OS winxp
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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 "setup-1.bin"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "Evoland.exe" "$TITLE" "" "" "game;"
 
# POL_Shortcut_Document "$TITLE" "manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Edited by Dadu042

Dadu042 Monday 3 February 2020 at 21:59
Dadu042

Warning

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

Differences

@@ -23,7 +23,9 @@
 POL_Debug_Init
   
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
- 
+
+POL_RequiredVersion "4.3.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"

New source code

#!/bin/bash
# Date : (2019-03-11 14-23)
# Last revision : (2019-03-11 14-23)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : Digital Download build.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Evoland Legendary Edition"
PREFIX="evoland_le"
WORKING_WINE_VERSION="4.3"
AUTHOR="Dadu042"
EDITOR="Shiro Games"
GAME_URL="https://en.wikipedia.org/wiki/Evoland"

POL_SetupWindow_Init
POL_Debug_Init
  
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"

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

POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"

# Fix the error 'Runtime error 229 at XXXXXXX'
Set_OS winxp
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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 "setup-1.bin"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "Evoland.exe" "$TITLE" ""
 
# POL_Shortcut_Document "$TITLE" "manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Dadu042 Monday 27 May 2019 at 13:46
Dadu042

Warning

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

Message

Evoland 1: tested 99% of the game (until the last boss).
Evoland 2: tested 10 minutes.

 

This script may need DirectX improvements.

Differences

@@ -1,14 +1,14 @@
 #!/bin/bash
-# Date : (2019-03-07 11-30)
-# Last revision : (2019-03-10 14-23)
+# Date : (2019-03-11 14-23)
+# Last revision : (2019-03-11 14-23)
 # Wine version used : 4.3
 # Distribution used to test : Ubuntu 18.04 x64
 # Script licence : GPL3
 # Program licence : Retail
 # Playonlinux v4.3.4
 #
-# Tested : CD v1.01 french (version number appear on the main menu, bottom right), LockOn.exe: december 2003.
- 
+# Tested : Digital Download build.
+
 [ -z "$PLAYONLINUX" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
  
@@ -24,9 +24,6 @@
   
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
  
-# CD-ROM anti copy protection (Starforce) seems to work with Wine 4.3 (no window 'insert CD' before the main menu)
-# POL_Call POL_Function_NoCDWarning
-  
 POL_Wine_SelectPrefix "$PREFIX"
 POL_System_SetArch "x86"
 POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
@@ -34,8 +31,6 @@
 
 # Fix the error 'Runtime error 229 at XXXXXXX'
 Set_OS winxp
-
-# POL_SetupWindow_message "Note: please do not install 'UbiSoft game service' nor the 'DirectX 9' provided by the game." "$TITLE"
  
 POL_SetupWindow_InstallMethod "LOCAL,CD"
  
@@ -48,7 +43,7 @@
         cd "$POL_System_TmpDir"
 else
         POL_SetupWindow_cdrom
-        POL_SetupWindow_check_cdrom "setup-1.bin"
+#        POL_SetupWindow_check_cdrom "setup-1.bin"
         POL_Wine start /unix "$CDROM/setup.exe"
         POL_Wine_WaitExit "setup.exe"
         cd "$POL_System_TmpDir"
@@ -56,13 +51,7 @@
  
 POL_Shortcut "Evoland.exe" "$TITLE" ""
  
-# Link to the user guide (this file is installed with the patch v1.02)
-POL_Shortcut_Document "$TITLE" "manual.pdf"
- 
-# Fix error 'missing msvcirt.dll'
-# POL_Call POL_Install_vcrun6
- 
-# POL_Call POL_Install_d3dx9_43
+# POL_Shortcut_Document "$TITLE" "manual.pdf"
  
 POL_System_TmpDelete
 POL_SetupWindow_Close

New source code

#!/bin/bash
# Date : (2019-03-11 14-23)
# Last revision : (2019-03-11 14-23)
# Wine version used : 4.3
# Distribution used to test : Ubuntu 18.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux v4.3.4
#
# Tested : Digital Download build.

[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Evoland Legendary Edition"
PREFIX="evoland_le"
WORKING_WINE_VERSION="4.3"
AUTHOR="Dadu042"
EDITOR="Shiro Games"
GAME_URL="https://en.wikipedia.org/wiki/Evoland"

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"

# Fix the error 'Runtime error 229 at XXXXXXX'
Set_OS winxp
 
POL_SetupWindow_InstallMethod "LOCAL,CD"
 
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 "setup-1.bin"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi
 
POL_Shortcut "Evoland.exe" "$TITLE" ""
 
# POL_Shortcut_Document "$TITLE" "manual.pdf"
 
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0

Replies

Edited by Dadu042