Star Wars: Battlefront II (2005)
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks3 3 DescriptionFPS, 2005. Wikipedia. Appdb.winehq.org Known problem (2014 ?): Loading time of games can be very slow (~2-3 minutes), it's listed as Wine bug #29582. ScreenshotsSource code#!/bin/bash # CHANGELOG # [Quentin P] (2014 ?) # Initial writting. # [Dadu042] (2019-11-15 12-55) # Wine "1.5.10-battlefront" -> 2.22 # [Dadu042] (2019-11-15 13:23) # Add install from local # [Dadu042] (2019-11-16 22:20) # Wine 2.22 -> 3.0.3. I tested with GOG.com release v1.1 # [Dadu042] (2019-11-17 15:35) # Force winxp and x86 # Fix a log issue. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars - Battlefront II (2005)" PREFIX="StarWarsBattlefrontII2005" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts" "" "Tinou" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "3.0.3" POL_System_SetArch "x86" Set_OS "winxp" ################ # GPU # ################ # Asking about memory size of graphic card # POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver ################ # Fix for 'err:ole:CoGetClassObject class {ef985e71-d5c7-42d4-ba4d-2d073e2e96f4} not registered' POL_Call POL_Install_mdac28 POL_SetupWindow_InstallMethod "DVD,LOCAL" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" cd "$CDROM" POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" # "/SILENT" POL_Wine_WaitExit "$TITLE" fi POL_Shortcut "LaunchBFII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" # In the GOG release, filename is this one: POL_Shortcut "BattlefrontII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
mmtvnk | Friday 4 November 2022 at 23:37 |
mmtvnk
|
MessageDue to unavialability of MDAC_TYP.EXE via link: http://download.microsoft.com/download/4/a/a/4aafff19-9d21-4d35-ae81-02c48dcbbbff/MDAC_TYP.EXE I propose to download and install it manually, This file is avialable on WayBack Machine: https://web.archive.org/web/20050930211303/http://download.microsoft.com/download/4/a/a/4aafff19-9d21-4d35-ae81-02c48dcbbbff/MDAC_TYP.EXE Replies |
Lemurin | Saturday 19 March 2022 at 22:37 |
Lemurin
|
MessageCan't install "Error happened during download"
Was installing this game, it was smooth until this error occured. The link : http://download.microsoft.com/download/4/a/a/4aafff19-9d21-4d35-ae81-02c Do you want to retry?
I clicked "yes", and it comes back to this window. What can I do? I really want to play this childhood game of mine on mac. RepliesFriday 4 November 2022 at 23:39
|
JpCarqueija | Thursday 3 December 2020 at 0:25 |
JpCarqueija
|
MessagePERFECTLY SPLENDIT. RUNNED OUT OF THE BOX Replies |
Dadu042 | Sunday 17 November 2019 at 15:36 |
Dadu042
|
InformationThis update has been approved by the team. MessagePlayed 1h30. Differences@@ -9,7 +9,9 @@ # Add install from local # [Dadu042] (2019-11-16 22:20) # Wine 2.22 -> 3.0.3. I tested with GOG.com release v1.1 - +# [Dadu042] (2019-11-17 15:35) +# Force winxp and x86 +# Fix a log issue. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -25,6 +27,8 @@ POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "3.0.3" +POL_System_SetArch "x86" +Set_OS "winxp" ################ # GPU # @@ -36,6 +40,10 @@ # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver +################ + +# Fix for 'err:ole:CoGetClassObject class {ef985e71-d5c7-42d4-ba4d-2d073e2e96f4} not registered' +POL_Call POL_Install_mdac28 POL_SetupWindow_InstallMethod "DVD,LOCAL" New source code#!/bin/bash # CHANGELOG # [Quentin P] (2014 ?) # Initial writting. # [Dadu042] (2019-11-15 12-55) # Wine "1.5.10-battlefront" -> 2.22 # [Dadu042] (2019-11-15 13:23) # Add install from local # [Dadu042] (2019-11-16 22:20) # Wine 2.22 -> 3.0.3. I tested with GOG.com release v1.1 # [Dadu042] (2019-11-17 15:35) # Force winxp and x86 # Fix a log issue. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars - Battlefront II (2005)" PREFIX="StarWarsBattlefrontII2005" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts" "" "Tinou" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "3.0.3" POL_System_SetArch "x86" Set_OS "winxp" ################ # GPU # ################ # Asking about memory size of graphic card # POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver ################ # Fix for 'err:ole:CoGetClassObject class {ef985e71-d5c7-42d4-ba4d-2d073e2e96f4} not registered' POL_Call POL_Install_mdac28 POL_SetupWindow_InstallMethod "DVD,LOCAL" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" cd "$CDROM" POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" # "/SILENT" POL_Wine_WaitExit "$TITLE" fi POL_Shortcut "LaunchBFII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" # In the GOG release, filename is this one: POL_Shortcut "BattlefrontII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Saturday 16 November 2019 at 23:31 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -1,38 +1,65 @@ #!/bin/bash - + # CHANGELOG # [Quentin P] (2014 ?) # Initial writting. # [Dadu042] (2019-11-15 12-55) # Wine "1.5.10-battlefront" -> 2.22 +# [Dadu042] (2019-11-15 13:23) +# Add install from local +# [Dadu042] (2019-11-16 22:20) +# Wine 2.22 -> 3.0.3. I tested with GOG.com release v1.1 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - -TITLE="Star Wars - Battlefront II" -PREFIX="StarWarsBattlefrontII" - + +TITLE="Star Wars - Battlefront II (2005)" +PREFIX="StarWarsBattlefrontII2005" + POL_SetupWindow_Init POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "LucasArts" "" "Tinou" "$PREFIX" - +POL_SetupWindow_presentation "$TITLE" "LucasArts" "" "Tinou" "$PREFIX" + +POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "3.0.3" + +################ +# GPU # +################ + +# Asking about memory size of graphic card +# POL_SetupWindow_VMS $GAME_VMS + +# Set Graphic Card information keys for wine +POL_Wine_SetVideoDriver -POL_SetupWindow_InstallMethod "DVD" +POL_SetupWindow_InstallMethod "DVD,LOCAL" + if [ "$INSTALL_METHOD" = "DVD" ]; then - POL_SetupWindow_cdrom - POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" - - POL_Wine_SelectPrefix "$PREFIX" - POL_Wine_PrefixCreate "2.22" - - cd "$CDROM" - POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" - POL_Wine_WaitExit "$TITLE" + POL_SetupWindow_cdrom + POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" + cd "$CDROM" + POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" + POL_Wine_WaitExit "$TITLE" +elif [ "$INSTALL_METHOD" == "LOCAL" ]; then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" + SETUP_EXE="$APP_ANSWER" + POL_Wine start /unix "$SETUP_EXE" # "/SILENT" + POL_Wine_WaitExit "$TITLE" fi - + POL_Shortcut "LaunchBFII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" +# In the GOG release, filename is this one: +POL_Shortcut "BattlefrontII.exe" "$TITLE" "" "" "Game;ActionGame;" +POL_Shortcut_QuietDebug "$TITLE" + POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # CHANGELOG # [Quentin P] (2014 ?) # Initial writting. # [Dadu042] (2019-11-15 12-55) # Wine "1.5.10-battlefront" -> 2.22 # [Dadu042] (2019-11-15 13:23) # Add install from local # [Dadu042] (2019-11-16 22:20) # Wine 2.22 -> 3.0.3. I tested with GOG.com release v1.1 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars - Battlefront II (2005)" PREFIX="StarWarsBattlefrontII2005" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts" "" "Tinou" "$PREFIX" POL_RequiredVersion "4.2.12" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "3.0.3" ################ # GPU # ################ # Asking about memory size of graphic card # POL_SetupWindow_VMS $GAME_VMS # Set Graphic Card information keys for wine POL_Wine_SetVideoDriver POL_SetupWindow_InstallMethod "DVD,LOCAL" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" cd "$CDROM" POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" POL_Wine_WaitExit "$TITLE" elif [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" # POL_SetupWindow_message "$(eval_gettext 'Note: we recommend you to uncheck all the checkboxes:\n[x] -> [ ]')" "$TITLE" SETUP_EXE="$APP_ANSWER" POL_Wine start /unix "$SETUP_EXE" # "/SILENT" POL_Wine_WaitExit "$TITLE" fi POL_Shortcut "LaunchBFII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" # In the GOG release, filename is this one: POL_Shortcut "BattlefrontII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Dadu042 | Friday 15 November 2019 at 12:53 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,15 @@ #!/bin/bash +# CHANGELOG +# [Quentin P] (2014 ?) +# Initial writting. +# [Dadu042] (2019-11-15 12-55) +# Wine "1.5.10-battlefront" -> 2.22 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" -TITLE="Star wars - Battlefront II" +TITLE="Star Wars - Battlefront II" PREFIX="StarWarsBattlefrontII" POL_SetupWindow_Init @@ -18,14 +24,14 @@ POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" POL_Wine_SelectPrefix "$PREFIX" - POL_Wine_PrefixCreate "1.5.10-battlefront" + POL_Wine_PrefixCreate "2.22" cd "$CDROM" POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" POL_Wine_WaitExit "$TITLE" fi -POL_Shortcut "LaunchBFII.exe" "$TITLE" +POL_Shortcut "LaunchBFII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # CHANGELOG # [Quentin P] (2014 ?) # Initial writting. # [Dadu042] (2019-11-15 12-55) # Wine "1.5.10-battlefront" -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars - Battlefront II" PREFIX="StarWarsBattlefrontII" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts" "" "Tinou" "$PREFIX" POL_SetupWindow_InstallMethod "DVD" if [ "$INSTALL_METHOD" = "DVD" ]; then POL_SetupWindow_cdrom POL_SetupWindow_check_cdrom "Gamedata/Setup.exe" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.22" cd "$CDROM" POL_Wine --ignore-errors "$CDROM/Gamedata/Setup.exe" POL_Wine_WaitExit "$TITLE" fi POL_Shortcut "LaunchBFII.exe" "$TITLE" "" "" "Game;ActionGame;" POL_Shortcut_QuietDebug "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Gold_Logi | Friday 28 June 2019 at 4:52 |
Gold_Logi
|
MessageI have installed Star Wars Battlefront 2 on my steam windows version with playonmac and wine and it has downloaded the game but when I go to click play through steam it pops up with a message saying it needs to update but there is no update and after 30 seconds or so another error pops up saying connection time out. So I can't get past this to actually open and play the game. Please help me solve this issue. Thank you! Replies |
Shakuniboss | Monday 26 February 2018 at 0:28 |
Shakuniboss
|
MessageOk well I got the mod installed, but now the game won't start up at all. Any idea as to why this is happening? Replies |
Shakuniboss | Sunday 25 February 2018 at 5:35 |
Shakuniboss
|
MessageHelp RepliesSunday 25 February 2018 at 5:36
Sunday 25 February 2018 at 5:37
Sunday 25 February 2018 at 5:38
Sunday 25 February 2018 at 5:41
Sunday 25 February 2018 at 5:44
Sunday 25 February 2018 at 5:44
|
techwiz24 | Saturday 16 May 2015 at 1:54 |
techwiz24
|
MessageI have the 4 CD-ROM Set. I cannot get the installer to start installing (It asks if it wants to create a shortcut, which I select no) by throwing an error: Unhandled Exception Error Number: 0x80040707 Description: DLL functilon call crashed: LecSetup2.LecSetup_CheckDirectX Setup will now terminate RepliesSaturday 16 May 2015 at 1:55
Saturday 16 May 2015 at 2:23
|
AZMel | Friday 15 May 2015 at 0:18 |
AZMel
|
MessageThere appears to be a patch for the slow loading. Could you create a patched wine version from the solution described in this post?
https://bugs.winehq.org/show_bug.cgi?id=29582#c15
Thanks! Mel RepliesFriday 15 May 2015 at 1:18
|
darktytanus | Wednesday 17 September 2014 at 15:17 |
darktytanus
|
MessageBonjour, ayant réussi installer battlefront II sans soucis, le jeu se la ce également sans soucis mais au moment de jouer, le menu de chargement apparaît mais load dans le vide ça charge sans lancer la partie .. C est problématique.. Aucune solution ? Vous êtes mon seul espoir ! Merci d avance. 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