Sudeki

Informations

Créateur Messages
ZeNity_

Attention

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

Informations

Plate-formes :
Téléchargements : 3110
Wine: 1.8.2

Retours d'expérience

Description

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...

Code source

#!/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:

Contribuer
Membre Messages
ZeNity_ Jeudi 23 Juin 2016 à 18:48
ZeNity_

Information

Cette mise à jour a été acceptée par l'équipe

Messages

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

Nouveau code source

#!/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

Réponses

ZeNity_ Lundi 2 Mai 2016 à 16:33
ZeNity_

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

#!/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

Réponses

ZeNity_ Lundi 2 Mai 2016 à 16:30
ZeNity_

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

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

Nouveau code source

#!/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

Réponses