El Foro

[Script] Heretic Kingdoms - The Inquisition (AKA Kult - Heretic Kingdoms)

Autor Respuestas
Dadu042 Friday 1 March 2019 at 12:21
Dadu042

Game does run, tested 50 minutes.

On very old GPU, such as Intel GMA 3100 - G31 Express chipset (2007) : game FPS is a lot faster after the 16 bits graphic mode is forced (to do in the game settings).

 

#!/bin/bash
# Date : (2019-03-01 12-11)
# Last revision : (2019-03-01 12-11)
# 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 : DVD v1.05 (version readable after game installation, on the main screen. setup.exe: september 2004.
 
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Heretic Kingdoms - The Inquisition (same as Kult - Heretic Kingdoms)"
PREFIX="heretic_kingdoms_inquisition_kult"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="Got Game"
GAME_URL="https://en.wikipedia.org/wiki/Kult:_Heretic_Kingdoms"
 
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 "winxp" "sp1"

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 "kult.ico"
        POL_Wine start /unix "$CDROM/setup.exe"
        POL_Wine_WaitExit "setup.exe"
        cd "$POL_System_TmpDir"
fi

POL_Call POL_Install_mfc42

POL_Shortcut "kult.exe" "$TITLE" ""
POL_Shortcut_Document "$TITLE" "readme.txt"

POL_System_TmpDelete
POL_SetupWindow_Close
exit 0    

# Note: the game let the resolution 1024x768 after exit. To fix...

 

Editado por: Dadu042

Dadu042 Saturday 20 April 2019 at 19:26
Dadu042

Script moved to "Supported software".