Sudeki

Informatie

Creator Bericht
ZeNity_

Warning

This installer is a beta script. It means that it might not work as expected

Informatie

Platforms:
Downloads: 3110
Wine: 1.8.2

Feedbacks

Omschrijving

Four friends have joined together to aid their queen. Though destined to encounter ancient gods, primordial wonders, and marvellous inventions, foes and betrayal haunt their every step. A keen eye could prove vital, exposing essential clues. And as the companions make their way through darkness and light, they’ll discover that those two extremes have more in common than they once imagined...

Broncode

#!/bin/bash
# Date : (2016-05-02 16-33)
# Last revision : (2016-05-02 16-33)
# Wine version used : 1.8.2
# Distribution used to test : Arch Linux
# Author : ZeNity_
# Licence : GPLv3
 
[ "$PLAYONLINUX" == "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Sudeki"
PREFIX="Sudeki"
EDITOR="Climax Group"
EDITOR_URL="http://www.climaxstudios.com/menu"
AUTHOR="ZeNity_"
WINE_VERSION="1.8.2"
GAME_VMS="128"
STEAM_ID="233350"
 
# Open installation wizard window
POL_SetupWindow_Init
 
# Start debugging API
POL_Debug_Init
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"
 
# Prepare Wine prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"
 
# Choice of installation media
POL_SetupWindow_InstallMethod "DVD,STEAM"
 
# Install mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
fi
 
# Install the game
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Install from DVD
        POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup-1.bin"
        cd "$CDROM"
        POL_Wine "setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        # Install from Steam
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine "Steam.exe" "steam://install/$STEAM_ID"
        POL_Wine_WaitExit "$TITLE"
fi
 
# Ask for memory size of graphics card
POL_SetupWindow_VMS "$GAME_VMS"
 
# Create shortcut
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
else
        POL_Shortcut "Sudeki.exe" "$TITLE"
fi
 
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Bericht
ZeNity_ Donderdag 23 Juni\ 2016 om 18:48
ZeNity_

Information

This update has been approved by the team.

Bericht

Changelog:

* Fixed DVD install section

* Removed /start unix from POL_Wine calls

Differences

@@ -0,0 +1,71 @@
+#!/bin/bash
+# Date : (2016-05-02 16-33)
+# Last revision : (2016-05-02 16-33)
+# Wine version used : 1.8.2
+# Distribution used to test : Arch Linux
+# Author : ZeNity_
+# Licence : GPLv3
+ 
+[ "$PLAYONLINUX" == "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="Sudeki"
+PREFIX="Sudeki"
+EDITOR="Climax Group"
+EDITOR_URL="http://www.climaxstudios.com/menu"
+AUTHOR="ZeNity_"
+WINE_VERSION="1.8.2"
+GAME_VMS="128"
+STEAM_ID="233350"
+ 
+# Open installation wizard window
+POL_SetupWindow_Init
+ 
+# Start debugging API
+POL_Debug_Init
+ 
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"
+ 
+# Prepare Wine prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+ 
+# Choice of installation media
+POL_SetupWindow_InstallMethod "DVD,STEAM"
+ 
+# Install mandatory dependencies
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Call POL_Install_steam
+	POL_Call POL_Install_steam_flags "$STEAM_ID"
+fi
+ 
+# Install the game
+if [ "$INSTALL_METHOD" == "DVD" ]; then
+	# Install from DVD
+	POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
+	POL_SetupWindow_cdrom
+	POL_SetupWindow_check_cdrom "setup-1.bin"
+	cd "$CDROM"
+	POL_Wine "setup.exe"
+	POL_Wine_WaitExit "$TITLE"
+else
+	# Install from Steam
+	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+	POL_Wine "Steam.exe" "steam://install/$STEAM_ID"
+	POL_Wine_WaitExit "$TITLE"
+fi
+ 
+# Ask for memory size of graphics card
+POL_SetupWindow_VMS "$GAME_VMS"
+ 
+# Create shortcut
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
+else
+	POL_Shortcut "Sudeki.exe" "$TITLE"
+fi
+ 
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2016-05-02 16-33)
# Last revision : (2016-05-02 16-33)
# Wine version used : 1.8.2
# Distribution used to test : Arch Linux
# Author : ZeNity_
# Licence : GPLv3
 
[ "$PLAYONLINUX" == "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="Sudeki"
PREFIX="Sudeki"
EDITOR="Climax Group"
EDITOR_URL="http://www.climaxstudios.com/menu"
AUTHOR="ZeNity_"
WINE_VERSION="1.8.2"
GAME_VMS="128"
STEAM_ID="233350"
 
# Open installation wizard window
POL_SetupWindow_Init
 
# Start debugging API
POL_Debug_Init
 
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"
 
# Prepare Wine prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"
 
# Choice of installation media
POL_SetupWindow_InstallMethod "DVD,STEAM"
 
# Install mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
fi
 
# Install the game
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Install from DVD
        POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup-1.bin"
        cd "$CDROM"
        POL_Wine "setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        # Install from Steam
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine "Steam.exe" "steam://install/$STEAM_ID"
        POL_Wine_WaitExit "$TITLE"
fi
 
# Ask for memory size of graphics card
POL_SetupWindow_VMS "$GAME_VMS"
 
# Create shortcut
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
else
        POL_Shortcut "Sudeki.exe" "$TITLE"
fi
 
POL_SetupWindow_Close
exit

Antwoorden

ZeNity_ Maandag 2 Mei 2016 om 16:33
ZeNity_

Warning

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

Bericht

Oops, I forgot date and time ^^

Differences

@@ -0,0 +1,70 @@
+#!/bin/bash
+# Date : (2016-05-02 16-33)
+# Last revision : (2016-05-02 16-33)
+# Wine version used : 1.8.2
+# Distribution used to test : Arch Linux
+# Author : ZeNity_
+# Licence : GPLv3
+
+[ "$PLAYONLINUX" == "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Sudeki"
+PREFIX="Sudeki"
+EDITOR="Climax Group"
+EDITOR_URL="http://www.climaxstudios.com/menu"
+AUTHOR="ZeNity_"
+WINE_VERSION="1.8.2"
+STEAM_ID="233350"
+GAME_VMS="128"
+
+# Open installation wizard window
+POL_SetupWindow_Init
+
+# Start debugging API
+POL_Debug_Init
+
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"
+
+# Prepare Wine prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+
+# Choice of installation media
+POL_SetupWindow_InstallMethod "DVD,STEAM"
+
+# Install mandatory dependencies
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Call POL_Install_steam
+	POL_Call POL_Install_steam_flags "$STEAM_ID"
+fi
+
+# Install the game
+if [ "$INSTALL_METHOD" == "DVD" ]; then
+	# Install from DVD
+	POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
+	POL_SetupWindow_cdrom
+	POL_SetupWindow_check_cdrom "setup-1.bin"
+	POL_Wine start /unix "setup.exe"
+	POL_Wine_WaitExit "$TITLE"
+else
+	# Install from Steam
+	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+	POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
+	POL_Wine_WaitExit "$TITLE"
+fi
+
+# Ask for memory size of graphics card
+POL_SetupWindow_VMS $GAME_VMS
+
+# Create shortcut
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
+else
+	POL_Shortcut "Sudeki.exe" "$TITLE"
+fi
+
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (2016-05-02 16-33)
# Last revision : (2016-05-02 16-33)
# Wine version used : 1.8.2
# Distribution used to test : Arch Linux
# Author : ZeNity_
# Licence : GPLv3

[ "$PLAYONLINUX" == "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Sudeki"
PREFIX="Sudeki"
EDITOR="Climax Group"
EDITOR_URL="http://www.climaxstudios.com/menu"
AUTHOR="ZeNity_"
WINE_VERSION="1.8.2"
STEAM_ID="233350"
GAME_VMS="128"

# Open installation wizard window
POL_SetupWindow_Init

# Start debugging API
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"

# Prepare Wine prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Choice of installation media
POL_SetupWindow_InstallMethod "DVD,STEAM"

# Install mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
fi

# Install the game
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Install from DVD
        POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup-1.bin"
        POL_Wine start /unix "setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        # Install from Steam
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
        POL_Wine_WaitExit "$TITLE"
fi

# Ask for memory size of graphics card
POL_SetupWindow_VMS $GAME_VMS

# Create shortcut
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
else
        POL_Shortcut "Sudeki.exe" "$TITLE"
fi

POL_SetupWindow_Close
exit

Antwoorden

ZeNity_ Maandag 2 Mei 2016 om 16:30
ZeNity_

Warning

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

Differences

@@ -0,0 +1,70 @@
+#!/bin/bash
+# Date : (y-m-d h-m)
+# Last revision : (y-m-d h-m)
+# Wine version used : 1.8.2
+# Distribution used to test : Arch Linux
+# Author : ZeNity_
+# Licence : GPLv3
+
+[ "$PLAYONLINUX" == "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Sudeki"
+PREFIX="Sudeki"
+EDITOR="Climax Group"
+EDITOR_URL="http://www.climaxstudios.com/menu"
+AUTHOR="ZeNity_"
+WINE_VERSION="1.8.2"
+STEAM_ID="233350"
+GAME_VMS="128"
+
+# Open installation wizard window
+POL_SetupWindow_Init
+
+# Start debugging API
+POL_Debug_Init
+
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"
+
+# Prepare Wine prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_System_SetArch "x86"
+POL_Wine_PrefixCreate "$WINE_VERSION"
+
+# Choice of installation media
+POL_SetupWindow_InstallMethod "DVD,STEAM"
+
+# Install mandatory dependencies
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Call POL_Install_steam
+	POL_Call POL_Install_steam_flags "$STEAM_ID"
+fi
+
+# Install the game
+if [ "$INSTALL_METHOD" == "DVD" ]; then
+	# Install from DVD
+	POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
+	POL_SetupWindow_cdrom
+	POL_SetupWindow_check_cdrom "setup-1.bin"
+	POL_Wine start /unix "setup.exe"
+	POL_Wine_WaitExit "$TITLE"
+else
+	# Install from Steam
+	cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
+	POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
+	POL_Wine_WaitExit "$TITLE"
+fi
+
+# Ask for memory size of graphics card
+POL_SetupWindow_VMS $GAME_VMS
+
+# Create shortcut
+if [ "$INSTALL_METHOD" == "STEAM" ]; then
+	POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
+else
+	POL_Shortcut "Sudeki.exe" "$TITLE"
+fi
+
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
# Date : (y-m-d h-m)
# Last revision : (y-m-d h-m)
# Wine version used : 1.8.2
# Distribution used to test : Arch Linux
# Author : ZeNity_
# Licence : GPLv3

[ "$PLAYONLINUX" == "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="Sudeki"
PREFIX="Sudeki"
EDITOR="Climax Group"
EDITOR_URL="http://www.climaxstudios.com/menu"
AUTHOR="ZeNity_"
WINE_VERSION="1.8.2"
STEAM_ID="233350"
GAME_VMS="128"

# Open installation wizard window
POL_SetupWindow_Init

# Start debugging API
POL_Debug_Init

# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$EDITOR_URL" "$AUTHOR" "$PREFIX"

# Prepare Wine prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WINE_VERSION"

# Choice of installation media
POL_SetupWindow_InstallMethod "DVD,STEAM"

# Install mandatory dependencies
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Call POL_Install_steam
        POL_Call POL_Install_steam_flags "$STEAM_ID"
fi

# Install the game
if [ "$INSTALL_METHOD" == "DVD" ]; then
        # Install from DVD
        POL_SetupWindow_message "$(eval_gettext 'Please insert the game media into your disk drive.')" "$TITLE"
        POL_SetupWindow_cdrom
        POL_SetupWindow_check_cdrom "setup-1.bin"
        POL_Wine start /unix "setup.exe"
        POL_Wine_WaitExit "$TITLE"
else
        # Install from Steam
        cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam"
        POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID"
        POL_Wine_WaitExit "$TITLE"
fi

# Ask for memory size of graphics card
POL_SetupWindow_VMS $GAME_VMS

# Create shortcut
if [ "$INSTALL_METHOD" == "STEAM" ]; then
        POL_Shortcut "Steam.exe" "$TITLE" "" "steam://rungameid/$STEAM_ID"
else
        POL_Shortcut "Sudeki.exe" "$TITLE"
fi

POL_SetupWindow_Close
exit

Antwoorden