Age Of Empires II - HD
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks7 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. Source code#!/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:
ContributeMember | Message |
Dadu042 | Sunday 22 March 2020 at 16:41 |
Dadu042
|
InformationThis update has been approved by the team. 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 New source code#!/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 Replies |
kired | Tuesday 22 October 2019 at 12:49 |
kired
|
MessageGot it to work, on mac, multiplayer as well, following this guide: https://steamcommunity.com/sharedfiles/filedetails/?id=528356278 RepliesSunday 22 March 2020 at 16:38
Edited by kired |
sgt_rayvax | Thursday 29 November 2018 at 22:22 |
sgt_rayvax
|
MessageHi, 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
RepliesSaturday 6 April 2019 at 7:26
Sunday 22 March 2020 at 11:25
Edited by Dadu042 |
daviewales | Thursday 30 August 2018 at 5:46 |
daviewales
|
MessageAge 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). RepliesEdited by Dadu042 |
Mamsaac | Tuesday 3 April 2018 at 8:05 |
Mamsaac
|
MessageCouldn'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. RepliesMonday 28 May 2018 at 17:56
|
zottelbeyer | Thursday 15 March 2018 at 16:32 |
zottelbeyer
|
MessageAoE 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. RepliesWednesday 4 April 2018 at 18:40
|
senorsmile | Friday 12 January 2018 at 8:57 |
senorsmile
|
MessageUbuntu 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. Replies |
Epleth | Wednesday 19 July 2017 at 20:38 |
Epleth
|
MessagePortingkit 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/ RepliesWednesday 26 July 2017 at 11:19
|
Epleth | Tuesday 18 July 2017 at 13:17 |
Epleth
|
MessageStill not able to access multiplayer games, or create games others can join. RepliesTuesday 18 July 2017 at 14:39
Wednesday 23 May 2018 at 2:43
|
DREAK | Saturday 15 July 2017 at 19:45 |
DREAK
|
Message
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.
RepliesSunday 16 July 2017 at 11:36
Sunday 16 July 2017 at 13:49
Sunday 16 July 2017 at 17:39
Sunday 16 July 2017 at 20:22
Monday 17 July 2017 at 19:46
|
Hasso | Friday 14 July 2017 at 20:19 |
Hasso
|
WarningThis update has not been approved yet by the team. MessageI 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 New source code#!/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 RepliesSaturday 15 July 2017 at 15:04
|
bridgetleanne | Thursday 13 July 2017 at 1:18 |
bridgetleanne
|
MessageDoesn't work with the new update. :( Replies |
transcend | Wednesday 12 July 2017 at 11:50 |
transcend
|
MessageLatest Steam update breaks the Steam loading and consequently, this game as well. Replies |
Garnachito | Wednesday 12 July 2017 at 6:54 |
Garnachito
|
MessageWith the new STEAM update, this doesn't work at all :( Replies |
jsaigon | Wednesday 10 May 2017 at 17:32 |
jsaigon
|
MessageHello, 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!!
Replies |
sotond | Wednesday 10 May 2017 at 8:46 |
sotond
|
MessageI 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. Replies |
Ads20000 | Friday 27 January 2017 at 18:11 |
Ads20000
|
MessageThe 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). RepliesWednesday 23 May 2018 at 2:46
|
Philastan | Tuesday 3 January 2017 at 14:35 |
Philastan
|
MessageEverything 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. Replies |
Walkman | Saturday 31 December 2016 at 20:41 |
Walkman
|
Message(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 Replies |
Ads20000 | Tuesday 27 December 2016 at 19:02 |
Ads20000
|
MessageThanks 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. RepliesWednesday 23 May 2018 at 2:45
|
philipheinser | Wednesday 14 December 2016 at 22:05 |
philipheinser
|
MessageI get this issue after an AoE update yesterday: http://pastebin.com/dztTKebf Does anyone know a quick fix? RepliesThursday 15 December 2016 at 0:21
Saturday 31 December 2016 at 21:50
|
nlflint | Wednesday 16 November 2016 at 1:46 |
nlflint
|
MessageInstallation 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
Replies |
ttraj | Saturday 7 May 2016 at 17:24 |
ttraj
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Replies |
ttraj | Friday 6 May 2016 at 16:20 |
ttraj
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Replies |
petch | Monday 25 January 2016 at 6:35 |
petch
|
WarningThis update has not been approved yet by the team. MessageFix 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 New source code#!/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 Replies |
Keks | Monday 25 January 2016 at 3:31 |
Keks
|
MessageIf 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 Replies |
petch | Sunday 3 January 2016 at 13:45 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd 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" New source code#!/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 Replies |
Quentin PÂRIS | Sunday 3 January 2016 at 12:25 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Replies |
mancerayder | Tuesday 26 May 2015 at 3:05 |
mancerayder
|
MessageHi, 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 RepliesWednesday 27 May 2015 at 18:54
Wednesday 27 May 2015 at 19:03
|
Quentin PÂRIS | Monday 14 July 2014 at 17:03 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. MessageFirst 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 New source code#!/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 RepliesFriday 25 December 2015 at 17:33
Friday 25 December 2015 at 17:35
Friday 25 December 2015 at 18:01
Edited by 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