Microsoft Fury 3 - Demo
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 1 DescriptionSpace ship fighter simulation, 1995. Wikipedia. This script does download the demo of the game. ScreenshotsSource code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # # CHANGELOG # [Quentin PÂRIS] (2009 ?) # Initial script. # [Dadu042] (2020-01-22 13:30) # Wine 1.4 -> 2.22 # Repair download link. # KNOWN ISSUES: # - Wine amd64-x86 3.0.3, 3.20: keyboard does not work. TITLE="Microsoft Fury 3 - Demo" #Presentation POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Tinou" "Fury3Demo" POL_Wine_SelectPrefix "Fury3Demo" POL_System_SetArch "x86" POL_Wine_PrefixCreate "2.22" cd "$WINEPREFIX/drive_c" # Dead link as of 2020-01-30 # POL_Download "ftp://ftp.microsoft.com/deskapps/games/public/Fury3/FURYDEMO.EXE" "7a52389925a7d305f57cc95d36e56382" POL_Download "https://archive.org/download/Fury3_1020/FURY3X.ZIP" POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE" POL_System_unzip "FURY3X.ZIP" -d "$WINEPREFIX/drive_c/game/" POL_Wine_OverrideDLL "" "iccvid" Set_Managed Off POL_Shortcut "FURY3X.EXE" "$TITLE" "" "" "Game;" POL_Shortcut_Document "$TITLE" "README.TXT" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Dadu042 | Friday 31 January 2020 at 0:05 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -11,7 +11,7 @@ # Repair download link. # KNOWN ISSUES: -# - Wine amd64-x86 3.0.3: keyboard does not work. +# - Wine amd64-x86 3.0.3, 3.20: keyboard does not work. TITLE="Microsoft Fury 3 - Demo" #Presentation New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # # CHANGELOG # [Quentin PÂRIS] (2009 ?) # Initial script. # [Dadu042] (2020-01-22 13:30) # Wine 1.4 -> 2.22 # Repair download link. # KNOWN ISSUES: # - Wine amd64-x86 3.0.3, 3.20: keyboard does not work. TITLE="Microsoft Fury 3 - Demo" #Presentation POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Tinou" "Fury3Demo" POL_Wine_SelectPrefix "Fury3Demo" POL_System_SetArch "x86" POL_Wine_PrefixCreate "2.22" cd "$WINEPREFIX/drive_c" # Dead link as of 2020-01-30 # POL_Download "ftp://ftp.microsoft.com/deskapps/games/public/Fury3/FURYDEMO.EXE" "7a52389925a7d305f57cc95d36e56382" POL_Download "https://archive.org/download/Fury3_1020/FURY3X.ZIP" POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE" POL_System_unzip "FURY3X.ZIP" -d "$WINEPREFIX/drive_c/game/" POL_Wine_OverrideDLL "" "iccvid" Set_Managed Off POL_Shortcut "FURY3X.EXE" "$TITLE" "" "" "Game;" POL_Shortcut_Document "$TITLE" "README.TXT" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Thursday 30 January 2020 at 23:59 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -2,26 +2,42 @@ [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" +# +# CHANGELOG +# [Quentin PÂRIS] (2009 ?) +# Initial script. +# [Dadu042] (2020-01-22 13:30) +# Wine 1.4 -> 2.22 +# Repair download link. + +# KNOWN ISSUES: +# - Wine amd64-x86 3.0.3: keyboard does not work. + TITLE="Microsoft Fury 3 - Demo" #Presentation POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Tinou" "Fury3Demo" - + POL_Wine_SelectPrefix "Fury3Demo" -POL_Wine_PrefixCreate "1.4" - +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "2.22" + cd "$WINEPREFIX/drive_c" -POL_Download "ftp://ftp.microsoft.com/deskapps/games/public/Fury3/FURYDEMO.EXE" "7a52389925a7d305f57cc95d36e56382" -unzip FURYDEMO.EXE -unzip FURYARC.EXE +# Dead link as of 2020-01-30 +# POL_Download "ftp://ftp.microsoft.com/deskapps/games/public/Fury3/FURYDEMO.EXE" "7a52389925a7d305f57cc95d36e56382" +POL_Download "https://archive.org/download/Fury3_1020/FURY3X.ZIP" +POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE" +POL_System_unzip "FURY3X.ZIP" -d "$WINEPREFIX/drive_c/game/" + POL_Wine_OverrideDLL "" "iccvid" - - + + Set_Managed Off -POL_Shortcut "FURY3X.EXE" "$TITLE" - +POL_Shortcut "FURY3X.EXE" "$TITLE" "" "" "Game;" +POL_Shortcut_Document "$TITLE" "README.TXT" + POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # # CHANGELOG # [Quentin PÂRIS] (2009 ?) # Initial script. # [Dadu042] (2020-01-22 13:30) # Wine 1.4 -> 2.22 # Repair download link. # KNOWN ISSUES: # - Wine amd64-x86 3.0.3: keyboard does not work. TITLE="Microsoft Fury 3 - Demo" #Presentation POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "Microsoft" "http://www.microsoft.com" "Tinou" "Fury3Demo" POL_Wine_SelectPrefix "Fury3Demo" POL_System_SetArch "x86" POL_Wine_PrefixCreate "2.22" cd "$WINEPREFIX/drive_c" # Dead link as of 2020-01-30 # POL_Download "ftp://ftp.microsoft.com/deskapps/games/public/Fury3/FURYDEMO.EXE" "7a52389925a7d305f57cc95d36e56382" POL_Download "https://archive.org/download/Fury3_1020/FURY3X.ZIP" POL_SetupWindow_wait_next_signal "$(eval_gettext 'Extracting the archive...')" "$TITLE" POL_System_unzip "FURY3X.ZIP" -d "$WINEPREFIX/drive_c/game/" POL_Wine_OverrideDLL "" "iccvid" Set_Managed Off POL_Shortcut "FURY3X.EXE" "$TITLE" "" "" "Game;" POL_Shortcut_Document "$TITLE" "README.TXT" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Thursday 30 May 2019 at 1:09 |
Dadu042
|
MessageThe download (ftp microsoft) link is dead. 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