Angry Birds Seasons
Informations
Creator | Message |
---|---|
Dadu042
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 0 Description2010. Wikipedia. Note: There were several CD-ROMs versions, with different installers filenames. If the installation from 'CD' does not recognize your CD-ROM, then use the installation from 'LOCAL'. ScreenshotsSource code#!/usr/bin/env playonlinux-bash # Date : (2019-03-11 14-00) # Last revision : (2019-03-11 14-00) # Wine version used : 3.0.3 # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Game installer v2.0.0 (2010) [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Angry Birds Seasons" PREFIX="angrybirds_s" WORKING_WINE_VERSION="3.0.3" AUTHOR="Dadu042" EDITOR="Rovio" GAME_URL="https://en.wikipedia.org/wiki/Angry_Birds_Seasons" 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 "amd64" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL,CD" 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 "ABS.ico" POL_Wine start /unix "$CDROM/AngryBirdsSeasonsInstaller_2.0.0.exe" # POL_Wine_WaitExit "AngryBirdsSeasons.exe" cd "$POL_System_TmpDir" fi POL_Shortcut "AngryBirdsSeasons.exe" "$TITLE" "" "" "Game;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
parsonsliam71 | Saturday 20 January 2024 at 22:12 |
parsonsliam71
|
Messagei like angry birds seasons cause it was my favorite game Replies |
Dadu042 | Tuesday 21 January 2020 at 18:15 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -0,0 +1,60 @@ +#!/usr/bin/env playonlinux-bash +# Date : (2019-03-11 14-00) +# Last revision : (2019-03-11 14-00) +# Wine version used : 3.0.3 +# Distribution used to test : Ubuntu 18.04 x64 +# Script licence : GPL3 +# Program licence : Retail +# +# Playonlinux version used : 4.3.4 +# +# Game installer v2.0.0 (2010) + +[ -z "$PLAYONLINUX" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Angry Birds Seasons" +PREFIX="angrybirds_s" +WORKING_WINE_VERSION="3.0.3" +AUTHOR="Dadu042" +EDITOR="Rovio" +GAME_URL="https://en.wikipedia.org/wiki/Angry_Birds_Seasons" + +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 "amd64" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +POL_System_TmpCreate "$TITLE" + +############### +# Go # +############### + +POL_SetupWindow_InstallMethod "LOCAL,CD" + +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 "ABS.ico" + POL_Wine start /unix "$CDROM/AngryBirdsSeasonsInstaller_2.0.0.exe" +# POL_Wine_WaitExit "AngryBirdsSeasons.exe" + cd "$POL_System_TmpDir" +fi + +POL_Shortcut "AngryBirdsSeasons.exe" "$TITLE" "" "" "Game;" + +POL_System_TmpDelete +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/usr/bin/env playonlinux-bash # Date : (2019-03-11 14-00) # Last revision : (2019-03-11 14-00) # Wine version used : 3.0.3 # Distribution used to test : Ubuntu 18.04 x64 # Script licence : GPL3 # Program licence : Retail # # Playonlinux version used : 4.3.4 # # Game installer v2.0.0 (2010) [ -z "$PLAYONLINUX" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Angry Birds Seasons" PREFIX="angrybirds_s" WORKING_WINE_VERSION="3.0.3" AUTHOR="Dadu042" EDITOR="Rovio" GAME_URL="https://en.wikipedia.org/wiki/Angry_Birds_Seasons" 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 "amd64" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_System_TmpCreate "$TITLE" ############### # Go # ############### POL_SetupWindow_InstallMethod "LOCAL,CD" 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 "ABS.ico" POL_Wine start /unix "$CDROM/AngryBirdsSeasonsInstaller_2.0.0.exe" # POL_Wine_WaitExit "AngryBirdsSeasons.exe" cd "$POL_System_TmpDir" fi POL_Shortcut "AngryBirdsSeasons.exe" "$TITLE" "" "" "Game;" POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
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