Age Of Empires II - HD
Informations
Créateur | Messages |
---|---|
Quentin PÂRIS
|
AttentionThis installer is a beta script. It means that it might not work as expected InformationsPlate-formes : Retours d'expérience7 12 DescriptionAge of Empires II HD is a remake of Age of Empires II that was released for PC through Steam on April 9, 2013. The game was developed by Hidden Path Entertainment and Ensemble Studios and was published by Microsoft Game Studios. Code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com # # CHANGELOG # [Quentin PARIS] (2014-07-14 17-00) # Initial script (Wine 1.7.21). # [Dadu042] (2020-03-22 12:30). # Wine 2.12-staging (outdated) -> 3.0.3 # POL_Shortcut improved. # POL_RequiredVersion added (currently useless). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="3.0.3" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.1.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" "Game;" fi POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Dimanche 22 Mars 2020 à 16:41 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -1,66 +1,75 @@ #!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) -# UPDATED: Wine version used : 2.12-staging # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com - + +# +# CHANGELOG +# [Quentin PARIS] (2014-07-14 17-00) +# Initial script (Wine 1.7.21). +# [Dadu042] (2020-03-22 12:30). +# Wine 2.12-staging (outdated) -> 3.0.3 +# POL_Shortcut improved. +# POL_RequiredVersion added (currently useless). + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" -WORKING_WINE_VERSION="2.12-staging" +WORKING_WINE_VERSION="3.0.3" GAME_VMS="512" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + +POL_RequiredVersion "4.1.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + - - + POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM - + POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS - + POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" - + if [ "$INSTALL_METHOD" = "STEAM" ]; then - POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" - + POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" - -fi - + +fi + 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" - - POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" + + POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" "Game;" fi POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com # # CHANGELOG # [Quentin PARIS] (2014-07-14 17-00) # Initial script (Wine 1.7.21). # [Dadu042] (2020-03-22 12:30). # Wine 2.12-staging (outdated) -> 3.0.3 # POL_Shortcut improved. # POL_RequiredVersion added (currently useless). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="3.0.3" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_RequiredVersion "4.1.0" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" "Game;" fi POL_SetupWindow_Close exit Réponses |
kired | Mardi 22 Octobre 2019 à 12:49 |
kired
|
MessagesGot it to work, on mac, multiplayer as well, following this guide: https://steamcommunity.com/sharedfiles/filedetails/?id=528356278 RéponsesDimanche 22 Mars 2020 à 16:38
Edité par kired |
sgt_rayvax | Jeudi 29 Novembre 2018 à 22:22 |
sgt_rayvax
|
MessagesHi, I Here is what I tried already :
Here are the two logs after 2.2 method. If someone see it through because I really don't and I spent a lot of time now... Every workaround method on internet are usually after the stage where I'm stuck. Thanks :)
-Ubuntu SMP Tue Oct 23 15:48:01 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux > lsb_release -a > wine --version wine-2.12 (Staging) > POL_WINEVERSION 2.12-staging > WINEPREFIX /home/xav/.PlayOnLinux//wineprefix/AOE2HD > Distribution Ubuntu 18.04.1 LTS > glxinfo \| grep rendering direct rendering: Yes GL_NV_path_rendering, GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_path_rendering, GL_NV_pixel_data_range, GL_NV_point_sprite, GL_NV_packed_float_linear, GL_NV_path_rendering, > glxinfo \| grep renderer OpenGL renderer string: GeForce GTX 560 Ti/PCIe/SSE2 > OpenGL libs (Direct rendering testing) check_dd_x86 missing, test skipped check_dd_amd64 missing, test skipped [11/29/18 19:23:36] - Running wine-2.12-staging cmd /c echo %ProgramFiles% (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 C:\Program Files [11/29/18 19:23:40] - ----- Starting function POL_Install_vcrun2012 ----- [11/29/18 19:23:42] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/xav/.PlayOnLinux/tmp/vcrun2012) [11/29/18 19:23:42] - Content of /home/xav/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*atl110"="native,builtin" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:23:43] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/xav/.PlayOnLinux/tmp/vcrun2012) [11/29/18 19:23:43] - Content of /home/xav/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*msvcp110"="native,builtin" ----------- [11/29/18 19:23:43] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/xav/.PlayOnLinux/tmp/vcrun2012) [11/29/18 19:23:43] - Content of /home/xav/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*msvcr110"="native,builtin" ----------- [11/29/18 19:23:43] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/xav/.PlayOnLinux/tmp/vcrun2012) [11/29/18 19:23:43] - Content of /home/xav/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*vcomp110"="native,builtin" ----------- [11/29/18 19:23:44] - ----- Ending function POL_Install_vcrun2012 ----- [11/29/18 19:24:16] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/VGA_ID_fix.reg (Working directory : /usr/share/playonlinux/python) [11/29/18 19:24:16] - Content of /home/xav/.PlayOnLinux//tmp/VGA_ID_fix.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "VideoPCIVendorID"=dword:000010de "VideoPCIDeviceID"=dword:00001200 "VideoDriver"="nv4_disp.dll" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:24:16] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) [11/29/18 19:24:16] - Content of /home/xav/.PlayOnLinux//tmp/regkey.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "VideoMemorySize"="1024" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:24:16] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) [11/29/18 19:24:16] - Content of /home/xav/.PlayOnLinux//tmp/regkey.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "UseGLSL"="enabled" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:24:17] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) [11/29/18 19:24:17] - Content of /home/xav/.PlayOnLinux//tmp/regkey.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "DirectDrawRenderer"="opengl" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:24:17] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) [11/29/18 19:24:17] - Content of /home/xav/.PlayOnLinux//tmp/regkey.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "StrictDrawOrdering"="disabled" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:24:18] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /usr/share/playonlinux/python) [11/29/18 19:24:18] - Content of /home/xav/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*gameoverlayrenderer"="" ----------- fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 [11/29/18 19:24:18] - ----- Starting function POL_Install_steam ----- [11/29/18 19:24:18] - Running wine-2.12-staging cmd /c echo %ProgramFiles% (Working directory : /home/xav/.PlayOnLinux/tmp) C:\Program Files [11/29/18 19:24:18] - ----- Starting function POL_Install_corefonts ----- [11/29/18 19:24:18] - ----- Starting function POL_Internal_InstallFonts ----- [11/29/18 19:24:18] - ----- Ending function POL_Internal_InstallFonts ----- [11/29/18 19:24:18] - ----- Ending function POL_Install_corefonts ----- [11/29/18 19:24:18] - ----- Starting function POL_Install_corefonts ----- [11/29/18 19:24:19] - ----- Starting function POL_Internal_InstallFonts ----- [11/29/18 19:24:19] - ----- Ending function POL_Internal_InstallFonts ----- [11/29/18 19:24:19] - ----- Ending function POL_Install_corefonts ----- [11/29/18 19:24:19] - ----- Starting function POL_Function_FontsSmoothRGB ----- [11/29/18 19:24:19] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/fontsaa.reg (Working directory : /home/xav/.PlayOnLinux/tmp) [11/29/18 19:24:19] - Content of /home/xav/.PlayOnLinux//tmp/fontsaa.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Control Panel\Desktop] "FontSmoothing"="2" "FontSmoothingType"=dword:00000002 "FontSmoothingGamma"=dword:00000578 "FontSmoothingOrientation"=dword:00000001 ----------- [11/29/18 19:24:19] - ----- Ending function POL_Function_FontsSmoothRGB ----- [11/29/18 19:24:19] - Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/xav/.PlayOnLinux/tmp) [11/29/18 19:24:19] - Content of /home/xav/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*dwrite"="" ----------- [11/29/18 19:24:19] - ----- Ending function POL_Install_steam ----- [11/29/18 19:24:20] - ----- Starting function POL_Install_steam_flags ----- [11/29/18 19:24:20] - ----- Ending function POL_Install_steam_flags -----
Set up script log :
9:24:15 - [POL_SetupWindow_icon_menu] Message: icon_menu answer: Utiliser la version Steam Store 11/29/18 19:24:15 - [POL_SetupWindow_InstallMethod] Message: Install method: STEAM 11/29/18 19:24:15 - [POL_Wine_SetVideoDriver] Message: Set wine video driver 11/29/18 19:24:16 - [POL_DetectVideoCards] Message: Gettings GPU informations 11/29/18 19:24:16 - [POL_LoadVar_Device] Message: VendorID : 10de 11/29/18 19:24:16 - [POL_LoadVar_Device] Message: DeviceID : 1200 11/29/18 19:24:16 - [POL_Wine_SetVideoDriver] Message: Detected video driver: nv4_disp.dll 11/29/18 19:24:16 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/VGA_ID_fix.reg (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 11/29/18 19:24:16 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:16 - [POL_Wine_Direct3D] Message: Setting wine Direct3D /home/xav/.PlayOnLinux//wineprefix/AOE2HD VideoMemorySize 1024 11/29/18 19:24:16 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 11/29/18 19:24:16 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:16 - [POL_Wine_Direct3D] Message: Setting wine Direct3D /home/xav/.PlayOnLinux//wineprefix/AOE2HD UseGLSL enabled 11/29/18 19:24:16 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 11/29/18 19:24:17 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:17 - [POL_Wine_Direct3D] Message: Setting wine Direct3D /home/xav/.PlayOnLinux//wineprefix/AOE2HD DirectDrawRenderer opengl 11/29/18 19:24:17 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 11/29/18 19:24:17 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:17 - [POL_Wine_Direct3D] Message: Setting wine Direct3D /home/xav/.PlayOnLinux//wineprefix/AOE2HD StrictDrawOrdering disabled 11/29/18 19:24:17 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/regkey.reg (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 11/29/18 19:24:17 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:17 - [POL_Wine_OverrideDLL] Message: Overriding DLLs 11/29/18 19:24:18 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /usr/share/playonlinux/python) fixme:winediag:start_process Wine Staging 2.12 is a testing version containing experimental patches. fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. err:module:load_builtin_dll failed to load .so lib for builtin L"winebus.sys": libudev.so.0: Ne peut ouvrir le fichier d'objet partagé: Aucun fichier ou dossier de ce type err:winedevice:async_create_driver failed to create driver L"WineBus": c0000142 11/29/18 19:24:18 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:18 - [POL_Call] Message: Calling POL_Install_steam 11/29/18 19:24:18 - [POL_Call] Message: ----- Starting function POL_Install_steam ----- 11/29/18 19:24:18 - [POL_GPG_auth_script] Message: Checking signature of POL_Install_steam 11/29/18 19:24:18 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:18 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:18 - [POL_LoadVar_PROGRAMFILES] Message: Getting Program Files name 11/29/18 19:24:18 - [POL_Wine] Message: Running wine-2.12-staging cmd /c echo %ProgramFiles% (Working directory : /home/xav/.PlayOnLinux/tmp) C:\Program Files 11/29/18 19:24:18 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:18 - [POL_Call] Message: Calling POL_Install_corefonts 11/29/18 19:24:18 - [POL_Call] Message: ----- Starting function POL_Install_corefonts ----- 11/29/18 19:24:18 - [POL_GPG_auth_script] Message: Checking signature of POL_Install_corefonts 11/29/18 19:24:18 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:18 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:18 - [POL_Call] Message: Calling POL_Internal_InstallFonts 11/29/18 19:24:18 - [POL_Call] Message: ----- Starting function POL_Internal_InstallFonts ----- 11/29/18 19:24:18 - [POL_GPG_auth_script] Message: Checking signature of POL_Internal_InstallFonts 11/29/18 19:24:18 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:18 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:18 - [POL_Call] Message: ----- Ending function POL_Internal_InstallFonts ----- 11/29/18 19:24:18 - [source] Message: Installing microsoft fonts 11/29/18 19:24:18 - [POL_Call] Message: ----- Ending function POL_Install_corefonts ----- 11/29/18 19:24:18 - [POL_Call] Message: Calling POL_Install_corefonts 11/29/18 19:24:18 - [POL_Call] Message: ----- Starting function POL_Install_corefonts ----- 11/29/18 19:24:18 - [POL_GPG_auth_script] Message: Checking signature of POL_Install_corefonts 11/29/18 19:24:18 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:18 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:18 - [POL_Call] Message: Calling POL_Internal_InstallFonts 11/29/18 19:24:19 - [POL_Call] Message: ----- Starting function POL_Internal_InstallFonts ----- 11/29/18 19:24:19 - [POL_GPG_auth_script] Message: Checking signature of POL_Internal_InstallFonts 11/29/18 19:24:19 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:19 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:19 - [POL_Call] Message: ----- Ending function POL_Internal_InstallFonts ----- 11/29/18 19:24:19 - [source] Message: Installing microsoft fonts 11/29/18 19:24:19 - [POL_Call] Message: ----- Ending function POL_Install_corefonts ----- 11/29/18 19:24:19 - [POL_Call] Message: Calling POL_Function_FontsSmoothRGB 11/29/18 19:24:19 - [POL_Call] Message: ----- Starting function POL_Function_FontsSmoothRGB ----- 11/29/18 19:24:19 - [POL_GPG_auth_script] Message: Checking signature of POL_Function_FontsSmoothRGB 11/29/18 19:24:19 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:19 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:19 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/fontsaa.reg (Working directory : /home/xav/.PlayOnLinux/tmp) 11/29/18 19:24:19 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:19 - [POL_Call] Message: ----- Ending function POL_Function_FontsSmoothRGB ----- 11/29/18 19:24:19 - [POL_Wine_OverrideDLL] Message: Overriding DLLs 11/29/18 19:24:19 - [POL_Wine] Message: Running wine-2.12-staging regedit /home/xav/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/xav/.PlayOnLinux/tmp) 11/29/18 19:24:19 - [POL_Wine] Message: Wine return: 0 11/29/18 19:24:19 - [POL_Call] Message: ----- Ending function POL_Install_steam ----- 11/29/18 19:24:19 - [POL_Call] Message: Calling POL_Install_steam_flags 11/29/18 19:24:20 - [POL_Call] Message: ----- Starting function POL_Install_steam_flags ----- 11/29/18 19:24:20 - [POL_GPG_auth_script] Message: Checking signature of POL_Install_steam_flags 11/29/18 19:24:20 - [POL_GPG_install_key] Message: Importing PlayOnLinux public key 11/29/18 19:24:20 - [POL_Source] Message: POL GPG : Good signature 11/29/18 19:24:20 - [POL_Call] Message: ----- Ending function POL_Install_steam_flags ----- 11/29/18 19:24:20 - [POL_Shortcut] Message: Looking for , found <> 11/29/18 19:24:20 - [POL_Shortcut] Error: Binary not found: steam.exe\nHave you installed the program to the default location? 11/29/18 19:27:17 - [POL_Shortcut] Message: Shortcut created: Age Of Empire II - HD
RéponsesSamedi 6 Avril 2019 à 7:26
Dimanche 22 Mars 2020 à 11:25
Edité par Dadu042 |
daviewales | Jeudi 30 Aoüt 2018 à 5:46 |
daviewales
|
MessagesAge of Empires II HD launched for me, but the Multiplayer Server Lobby browser was always empty. To fix :
To be clear, the first few steps are in the "PlayOnMac" app (August 2018). RéponsesEdité par Dadu042 |
Mamsaac | Mardi 3 Avril 2018 à 8:05 |
Mamsaac
|
MessagesCouldn't get it to run in my computer :( This is the first time I've used PlayOnLinux, so I might be missing something, however, I get the following error on my log:
err:module:import_dll Library DWrite.dll (which is needed by L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\libcef.dll") not found err:module:import_dll Library libcef.dll (which is needed by L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe") not found err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program Files\\Steam\\bin\\cef\\cef.win7\\steamwebhelper.exe" failed, status c0000135
And just hangs on the "Wait while Age of Empires II installs" or something like that, right after the step in which I completely close Steam. RéponsesLundi 28 Mai 2018 à 17:56
|
zottelbeyer | Jeudi 15 Mars 2018 à 16:32 |
zottelbeyer
|
MessagesAoE II HD now requires vcrun2015 which is not yet in PoL. To fix it manually do the following:
After the first launch I was also stuck at validating subscriptions but it works fine after relaunching. The game also seems to run fine with wine 3.3 as far as I could tell in my short testing. RéponsesMercredi 4 Avril 2018 à 18:40
|
senorsmile | Vendredi 12 Janvier 2018 à 8:57 |
senorsmile
|
MessagesUbuntu 16.04 - Awesome WM There were a few hiccups but everything is running well. The first time through the installation, after it has downloaded and you close the steam window, the playonlinux installation seems to freeze. I cancelled out of it and saw the new entry in the main playonlinux window. The first time I opened it it seemed stuck at "Validating Subscriptions". I closed it and reopened and everything works properly now. Réponses |
Epleth | Mercredi 19 Juillet 2017 à 20:38 |
Epleth
|
MessagesPortingkit seems to be working. So until playonmac fixes its problems, that is my suggestion:) https://www.reddit.com/r/aoe2/comments/6o0m9k/joining_multiplayer_on_wine/ RéponsesMercredi 26 Juillet 2017 à 11:19
|
Epleth | Mardi 18 Juillet 2017 à 13:17 |
Epleth
|
MessagesStill not able to access multiplayer games, or create games others can join. RéponsesMardi 18 Juillet 2017 à 14:39
Mercredi 23 Mai 2018 à 2:43
|
DREAK | Samedi 15 Juillet 2017 à 19:45 |
DREAK
|
Messages
Hey. I have some problem with my game. Age of empires 2hd. I had som problem with the Steam that now is fixed becuse I change my wine vesion to the latest update 2. 12- fix 43315. (Old problem) When I install everything the steam doesn't start up and it crashed (Debug)
(New problem) I have installed everything and now I have problem with multiplayer game = Online game. When I want to join a game it just load but nothing else is happening. I had this problem for long time ago and I just change the wine version and it worked. But now when there is only one wine that works I want to know if there is anyway I can fix this. Or do I need to wait until a new version come out?
Good for you too know is that I have played this game for a long time and it always works so I have no problem with port forwarding or fairewall or antivirus. I haven't change any settings there. I just have this problem becuse the steam update and now I have only one wine version to pick that works. I also play on Mac, if you need to know.
RéponsesDimanche 16 Juillet 2017 à 11:36
Dimanche 16 Juillet 2017 à 13:49
Dimanche 16 Juillet 2017 à 17:39
Dimanche 16 Juillet 2017 à 20:22
Lundi 17 Juillet 2017 à 19:46
|
Hasso | Vendredi 14 Juillet 2017 à 20:19 |
Hasso
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesI had the same issue with the last steam update. Luckely there is already a patch for wine 2.12-staging (see https://www.reddit.com/r/wine_gaming/comments/6mjwkv/steam_crash_710/) and I can now use steam (and AOE HD ) again!
The script above should be fixed by simply exchanging the line WORKING_WINE_VERSION="1.8-staging" by WORKING_WINE_VERSION="2.12-staging" . If AOE HD is already installed, one can open the "configure" dialog on the left-hand side of the PlayOnLinux gui and then select the 2.12-staging version for games that need steam.
Unfortunately, 2.12 is very new and does not seem to be available in PlayOnLinux, yet. (This is at least true for my installation.) I read somewhere, that adding new versions is just a matter of a few days, so you might simply wait until its there. An other option is to download and install the new wine directly. Following the instructions from https://www.winehq.org/download is very easy and I managed to install 2.12-staging within 10 minutes on debian... Afterwards, you can than select "system" in wine's the configuration dialog in order to use the system-wide wine installation. This worked fine for me. After finishing the steam update I could start AOE HD and play single player games. Hope the rest works too. Differences@@ -1,6 +1,6 @@ #!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) -# Wine version used : 1.7.21 +# UPDATED: Wine version used : 2.12-staging # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com @@ -13,7 +13,7 @@ STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" -WORKING_WINE_VERSION="1.8-staging" +WORKING_WINE_VERSION="2.12-staging" GAME_VMS="512" POL_SetupWindow_Init Nouveau code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # UPDATED: Wine version used : 2.12-staging # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="2.12-staging" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_Close exit RéponsesSamedi 15 Juillet 2017 à 15:04
|
bridgetleanne | Jeudi 13 Juillet 2017 à 1:18 |
bridgetleanne
|
MessagesDoesn't work with the new update. :( Réponses |
transcend | Mercredi 12 Juillet 2017 à 11:50 |
transcend
|
MessagesLatest Steam update breaks the Steam loading and consequently, this game as well. Réponses |
Garnachito | Mercredi 12 Juillet 2017 à 6:54 |
Garnachito
|
MessagesWith the new STEAM update, this doesn't work at all :( Réponses |
jsaigon | Mercredi 10 Mai 2017 à 17:32 |
jsaigon
|
MessagesHello, I have hit download AOE II HD in 2 hours ago but it's still in progress. I have attemped download many times but it still not working for me, the files are not download yet even my Internet network work perfect. Would you please explain it to me or help me solve it? Thank you so much!!
Réponses |
sotond | Mercredi 10 Mai 2017 à 8:46 |
sotond
|
MessagesI am wondering if anyone can help me get AOEIIHD installed through steam onto my mac. I have been trying to run it through wine many times trying many different things but keep failing. The closest I got to actually starting the game was getting into steam through playonmac but then there were no words on the page only tiny squares in place of letters. I cannot tell if it is something I am doing or my computer, a 2011 Macbook Pro with El Capitan currently. I've downloaded and redownloaded and tried so many things that I have trouble finding the steam.exe to select when prompted to browse for a file. I've tried to follow the online stuff I read on guides to get this done but seem to be slipping up. Can anyone help me with a step by step process of how they got this to work, not leaving out detail in a way an amateur like myself won't screw up? Much appreciated thank you ahead of time if anyone can step up. Réponses |
Ads20000 | Vendredi 27 Janvier 2017 à 18:11 |
Ads20000
|
MessagesThe program runs well (once you've added .bak to Launcher.exe and AoK HD.exe and copied AoK HD.exe to a new Launcher.exe file - then using a shortcut to the new Launcher.exe to run the game). However, when I updated via Steam, when I tried to join a multiplayer game with Steam friends it said 'The host is not running the same version of the game. Everyone must run the same version of Age of Empires II to play a multiplayer game' despite me having 5.0.1577660 before and after reinstalling (after reinstalling it worked fine). RéponsesMercredi 23 Mai 2018 à 2:46
|
Philastan | Mardi 3 Janvier 2017 à 14:35 |
Philastan
|
MessagesEverything works fine, but my game stucks in the loadingscreen right after matchmaking. Any clues? I reinstalled the game and Playonmac several times and the same process works on another mac by me flawless, which is strange. I also installed the bugfix mentioned above. Réponses |
Walkman | Samedi 31 Décembre 2016 à 20:41 |
Walkman
|
Messages(POL built-in bug report wizard doesn't accept my credentials so posting here manually instead) - What were you doing when the problem occurred? wine: Call from 0x7b83ea52 to unimplemented function api-ms-win-crt-runtime-l1-1-0.dll._initialize_onexit_table, aborting this exact message is shown every time I start AOE2 Réponses |
Ads20000 | Mardi 27 Décembre 2016 à 19:02 |
Ads20000
|
MessagesThanks for the script Quentin! However I had to rename AoK II.EXE to Launcher.exe for the game to load, then launching Launcher.exe directly (as a shortcut) works. Could you rejig the script to do this automatically? I don't know how I would implement this. RéponsesMercredi 23 Mai 2018 à 2:45
|
philipheinser | Mercredi 14 Décembre 2016 à 22:05 |
philipheinser
|
MessagesI get this issue after an AoE update yesterday: http://pastebin.com/dztTKebf Does anyone know a quick fix? RéponsesJeudi 15 Décembre 2016 à 0:21
Samedi 31 Décembre 2016 à 21:50
|
nlflint | Mercredi 16 Novembre 2016 à 1:46 |
nlflint
|
MessagesInstallation said it failed, but it works anyways. Game runs great. Text is missing from left side buttons on the initial menu (before entering the game). I had to try the buttons until one started the game. Running on 2016 rMB w/ MacOS Sierra
Réponses |
ttraj | Samedi 7 Mai 2016 à 17:24 |
ttraj
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -4,10 +4,10 @@ # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" @@ -16,51 +16,82 @@ WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" +VBYVERSION="v2.2.4.49" +VBYMD5="2e583d4bfd0728007bef803468e58f90" +AOEHDPMD5="857412dbdda48510ed41c74226a6f487" + POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + - - + POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM - + POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS - + POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" - + if [ "$INSTALL_METHOD" = "STEAM" ]; then - + POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" - + POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" - -fi - + +fi + 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" - + POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi + +POL_SetupWindow_menu "Install Voobly" "Do you want to play in voobly also?" "Yes No" " " +if [ "$APP_ANSWER" = "Yes" ] +then + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + POL_SetupWindow_message "details http://aoccs.net/" "Instllaing AOE2HD patch" + POL_Download "http://www.aoccs.net/aochd/aochdcompat-v4.exe" "$AOEHDPMD5" + INSTALLER="$POL_System_TmpDir/aochdcompat-v4.exe" + + POL_Wine_WaitBefore "AOE2HD Compatablity" + POL_Wine "$INSTALLER" + + POL_SetupWindow_message "Instllaing Voobly" "Voobly" + POL_Download "http://www.voobly.com/updates/voobly-$VBYVERSION.exe" "$VBYMD5" + INSTALLER="$POL_System_TmpDir/voobly-$VBYVERSION.exe" + + POL_Wine_WaitBefore "Voobly" + POL_Wine "$INSTALLER" + POL_Shortcut "voobly.exe" "Voobly" "" + POL_Shortcut_InsertBeforeWine "Voobly" "export STAGING_WRITECOPY=1" + + POL_SetupWindow_message "Instllaing directplay and dotnet" "Support" + POL_Call POL_Install_Directplay + POL_Call POL_Install_dotnet40 +fi +[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" VBYVERSION="v2.2.4.49" VBYMD5="2e583d4bfd0728007bef803468e58f90" AOEHDPMD5="857412dbdda48510ed41c74226a6f487" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_menu "Install Voobly" "Do you want to play in voobly also?" "Yes No" " " if [ "$APP_ANSWER" = "Yes" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_message "details http://aoccs.net/" "Instllaing AOE2HD patch" POL_Download "http://www.aoccs.net/aochd/aochdcompat-v4.exe" "$AOEHDPMD5" INSTALLER="$POL_System_TmpDir/aochdcompat-v4.exe" POL_Wine_WaitBefore "AOE2HD Compatablity" POL_Wine "$INSTALLER" POL_SetupWindow_message "Instllaing Voobly" "Voobly" POL_Download "http://www.voobly.com/updates/voobly-$VBYVERSION.exe" "$VBYMD5" INSTALLER="$POL_System_TmpDir/voobly-$VBYVERSION.exe" POL_Wine_WaitBefore "Voobly" POL_Wine "$INSTALLER" POL_Shortcut "voobly.exe" "Voobly" "" POL_Shortcut_InsertBeforeWine "Voobly" "export STAGING_WRITECOPY=1" POL_SetupWindow_message "Instllaing directplay and dotnet" "Support" POL_Call POL_Install_Directplay POL_Call POL_Install_dotnet40 fi [ "$$POL_System_TmpDir" ] && POL_System_TmpDelete POL_SetupWindow_Close exit Réponses |
ttraj | Vendredi 6 Mai 2016 à 16:20 |
ttraj
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -15,6 +15,10 @@ AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" + +VBYVERSION="v2.2.4.49" +VBYMD5="2e583d4bfd0728007bef803468e58f90" +AOEHDPMD5="857412dbdda48510ed41c74226a6f487" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 @@ -62,5 +66,31 @@ POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi + +POL_SetupWindow_menu "Install Voobly" "Do you want to play in voobly also?" "Yes No" " " +if [ "$APP_ANSWER" = "Yes" ] +then + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + POL_SetupWindow_message "details http://aoccs.net/" "Instllaing AOE2HD patch" + POL_Download "http://www.aoccs.net/aochd/aochdcompat-v4.exe" "$AOEHDPMD5" + INSTALLER="$POL_System_TmpDir/aochdcompat-v4.exe" + + POL_Wine_WaitBefore "AOE2HD Compatablity" + POL_Wine "$INSTALLER" + + POL_SetupWindow_message "Instllaing Voobly" "Voobly" + POL_Download "http://www.voobly.com/updates/voobly-$VBYVERSION.exe" "$VBYMD5" + INSTALLER="$POL_System_TmpDir/voobly-$VBYVERSION.exe" + + POL_Wine_WaitBefore "Voobly" + POL_Wine "$INSTALLER" + POL_Shortcut "voobly.exe" "Voobly" "" + + POL_SetupWindow_message "Instllaing directplay and dotnet" "Support" + POL_Call POL_Install_Directplay + POL_Call POL_Install_dotnet40 +fi +[ "$$POL_System_TmpDir" ] && POL_System_TmpDelete POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" VBYVERSION="v2.2.4.49" VBYMD5="2e583d4bfd0728007bef803468e58f90" AOEHDPMD5="857412dbdda48510ed41c74226a6f487" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_menu "Install Voobly" "Do you want to play in voobly also?" "Yes No" " " if [ "$APP_ANSWER" = "Yes" ] then POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_message "details http://aoccs.net/" "Instllaing AOE2HD patch" POL_Download "http://www.aoccs.net/aochd/aochdcompat-v4.exe" "$AOEHDPMD5" INSTALLER="$POL_System_TmpDir/aochdcompat-v4.exe" POL_Wine_WaitBefore "AOE2HD Compatablity" POL_Wine "$INSTALLER" POL_SetupWindow_message "Instllaing Voobly" "Voobly" POL_Download "http://www.voobly.com/updates/voobly-$VBYVERSION.exe" "$VBYMD5" INSTALLER="$POL_System_TmpDir/voobly-$VBYVERSION.exe" POL_Wine_WaitBefore "Voobly" POL_Wine "$INSTALLER" POL_Shortcut "voobly.exe" "Voobly" "" POL_SetupWindow_message "Instllaing directplay and dotnet" "Support" POL_Call POL_Install_Directplay POL_Call POL_Install_dotnet40 fi [ "$$POL_System_TmpDir" ] && POL_System_TmpDelete POL_SetupWindow_Close exit Réponses |
petch | Lundi 25 Janvier 2016 à 6:35 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFix vcrun2012 install call Differences@@ -27,7 +27,7 @@ -POL_Call POL_Install vcrun2012 +POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver Nouveau code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install_vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_Close exit Réponses |
Keks | Lundi 25 Janvier 2016 à 3:31 |
Keks
|
MessagesIf I try to install age of Empires 2 HD i get this error.
Error in POL_Call I cant find anything helpfull in google. Do i have to download it first in Steam or something?
Best Regards Alex Réponses |
petch | Dimanche 3 Janvier 2016 à 13:45 |
petch
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesAdd POL_SetupWindow_SetID Differences@@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS @@ -17,6 +17,7 @@ GAME_VMS="512" POL_SetupWindow_Init +POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" Nouveau code source#!/usr/bin/env playonlinux-bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" POL_SetupWindow_Init POL_SetupWindow_SetID 2167 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_Close exit Réponses |
Quentin PÂRIS | Dimanche 3 Janvier 2016 à 12:25 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -13,7 +13,7 @@ STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" -WORKING_WINE_VERSION="1.7.21" +WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" POL_SetupWindow_Init @@ -26,8 +26,7 @@ - - +POL_Call POL_Install vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver Nouveau code source#!/bin/bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.8-staging" GAME_VMS="512" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_Call POL_Install vcrun2012 POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_Close exit Réponses |
mancerayder | Mardi 26 Mai 2015 à 3:05 |
mancerayder
|
MessagesHi, I just got it on Steam, but I can't get it to actually boot. Every time I hit the blue play button it brings up the dialog box: Performing first time setup... Installing: Microsoft VC Redist Package (step 1 of 2) It goes though steps 1&2 and then... nothing. Thanks RéponsesMercredi 27 Mai 2015 à 18:54
Mercredi 27 Mai 2015 à 19:03
|
Quentin PÂRIS | Lundi 14 Juillet 2014 à 17:03 |
Quentin PÂRIS
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFirst script Differences@@ -0,0 +1,66 @@ +#!/bin/bash +# Date : (2014-07-14 17-00) +# Wine version used : 1.7.21 +# Distribution used to test : Mac OS +# Author : Quentin PARIS +# Only For : http://www.playonlinux.com + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Age Of Empire II - HD" +PREFIX="AOE2HD" +STEAM_ID="221380" +EDITOR="Microsoft" +AUTHOR="Quentin PARIS" +WORKING_WINE_VERSION="1.7.21" +GAME_VMS="512" + +POL_SetupWindow_Init +POL_Debug_Init + +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" + + + + + +POL_SetupWindow_InstallMethod STEAM + +POL_Wine_SetVideoDriver +POL_SetupWindow_VMS $GAME_VMS + +POL_Wine_Direct3D "UseGLSL" "enabled" +POL_Wine_Direct3D "DirectDrawRenderer" "opengl" +POL_Wine_Direct3D "StrictDrawOrdering" "disabled" +POL_Wine_OverrideDLL "" "gameoverlayrenderer" + +if [ "$INSTALL_METHOD" = "STEAM" ]; then + + POL_Call POL_Install_steam + POL_Call POL_Install_steam_flags "$STEAM_ID" + POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" + + POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" + cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" + POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" + POL_Wine_WaitExit "$TITLE" + +fi + +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_WaitBefore "$TITLE" + POL_Wine "$SETUP_EXE" + POL_Wine_WaitExit "$TITLE" + + POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" +fi +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-07-14 17-00) # Wine version used : 1.7.21 # Distribution used to test : Mac OS # Author : Quentin PARIS # Only For : http://www.playonlinux.com [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Age Of Empire II - HD" PREFIX="AOE2HD" STEAM_ID="221380" EDITOR="Microsoft" AUTHOR="Quentin PARIS" WORKING_WINE_VERSION="1.7.21" GAME_VMS="512" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" POL_SetupWindow_InstallMethod STEAM POL_Wine_SetVideoDriver POL_SetupWindow_VMS $GAME_VMS POL_Wine_Direct3D "UseGLSL" "enabled" POL_Wine_Direct3D "DirectDrawRenderer" "opengl" POL_Wine_Direct3D "StrictDrawOrdering" "disabled" POL_Wine_OverrideDLL "" "gameoverlayrenderer" if [ "$INSTALL_METHOD" = "STEAM" ]; then POL_Call POL_Install_steam POL_Call POL_Install_steam_flags "$STEAM_ID" POL_Shortcut "steam.exe" "$TITLE" "$TITLE.png" "steam://rungameid/$STEAM_ID -nostartup" POL_SetupWindow_message "$(eval_gettext 'When $TITLE download by Steam is finished,\nDo NOT click on Play.\n\nClose COMPLETELY the Steam interface, \nso that the installation script can continue.')" "$TITLE" cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Steam" POL_Wine start /unix "Steam.exe" "steam://install/$STEAM_ID" POL_Wine_WaitExit "$TITLE" fi 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_WaitBefore "$TITLE" POL_Wine "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" POL_Shortcut "AoK HD.exe" "$TITLE" "" "-nostartup" fi POL_SetupWindow_Close exit RéponsesVendredi 25 Décembre 2015 à 17:33
Vendredi 25 Décembre 2015 à 17:35
Vendredi 25 Décembre 2015 à 18:01
Edité par Tinou |
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