e-Sword
Informations
Creator | Message |
---|---|
teddyrux
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks2 0 Descriptione-Sword is free bible study software. It works with POL with no additional configuration.
Source code#!/usr/bin/env playonlinux-bash # Date : (2019-05-10 22-16) # Last revision : (2019-05-10 22-16) # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Software version used of the software to write this script: v11.2.2 (2019) [ "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="E-Sword" PREFIX="e-sword" WORKING_WINE_VERSION="6.0" AUTHOR="Dadu042" EDITOR="" GAME_URL="https://www.e-sword.net" Set_OS "win7" 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" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL" 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" fi POL_Shortcut "e-sword.exe" "$TITLE" "" POL_Shortcut_Document "$TITLE" "e-sword_guide.pdf" POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Thursday 17 March 2022 at 0:18 |
Dadu042
|
InformationThis update has been approved by the team. MessageWine 4.1 (outdated) -> 6.0. This will perhaps help. See also this alternative : https://www.codeweavers.com/compatibility/crossover/e-sword Differences@@ -15,7 +15,7 @@ TITLE="E-Sword" PREFIX="e-sword" -WORKING_WINE_VERSION="4.1" +WORKING_WINE_VERSION="6.0" AUTHOR="Dadu042" EDITOR="" GAME_URL="https://www.e-sword.net" New source code#!/usr/bin/env playonlinux-bash # Date : (2019-05-10 22-16) # Last revision : (2019-05-10 22-16) # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Software version used of the software to write this script: v11.2.2 (2019) [ "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="E-Sword" PREFIX="e-sword" WORKING_WINE_VERSION="6.0" AUTHOR="Dadu042" EDITOR="" GAME_URL="https://www.e-sword.net" Set_OS "win7" 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" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL" 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" fi POL_Shortcut "e-sword.exe" "$TITLE" "" POL_Shortcut_Document "$TITLE" "e-sword_guide.pdf" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
DJPETER | Wednesday 8 July 2020 at 3:33 |
DJPETER
|
MessageI got E-Sword to work close to 100%. My Specs: I followed the steps for GTA2 http://www.gamersonlinux.com/forum/threads/grand-theft-auto-2-guide.3090/ except I made the following changes…. 1. Used Wine version 5.7 2. Wine Configuration. 3. PlayOnLinux Packages (Components, DLLs, Libraries) Check the following: 5. Named the Virtual Drive and Shortcut as: Esword 7. To fix: 0010:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
I could not get the Fonts menu to work but after looking at the debug list, I was able to trace the problem to https://www.playonlinux.com/en/topic-8693-SC2_for_POL_on_Unbuntu_1204_fails.html and running sudo apt-get install libjpeg62:i386 fixes the Font Settings issue ]
RepliesEdited by DJPETER |
Dadu042 | Friday 10 May 2019 at 22:24 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageSeems to work well. Differences@@ -10,7 +10,7 @@ # # Software version used of the software to write this script: v11.2.2 (2019) -[ -z "$PLAYONLINUX" ] && exit 0 +[ "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="E-Sword" New source code#!/usr/bin/env playonlinux-bash # Date : (2019-05-10 22-16) # Last revision : (2019-05-10 22-16) # Wine version used : see below # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Software version used of the software to write this script: v11.2.2 (2019) [ "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="E-Sword" PREFIX="e-sword" WORKING_WINE_VERSION="4.1" AUTHOR="Dadu042" EDITOR="" GAME_URL="https://www.e-sword.net" Set_OS "win7" 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" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL" 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" fi POL_Shortcut "e-sword.exe" "$TITLE" "" POL_Shortcut_Document "$TITLE" "e-sword_guide.pdf" POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesSunday 12 September 2021 at 11:29
Sunday 12 September 2021 at 11:34
Wednesday 16 March 2022 at 18:51
Edited by 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