Alex Adventure
Informations
| Creator | Wiadmości |
|---|---|
|
Dadu042
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 0 DescriptionRetro exploration - platform game with little puzzle elements, 2007. Inspired by 'Super Mario Bros'. Note: this script can download this (freeware) game. Known issue: how to make the game window bigger ?. ScreenshotsSource code#!/usr/bin/env playonlinux-bash
# Date : (2019-05-30)
# Last revision : See changelog
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux version used : 4.3.4
#
# Software version used to write this script:
# Software based on: Multimedia Fusion (Clickteam).
#
# CHANGELOG
# [Dadu042] (2019-05-30 11-23)
# Initial writting.
# [Dadu042] (2020-01-02)
# Wine 4.0.1 -> 3.0.3 (for POL v4.2.x users)
# POL_Function_SetResolution seems useless.
#
# Known issues:
# - Window size is very small: game seems to not support resolutions over 320x200 pixels.
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Alex Adventure"
PREFIX="Alex_Adventure"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="Alexandre Szybiak"
GAME_URL="https://alexandreszybiak.itch.io/alexs-adventure"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
Set_OS "winxp"
# POL_Call POL_Install_d3dx9_43
# POL_Call POL_Install_d3dcompiler_43
# POL_Call POL_Install_d3dx10
# POL_Call POL_Install_d3dx11
# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
# POL_Call POL_Install_VideoDriver
#
# Asking about memory size of graphic card
# POL_SetupWindow_VMS $GAME_VMS
###############
# Go #
###############
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the ZIP game file')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
# POL_Wine "$SETUP_EXE"
# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
## POL_Wine start /unix "$SETUP_EXE"
## POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"
# TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
# mkdir -p "$TARGET_DIR"
# cd "$TARGET_DIR"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/alex/"
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
cd "$WINEPREFIX/drive_c"
POL_Download "http://tomvert.free.fr/Alex-Adventure.zip"
POL_System_unzip "Alex-Adventure.zip" -d "$WINEPREFIX/drive_c/alex/"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
# POL_Wine "$SETUP_EXE"
# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
fi
POL_Shortcut "alexsadventure.exe" "$TITLE" "" "" "Game;ActionGame;"
# POL_Shortcut_Document "$TITLE" "README.md"
# To avoid wrong screen resolutions (ie: on 1280x1024)
POL_Call POL_Function_SetResolution
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 |
Contributions
Filters:
Contribute| Member | Wiadmości |
| Dadu042 | Thursday 2 January 2020 at 13:00 |
|
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -13,86 +13,89 @@
# CHANGELOG
# [Dadu042] (2019-05-30 11-23)
# Initial writting.
+# [Dadu042] (2020-01-02)
+# Wine 4.0.1 -> 3.0.3 (for POL v4.2.x users)
+# POL_Function_SetResolution seems useless.
#
# Known issues:
-# - Window size is very small: game seems to not support resolutions over 320x200 pixels.
-
+# - Window size is very small: game seems to not support resolutions over 320x200 pixels.
+
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
-
+
TITLE="Alex Adventure"
PREFIX="Alex_Adventure"
-WORKING_WINE_VERSION="4.0.1"
+WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="Alexandre Szybiak"
GAME_URL="https://alexandreszybiak.itch.io/alexs-adventure"
-
+
POL_SetupWindow_Init
POL_Debug_Init
-
+
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-
-POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
-
+
+POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
+
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
-
+
Set_OS "winxp"
-
-# POL_Call POL_Install_d3dx9_43
+
+# POL_Call POL_Install_d3dx9_43
# POL_Call POL_Install_d3dcompiler_43
# POL_Call POL_Install_d3dx10
# POL_Call POL_Install_d3dx11
-
+
# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
# POL_Call POL_Install_VideoDriver
#
# Asking about memory size of graphic card
# POL_SetupWindow_VMS $GAME_VMS
-
+
###############
# Go #
###############
-
+
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
-
+
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the ZIP game file')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
- # POL_Wine "$SETUP_EXE"
- # POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
+ # POL_Wine "$SETUP_EXE"
+ # POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
## POL_Wine start /unix "$SETUP_EXE"
## POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"
-
+
# TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
# mkdir -p "$TARGET_DIR"
# cd "$TARGET_DIR"
-
+
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/alex/"
-
+
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
cd "$WINEPREFIX/drive_c"
POL_Download "http://tomvert.free.fr/Alex-Adventure.zip"
POL_System_unzip "Alex-Adventure.zip" -d "$WINEPREFIX/drive_c/alex/"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
-# POL_Wine "$SETUP_EXE"
-# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
-
+# POL_Wine "$SETUP_EXE"
+# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
+
fi
-
-POL_Shortcut "alexsadventure.exe" "$TITLE" "" "Game;ActionGame;"
-
-# POL_Shortcut_Document "$TITLE" "README.md"
-
-# To avoid wrong screen resolutions (ie: on 1280x1024)
+
+POL_Shortcut "alexsadventure.exe" "$TITLE" "" "" "Game;ActionGame;"
+
+# POL_Shortcut_Document "$TITLE" "README.md"
+
+# To avoid wrong screen resolutions (ie: on 1280x1024)
POL_Call POL_Function_SetResolution
-
-
+
+
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0
\ No newline at end of file
New source code#!/usr/bin/env playonlinux-bash
# Date : (2019-05-30)
# Last revision : See changelog
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux version used : 4.3.4
#
# Software version used to write this script:
# Software based on: Multimedia Fusion (Clickteam).
#
# CHANGELOG
# [Dadu042] (2019-05-30 11-23)
# Initial writting.
# [Dadu042] (2020-01-02)
# Wine 4.0.1 -> 3.0.3 (for POL v4.2.x users)
# POL_Function_SetResolution seems useless.
#
# Known issues:
# - Window size is very small: game seems to not support resolutions over 320x200 pixels.
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Alex Adventure"
PREFIX="Alex_Adventure"
WORKING_WINE_VERSION="3.0.3"
AUTHOR="Dadu042"
EDITOR="Alexandre Szybiak"
GAME_URL="https://alexandreszybiak.itch.io/alexs-adventure"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion 4.2.12 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
Set_OS "winxp"
# POL_Call POL_Install_d3dx9_43
# POL_Call POL_Install_d3dcompiler_43
# POL_Call POL_Install_d3dx10
# POL_Call POL_Install_d3dx11
# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
# POL_Call POL_Install_VideoDriver
#
# Asking about memory size of graphic card
# POL_SetupWindow_VMS $GAME_VMS
###############
# Go #
###############
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the ZIP game file')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
# POL_Wine "$SETUP_EXE"
# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
## POL_Wine start /unix "$SETUP_EXE"
## POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"
# TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
# mkdir -p "$TARGET_DIR"
# cd "$TARGET_DIR"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/alex/"
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
cd "$WINEPREFIX/drive_c"
POL_Download "http://tomvert.free.fr/Alex-Adventure.zip"
POL_System_unzip "Alex-Adventure.zip" -d "$WINEPREFIX/drive_c/alex/"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
# POL_Wine "$SETUP_EXE"
# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
fi
POL_Shortcut "alexsadventure.exe" "$TITLE" "" "" "Game;ActionGame;"
# POL_Shortcut_Document "$TITLE" "README.md"
# To avoid wrong screen resolutions (ie: on 1280x1024)
POL_Call POL_Function_SetResolution
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 Odpowiedzi |
| Dadu042 | Thursday 30 May 2019 at 11:51 |
|
Dadu042
|
WarningThis update has not been approved yet by the team. WiadmościI wonder how to make the game window bigger. Differences@@ -24,8 +24,8 @@
PREFIX="Alex_Adventure"
WORKING_WINE_VERSION="4.0.1"
AUTHOR="Dadu042"
-EDITOR="Tom ?"
-GAME_URL="http://tomvert.free.fr"
+EDITOR="Alexandre Szybiak"
+GAME_URL="https://alexandreszybiak.itch.io/alexs-adventure"
POL_SetupWindow_Init
POL_Debug_Init
New source code#!/usr/bin/env playonlinux-bash
# Date : (2019-05-30)
# Last revision : See changelog
# Wine version used : see below
# Distribution used to test : XUbuntu 19.04 x64
# Script licence : GPL3
# Program licence : Retail
# Playonlinux version used : 4.3.4
#
# Software version used to write this script:
# Software based on: Multimedia Fusion (Clickteam).
#
# CHANGELOG
# [Dadu042] (2019-05-30 11-23)
# Initial writting.
#
# Known issues:
# - Window size is very small: game seems to not support resolutions over 320x200 pixels.
[ -z "$PLAYONLINUX" ] && exit 0
source "$PLAYONLINUX/lib/sources"
TITLE="Alex Adventure"
PREFIX="Alex_Adventure"
WORKING_WINE_VERSION="4.0.1"
AUTHOR="Dadu042"
EDITOR="Alexandre Szybiak"
GAME_URL="https://alexandreszybiak.itch.io/alexs-adventure"
POL_SetupWindow_Init
POL_Debug_Init
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update."
POL_Wine_SelectPrefix "$PREFIX"
POL_System_SetArch "x86"
POL_Wine_PrefixCreate "$WORKING_WINE_VERSION"
POL_System_TmpCreate "$TITLE"
Set_OS "winxp"
# POL_Call POL_Install_d3dx9_43
# POL_Call POL_Install_d3dcompiler_43
# POL_Call POL_Install_d3dx10
# POL_Call POL_Install_d3dx11
# Useful when there is 2 GPU on the same computer (ie: Intel HD + Nvidia).
# POL_Call POL_Install_VideoDriver
#
# Asking about memory size of graphic card
# POL_SetupWindow_VMS $GAME_VMS
###############
# Go #
###############
POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL"
if [ "$INSTALL_METHOD" == "LOCAL" ]; then
cd "$HOME"
POL_SetupWindow_browse "$(eval_gettext 'Please select the ZIP game file')" "$TITLE"
SETUP_EXE="$APP_ANSWER"
# POL_Wine "$SETUP_EXE"
# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
## POL_Wine start /unix "$SETUP_EXE"
## POL_Wine_WaitExit "$TITLE"
cd "$POL_System_TmpDir"
# TARGET_DIR="$WINEPREFIX/drive_c/$PREFIX"
# mkdir -p "$TARGET_DIR"
# cd "$TARGET_DIR"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
POL_System_unzip "$APP_ANSWER" -d "$WINEPREFIX/drive_c/alex/"
elif [ "$INSTALL_METHOD" == "DOWNLOAD" ];then
cd "$WINEPREFIX/drive_c"
POL_Download "http://tomvert.free.fr/Alex-Adventure.zip"
POL_System_unzip "Alex-Adventure.zip" -d "$WINEPREFIX/drive_c/alex/"
POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE"
# POL_Wine "$SETUP_EXE"
# POL_SetupWindow_wait_next_signal "$(eval_gettext 'Installing...')" "$TITLE"
fi
POL_Shortcut "alexsadventure.exe" "$TITLE" "" "Game;ActionGame;"
# POL_Shortcut_Document "$TITLE" "README.md"
# To avoid wrong screen resolutions (ie: on 1280x1024)
POL_Call POL_Function_SetResolution
POL_System_TmpDelete
POL_SetupWindow_Close
exit 0 OdpowiedziEdytowane przez 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
Install this program 