Star Wars: The Old Republic
Informations
Creator | Message |
---|---|
Quentin PÂRIS
|
WarningThis installer is a beta script. It means that it might not work as expected InformationsPlatforms: Feedbacks27 53 DescriptionMassively multiplayer online role-playing game (MMORPG) based in the Star Wars universe. 2011. ScreenshotsSource code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 x64 # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 # CHANGELOG # [Quentin PÂRIS] (2014) # - First script wrote ? # [Yaotl] (2019-03-18) # - Upgrade wine to 4.3 # - swtor_fix.exe re-inserted (without it does not start properly) # - launcher-settings different changes and add language selection # - Add Set_Desktop (to avoid display problems in the system and game) # - Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) # - Add POL_RequiredVersion (mainly because of Wine 4.3) # - Standardize script (top infos). # [Yaotl] (2019-07-08) # - Upgrade wine 4.3 to 4.12.1 (many bug fixes) # - Small script changes # [Dadu042] (2019-09-06) - Tested on POL, not POM. # - Wine 4.12.1 -> 4.11 (because 4.12.1 not available on POM yet) # - d3dx9 update to d3dx9_43 + d3dcompiler_43 # - Add winhttp because several reports in Appdb.winehq.org recommend it. # - Standardize GAME_VMS. # - Add GPU Selection (if there are 2). # - Add riched30 (because errors found in the POL's installation log, Wine 4.11) # - Add msls31 (because riched30 added a crash because msls missing). # [Dadu042] (2020-03-19) # - Wine 4.11 (outdated) -> 4.21 # [Yaotl] (2020-07-16) # - Update Wine 4.21 -> 5.12 # - Language selection revised. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="5.12" GAME_VMS="256" # Minimum MB of VRAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" ####################################### # Setup GPU # ####################################### # Set Graphic Card (useful if laptop with dual GPU) POL_Wine_SetVideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS ####################################### # Misc. # ####################################### # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9_43 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_winhttp POL_Call POL_Install_riched30 POL_Call POL_Install_msls31 # Configuration Set_OS "win10" ################################################# # Set window the resolution to use for the game # ################################################# Set_Desktop "On" "1024" "768" ######################################################## # Push window resolution into the game's settings file # ######################################################## mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF ###################### # Language selection # ###################### if [ "$POL_LANG" = "fr" ]; then lang="fr-fr" elif [ "$POL_LANG" = "de" ]; then lang="de-de" else lang="en-us" fi ###################### # Install Method # ###################### POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" "/q" POL_Wine_WaitExit "$TITLE" ############################################ # Set customized settings for the Launcher # ############################################ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$lang" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" ###################### # Fix installation # ###################### # https://github.com/aljen/swtor_fix cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
jaspersedi | Monday 6 September 2021 at 1:01 |
jaspersedi
|
MessageHello everyone, I checked my System Preferences and my Mac System Preferences firewall is turned off, but from what I've read other firewall defenses are also built into the MacOS which can block connections (hence why Mac's System Preference firewall is turned off by default). I was wondering what else might be blocking the connection, and how to go about whitelisting those executables so the game can connect to the servers. [10/24/19 11:54:49] - Running wine-3.10-staging --version (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python) wine-3.10 (Staging) PlayOnMac logfile ------------------- Date: 10/24/19 11:54:49 Warning! PlayOnMac is using a modified wine version (3.10-staging). Do not file bugs, AppDB test reports, or ask for help on the WineHQ website for any applications or games that are run using this version. > PlayOnMac Version 4.3.4 > uname -a Darwin Dirks-MacBook-Pro.local 18.7.0 Darwin Kernel Version 18.7.0: Tue Aug 20 16:57:14 PDT 2019; root:xnu-4903.271.2~2/RELEASE_X86_64 x86_64 > lsb_release -a > wine --version wine-3.10 (Staging) > POL_WINEVERSION 3.10-staging > WINEPREFIX /Users/dirkjasperse/Library/PlayOnMac//wineprefix/SWTOR_Virtual_Drive > Distribution 10.14.7 (18.7.0) > glxinfo \| grep rendering > glxinfo \| grep renderer > OpenGL libs (Direct rendering testing) [10/24/19 11:56:36] - Running wine-3.10-staging cmd /c echo %ProgramFiles% (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[89387]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! C:\Program Files [10/24/19 11:57:04] - ----- Starting function POL_Install_d3dx9_36 ----- [10/24/19 11:57:35] - Running wine-3.10-staging regedit /Users/dirkjasperse/Library/PlayOnMac//tmp/override-dll.reg (Working directory : /Users/dirkjasperse/Library/PlayOnMac/ressources) [10/24/19 11:57:35] - Content of /Users/dirkjasperse/Library/PlayOnMac//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*d3dx9_36"="native, builtin" ----------- 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[89641]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [10/24/19 11:57:37] - ----- Ending function POL_Install_d3dx9_36 ----- wine: Unhandled page fault on read access to 0x217c7980 at address 0x6a11e71a (thread 0028), starting debugger... 0028:err:seh:start_debugger Couldn't start debugger ("winedbg --auto 33 64") (1115) Read the Wine Developers Guide on how to set up winedbg or another debugger [10/24/19 11:57:45] - ----- Starting function POL_Install_crypt32 ----- [10/24/19 11:57:46] - ----- Starting function POL_SP2_Extract ----- [10/24/19 11:59:23] - ----- Ending function POL_SP2_Extract ----- [10/24/19 11:59:23] - ----- Starting function POL_SP2_Extract ----- [10/24/19 11:59:25] - ----- Ending function POL_SP2_Extract ----- [10/24/19 11:59:25] - Running wine-3.10-staging regedit /Users/dirkjasperse/Library/PlayOnMac//tmp/override-dll.reg (Working directory : /Users/dirkjasperse/Library/PlayOnMac/tmp) [10/24/19 11:59:25] - Content of /Users/dirkjasperse/Library/PlayOnMac//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*crypt32.dll"="native, builtin" ----------- 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[90003]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [10/24/19 11:59:27] - ----- Ending function POL_Install_crypt32 ----- wine: Unhandled page fault on read access to 0x23fb3980 at address 0x6a31e71a (thread 0028), starting debugger... 0028:err:seh:start_debugger Couldn't start debugger ("winedbg --auto 33 76") (1115) Read the Wine Developers Guide on how to set up winedbg or another debugger [10/24/19 12:19:06] - Running wine-3.10-staging regedit /Users/dirkjasperse/Library/PlayOnMac//tmp/regkey.reg (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python) [10/24/19 12:19:06] - Content of /Users/dirkjasperse/Library/PlayOnMac//tmp/regkey.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\Direct3D] "VideoMemorySize"="1024" ----------- 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[90347]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [10/24/19 12:19:41] - Running wine-3.10-staging winecfg (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[90477]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! [10/24/19 12:20:39] - Running wine-3.10-staging /Users/dirkjasperse/Downloads/SWTOR_setup.exe (Working directory : /Users/dirkjasperse/Downloads) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[90605]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 0042:fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub 0043:fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub 0041:fixme:shell:InitNetworkAddressControl stub 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0041:err:richedit:ReadStyleSheet skipping optional destination 0044:fixme:gameux:GameExplorerImpl_VerifyAccess (0x1bc480, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\SWTOR_GDF.dll", 0x105f21c) 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"ReleaseDate" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Genres" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Ratings" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Version" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"WindowsSystemPerformanceRating" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Developers" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Publishers" in Game Definition File not yet supported 0053:fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"ExtendedProperties" in Game Definition File not yet supported 0044:fixme:hnetcfg:fw_manager_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented 0044:fixme:hnetcfg:fw_app_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented 0044:fixme:hnetcfg:fw_app_put_Name 0x121d868, L"Star Wars - The Old Republic" 0044:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x121d868, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\swtor\\retailclient\\swtor.exe" 0044:fixme:hnetcfg:fw_app_put_Scope 0x121d868, 0 0044:fixme:hnetcfg:fw_app_put_Enabled 0x121d868, -1 0044:fixme:hnetcfg:fw_policy_GetProfileByType 0x121d888, 0, 0x105ed50 0044:fixme:hnetcfg:fw_policy_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented 0044:fixme:msvcrt:__clean_type_info_names_internal (0xe543b0) stub 0044:fixme:hnetcfg:fw_app_put_Name 0x200988, L"Star Wars - The Old Republic" 0044:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x200988, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\swtor\\retailclient\\swtor.exe" 0044:fixme:hnetcfg:fw_app_put_Scope 0x200988, 0 0044:fixme:hnetcfg:fw_app_put_Enabled 0x200988, -1 0044:fixme:hnetcfg:fw_apps_Add 0x2009a8, 0x200988 0044:fixme:hnetcfg:fw_manager_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented 0044:fixme:hnetcfg:fw_app_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented 0044:fixme:hnetcfg:fw_app_put_Name 0x121c340, L"Star Wars - The Old Republic Updater" 0044:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x121c340, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe" 0044:fixme:hnetcfg:fw_app_put_Scope 0x121c340, 0 0044:fixme:hnetcfg:fw_app_put_Enabled 0x121c340, -1 0044:fixme:hnetcfg:fw_policy_GetProfileByType 0x121c418, 0, 0x105ed50 0044:fixme:hnetcfg:fw_policy_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented 0044:fixme:msvcrt:__clean_type_info_names_internal (0xe543b0) stub 0044:fixme:hnetcfg:fw_app_put_Name 0x121bcc8, L"Star Wars - The Old Republic" 0044:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x121bcc8, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe" 0044:fixme:hnetcfg:fw_app_put_Scope 0x121bcc8, 0 0044:fixme:hnetcfg:fw_app_put_Enabled 0x121bcc8, -1 0044:fixme:hnetcfg:fw_apps_Add 0x121bce8, 0x121bcc8 0044:fixme:hnetcfg:fw_manager_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented 0044:fixme:hnetcfg:fw_app_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented 0044:fixme:hnetcfg:fw_app_put_Name 0x162708, L"Star Wars - The Old Republic" 0044:fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x162708, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe" 0044:fixme:hnetcfg:fw_app_put_Scope 0x162708, 0 0044:fixme:hnetcfg:fw_app_put_Enabled 0x162708, -1 0044:fixme:hnetcfg:fw_policy_GetProfileByType 0x162728, 0, 0x105ed50 0044:fixme:hnetcfg:fw_policy_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented 0044:fixme:msvcrt:__clean_type_info_names_internal (0xe543b0) stub 0055:fixme:clusapi:GetNodeClusterState ((null),0x33eca4) stub! 0055:fixme:ntdll:server_ioctl_file Unsupported ioctl 70000 (device=7 access=0 func=0 method=0) 0055:fixme:ntdll:server_ioctl_file Unsupported ioctl 70000 (device=7 access=0 func=0 method=0) 0055:fixme:advapi:DecryptFileA ("c:\\839b81b0dd189776f2fcaaeb\\", 00000000): stub 0058:fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub 0058:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0058:fixme:advapi:GetWindowsAccountDomainSid (0x33f300 0x162424 0x33f318): semi-stub 0058:fixme:secur32:GetComputerObjectNameW NameFormat 7 not implemented 0058:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet 0059:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 3) 0059:fixme:msi:internal_ui_handler internal UI not implemented for message 0x0b000000 (UI level = 3) 005a:fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub wine: Unhandled page fault on read access to 0x258f0980 at address 0x6911e71a (thread 0028), starting debugger... 0028:err:seh:start_debugger Couldn't start debugger ("winedbg --auto 33 68") (1115) Read the Wine Developers Guide on how to set up winedbg or another debugger [10/24/19 12:23:00] - Running wine-3.10-staging /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic/launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[90756]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 003f:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0009:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0009:err:module:import_dll Library avutil-51.dll (which is needed by L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\avcodec-53.dll") not found 0009:fixme:d3d:wined3d_dxtn_init Wine cannot find the txc_dxtn library, DXTn software support unavailable. 0009:fixme:iphlpapi:NotifyAddrChange (Handle 0x33cc6c, overlapped 0xa3c048): stub 0009:fixme:winsock:WSALookupServiceBeginW (0x33cd18 0x00000ff0 0x33cd54) Stub! [1024/122302:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:module:load_builtin_dll failed to load .so lib for builtin L"winepulse.drv": dlopen(/Users/dirkjasperse/Library/PlayOnMac/wine/darwin-x86/3.10-staging/lib/wine/winepulse.drv.so, 258): Library not loaded: /opt/local/lib/pulseaudio/libpulsecommon-12.2.dylib Referenced from: /Users/dirkjasperse/Library/PlayOnMac//wine/darwin-x86/3. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0077:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0077:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 006a:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xa3c048): stub 008f:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 009b:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0098:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0098:err:module:import_dll Library avutil-51.dll (which is needed by L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\avcodec-53.dll") not found 0098:fixme:d3d:wined3d_dxtn_init Wine cannot find the txc_dxtn library, DXTn software support unavailable. 0098:fixme:iphlpapi:NotifyAddrChange (Handle 0x33cc6c, overlapped 0xa3c048): stub 0098:fixme:winsock:WSALookupServiceBeginW (0x33cd18 0x00000ff0 0x33cd54) Stub! 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 00d9:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot 00d9:fixme:toolhelp:Heap32ListFirst : stub 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:module:load_builtin_dll failed to load .so lib for builtin L"winepulse.drv": dlopen(/Users/dirkjasperse/Library/PlayOnMac/wine/darwin-x86/3.10-staging/lib/wine/winepulse.drv.so, 258): Library not loaded: /opt/local/lib/pulseaudio/libpulsecommon-12.2.dylib Referenced from: /Users/dirkjasperse/Library/PlayOnMac//wine/darwin-x86/3. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0098:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 00dc:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 00dc:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 00cc:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported 0098:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 00c3:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 00c3:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! wine: Unhandled page fault on read access to 0x20fc7980 at address 0x6981e71a (thread 0028), starting debugger... 0028:err:seh:start_debugger Couldn't start debugger ("winedbg --auto 33 64") (1115) Read the Wine Developers Guide on how to set up winedbg or another debugger [10/24/19 13:01:07] - Running wine-3.10-staging /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic/launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[91060]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 003f:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0009:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0009:err:module:import_dll Library avutil-51.dll (which is needed by L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\avcodec-53.dll") not found 0009:fixme:d3d:wined3d_dxtn_init Wine cannot find the txc_dxtn library, DXTn software support unavailable. 0009:fixme:iphlpapi:NotifyAddrChange (Handle 0x33cc6c, overlapped 0xa3c048): stub 0009:fixme:winsock:WSALookupServiceBeginW (0x33cd18 0x00000ff0 0x33cd54) Stub! [1024/130109:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 0075:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot 0075:fixme:toolhelp:Heap32ListFirst : stub 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:module:load_builtin_dll failed to load .so lib for builtin L"winepulse.drv": dlopen(/Users/dirkjasperse/Library/PlayOnMac/wine/darwin-x86/3.10-staging/lib/wine/winepulse.drv.so, 258): Library not loaded: /opt/local/lib/pulseaudio/libpulsecommon-12.2.dylib Referenced from: /Users/dirkjasperse/Library/PlayOnMac//wine/darwin-x86/3. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0078:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0078:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 006a:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0048:fixme:winsock:WSALookupServiceBeginW (0x1d3f94c 0x00000ff0 0x1d3f988) Stub! [1024/130439:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 0048:fixme:winsock:WSALookupServiceBeginW (0x1d3f94c 0x00000ff0 0x1d3f988) Stub! [1024/130439:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 00a3:fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub 00b5:fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub 00c9:fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub 00c9:fixme:service:SERV_QueryServiceObjectSecurity 0x162b68 4 0x33faac 0 0x33faa0 - semi-stub 00c9:fixme:service:SERV_QueryServiceObjectSecurity 0x162b68 4 0x162bb0 28 0x33faa0 - semi-stub 00c9:fixme:service:SetServiceObjectSecurity 0x162b68 4 0x33fa58 00d3:fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub 00dd:fixme:heap:RtlSetHeapInformation 0x0 1 0x0 0 stub 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xa3c048): stub wine: Unhandled page fault on read access to 0x217b3980 at address 0x6921e71a (thread 0028), starting debugger... 0028:err:seh:start_debugger Couldn't start debugger ("winedbg --auto 33 68") (1115) Read the Wine Developers Guide on how to set up winedbg or another debugger [10/24/19 13:09:14] - Running wine-3.10-staging /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic/launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[91230]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 003f:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0009:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 0009:err:module:import_dll Library avutil-51.dll (which is needed by L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\avcodec-53.dll") not found 0009:fixme:d3d:wined3d_dxtn_init Wine cannot find the txc_dxtn library, DXTn software support unavailable. 0009:fixme:iphlpapi:NotifyAddrChange (Handle 0x33cc6c, overlapped 0xa3c048): stub 0009:fixme:winsock:WSALookupServiceBeginW (0x33cd18 0x00000ff0 0x33cd54) Stub! [1024/130917:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0075:fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot 0075:fixme:toolhelp:Heap32ListFirst : stub 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:module:load_builtin_dll failed to load .so lib for builtin L"winepulse.drv": dlopen(/Users/dirkjasperse/Library/PlayOnMac/wine/darwin-x86/3.10-staging/lib/wine/winepulse.drv.so, 258): Library not loaded: /opt/local/lib/pulseaudio/libpulsecommon-12.2.dylib Referenced from: /Users/dirkjasperse/Library/PlayOnMac//wine/darwin-x86/3. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0078:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0078:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 006a:fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0113:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0009:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 013a:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0063:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0151:fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented 0028:err:hid_report:process_hid_report Device reports coming in too fast, last report not read yet! 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:err:d3d:wined3d_check_gl_call >>>>>>> GL_INVALID_ENUM (0x500) from extension detection @ directx.c / 4311. 0009:fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xa3c048): stub wine: Unhandled page fault on read access to 0x215b3980 at address 0x6931e71a (thread 0028), starting debugger... 0028:err:seh:start_debugger Couldn't start debugger ("winedbg --auto 33 68") (1115) Read the Wine Developers Guide on how to set up winedbg or another debugger [10/24/19 17:22:48] - Running wine-3.10-staging winepath -u C:\\users\\dirkjasperse\\Desktop (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c) 000b:fixme:winediag:start_process Wine Staging 3.10 is a testing version containing experimental patches. 000b:fixme:winediag:start_process Please mention your exact version when filing bug reports on winehq.org. dbus[31072]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! 002b:err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. 002b:fixme:dwmapi:DwmIsCompositionEnabled 0x3d13018 002b:fixme:winsock:set_dont_fragment IP_DONTFRAGMENT for IPv4 not supported in this platform 0045:fixme:iphlpapi:NotifyIpInterfaceChange (family 0, callback 0x80b608, context 0x3fbb848, init_notify 0, handle 0xcfcfce8): stub wine: configuration in '/Users/dirkjasperse/Library/PlayOnMac//wineprefix/SWTOR_Virtual_Drive' has been updated. /Users/dirkjasperse/Library/PlayOnMac//wineprefix/SWTOR_Virtual_Drive/dosdevices/c:/users/dirkjasperse/Desktop [10/24/19 17:24:02] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[31833]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! wine: configuration in '/Users/dirkjasperse/Library/PlayOnMac//wineprefix/SWTOR_Virtual_Drive' has been updated. [1024/172406:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/24/19 22:25:53] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[34206]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1024/222556:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 07:39:34] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[44329]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1030/073937:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 08:35:25] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1030/083526:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 09:31:01] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1030/093102:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 10:40:47] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[45110]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1030/104049:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 wine: Unhandled page fault on read access to 0x23da5980 at address 0x6879571a (thread 002a), starting debugger... [10/30/19 12:33:47] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[45447]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1030/123349:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 12:43:52] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1030/124352:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 14:52:00] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1030/145201:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 16:18:36] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[46478]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1030/161839:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 16:33:14] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[46668]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1030/163316:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 16:33:34] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [10/30/19 16:33:54] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [10/30/19 16:35:31] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[565]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1030/163534:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 17:42:24] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1030/174225:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [10/30/19 19:20:12] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1030/192013:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [11/05/19 21:55:17] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[13713]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1105/215520:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [11/05/19 22:18:56] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[13903]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1105/221859:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [11/05/19 22:19:15] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) wine: Unhandled page fault on read access to 0x23ff1980 at address 0x6879571a (thread 002a), starting debugger... [11/06/19 07:11:06] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[14386]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/071109:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 wine: Unhandled page fault on read access to 0x249a8980 at address 0x691a071a (thread 002a), starting debugger... [11/06/19 11:12:27] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[14833]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/111230:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 Exception: resolve: Unknown error Exception: resolve: Unknown error Exception: resolve: Unknown error wine: Unhandled page fault on read access to 0x23da7980 at address 0x687a071a (thread 002a), starting debugger... [11/06/19 11:14:03] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[14982]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/111405:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 wine: Unhandled page fault on read access to 0x245a7980 at address 0x6879571a (thread 002a), starting debugger... [11/06/19 12:13:51] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[15256]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/121353:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 wine: Unhandled page fault on read access to 0x257a8980 at address 0x6879571a (thread 002a), starting debugger... [11/06/19 15:21:24] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[15434]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/152128:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [11/06/19 15:24:36] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [1106/152437:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [11/06/19 16:26:19] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[15844]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/162622:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 wine: Unhandled page fault on read access to 0x23777980 at address 0x699a071a (thread 002b), starting debugger... [11/06/19 16:49:41] - Running wine-3.10-staging launcher.exe (Working directory : /Users/dirkjasperse/Library/PlayOnMac/wineprefix/SWTOR_Virtual_Drive/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) dbus[16114]: Dynamic session lookup supported but failed: launchd did not provide a socket path, verify that org.freedesktop.dbus-session.plist is loaded! [1106/164 Replies |
Varanops | Thursday 10 December 2020 at 12:13 |
Varanops
|
MessageHello everyone,
I've had some trouble running the bash script on Mac OS Catalina 10.15.7, on my 16" MacBook Pro, with AMD Radeon Pro 5300M, 2.6GHz 6cores Intel i7 (the base model). Every time I've tried, I've erased the existing disk. Then it says:
"macOS Catalina user: 32bits wine no longer available. We are going to use the system wine version instead"
And it starts updating Wine. After that, I choose the GPU (AMD 5300M|1002|7340 and 4096MB of VRAM), it installs vcrun2008 sp1 x86, DirectX 9 dlls, Star Wars: The Old Republic..., msls31. Then I choose "Download the program". A fast Windows window pops up, then disppears. Then a new window pops up, saying :
"The xml configuration seems to be corrupt." I click "OK" (no other option).
From the video recording that I took, it seems like it crashed while installing this: "C:\users\crossover\Temp\InstallSWTOR\Setup.exe"
Then it says :
"Error in POL_Shortcut
And I'm pretty sure I've installed everything to the default location (/Users/MyUserName), since I did not change any directory. So I cheked all the .xml files that I could find. There are 4 of them, appparently identical, but they are nearly 4,000 lines long and I don't know where to start.
Do you guys know what I should do next? Your help would be much appreciated.
Best regards,
Vara RepliesEdited by Varanops |
kristofm | Thursday 23 July 2020 at 19:30 |
kristofm
|
MessageDuring installation, it fails to download several files. Probably the links are outdated since it couldn't download either the swtor_setup.exe or swtor_fix.exe (and also some other windows related stuff) Replies |
Yaotl | Thursday 16 July 2020 at 1:38 |
Yaotl
|
InformationThis update has been approved by the team. Differences@@ -32,13 +32,16 @@ # - Add msls31 (because riched30 added a crash because msls missing). # [Dadu042] (2020-03-19) # - Wine 4.11 (outdated) -> 4.21 +# [Yaotl] (2020-07-16) +# - Update Wine 4.21 -> 5.12 +# - Language selection revised. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" -WINEVERSION="4.21" +WINEVERSION="5.12" GAME_VMS="256" # Minimum MB of VRAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" @@ -107,13 +110,12 @@ # Language selection # ###################### -POL_SetupWindow_menu "Choose a language:" "$TITLE" "English|Français|Deutsch" "|" -if [ "$APP_ANSWER" = "English" ]; then - lang="en-us" -elif [ "$APP_ANSWER" = "Français" ]; then +if [ "$POL_LANG" = "fr" ]; then lang="fr-fr" -elif [ "$APP_ANSWER" = "Deutsch" ]; then +elif [ "$POL_LANG" = "de" ]; then lang="de-de" +else + lang="en-us" fi ###################### New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 x64 # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 # CHANGELOG # [Quentin PÂRIS] (2014) # - First script wrote ? # [Yaotl] (2019-03-18) # - Upgrade wine to 4.3 # - swtor_fix.exe re-inserted (without it does not start properly) # - launcher-settings different changes and add language selection # - Add Set_Desktop (to avoid display problems in the system and game) # - Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) # - Add POL_RequiredVersion (mainly because of Wine 4.3) # - Standardize script (top infos). # [Yaotl] (2019-07-08) # - Upgrade wine 4.3 to 4.12.1 (many bug fixes) # - Small script changes # [Dadu042] (2019-09-06) - Tested on POL, not POM. # - Wine 4.12.1 -> 4.11 (because 4.12.1 not available on POM yet) # - d3dx9 update to d3dx9_43 + d3dcompiler_43 # - Add winhttp because several reports in Appdb.winehq.org recommend it. # - Standardize GAME_VMS. # - Add GPU Selection (if there are 2). # - Add riched30 (because errors found in the POL's installation log, Wine 4.11) # - Add msls31 (because riched30 added a crash because msls missing). # [Dadu042] (2020-03-19) # - Wine 4.11 (outdated) -> 4.21 # [Yaotl] (2020-07-16) # - Update Wine 4.21 -> 5.12 # - Language selection revised. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="5.12" GAME_VMS="256" # Minimum MB of VRAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" ####################################### # Setup GPU # ####################################### # Set Graphic Card (useful if laptop with dual GPU) POL_Wine_SetVideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS ####################################### # Misc. # ####################################### # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9_43 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_winhttp POL_Call POL_Install_riched30 POL_Call POL_Install_msls31 # Configuration Set_OS "win10" ################################################# # Set window the resolution to use for the game # ################################################# Set_Desktop "On" "1024" "768" ######################################################## # Push window resolution into the game's settings file # ######################################################## mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF ###################### # Language selection # ###################### if [ "$POL_LANG" = "fr" ]; then lang="fr-fr" elif [ "$POL_LANG" = "de" ]; then lang="de-de" else lang="en-us" fi ###################### # Install Method # ###################### POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" "/q" POL_Wine_WaitExit "$TITLE" ############################################ # Set customized settings for the Launcher # ############################################ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$lang" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" ###################### # Fix installation # ###################### # https://github.com/aljen/swtor_fix cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesEdited by Yaotl |
Keika | Wednesday 13 May 2020 at 14:06 |
Keika
|
MessageHello,
trying to install SWTOR. All was well until I hit this blank screen where I should be prompted to choose the language. Would you have any idea what I could do to select english?
Tried on Mac OS Mojave
Thanks in advance
RepliesEdited by Dadu042 |
Dadu042 | Thursday 19 March 2020 at 4:57 |
Dadu042
|
WarningThis update has not been approved yet by the team. Differences@@ -30,14 +30,16 @@ # - Add GPU Selection (if there are 2). # - Add riched30 (because errors found in the POL's installation log, Wine 4.11) # - Add msls31 (because riched30 added a crash because msls missing). +# [Dadu042] (2020-03-19) +# - Wine 4.11 (outdated) -> 4.21 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" -WINEVERSION="4.11" -GAME_VMS="256" # Minimum MB of RAM required on the GPU (according the 'readme.txt' after installation). +WINEVERSION="4.21" +GAME_VMS="256" # Minimum MB of VRAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 x64 # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 # CHANGELOG # [Quentin PÂRIS] (2014) # - First script wrote ? # [Yaotl] (2019-03-18) # - Upgrade wine to 4.3 # - swtor_fix.exe re-inserted (without it does not start properly) # - launcher-settings different changes and add language selection # - Add Set_Desktop (to avoid display problems in the system and game) # - Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) # - Add POL_RequiredVersion (mainly because of Wine 4.3) # - Standardize script (top infos). # [Yaotl] (2019-07-08) # - Upgrade wine 4.3 to 4.12.1 (many bug fixes) # - Small script changes # [Dadu042] (2019-09-06) - Tested on POL, not POM. # - Wine 4.12.1 -> 4.11 (because 4.12.1 not available on POM yet) # - d3dx9 update to d3dx9_43 + d3dcompiler_43 # - Add winhttp because several reports in Appdb.winehq.org recommend it. # - Standardize GAME_VMS. # - Add GPU Selection (if there are 2). # - Add riched30 (because errors found in the POL's installation log, Wine 4.11) # - Add msls31 (because riched30 added a crash because msls missing). # [Dadu042] (2020-03-19) # - Wine 4.11 (outdated) -> 4.21 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="4.21" GAME_VMS="256" # Minimum MB of VRAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" ####################################### # Setup GPU # ####################################### # Set Graphic Card (useful if laptop with dual GPU) POL_Wine_SetVideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS ####################################### # Misc. # ####################################### # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9_43 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_winhttp POL_Call POL_Install_riched30 POL_Call POL_Install_msls31 # Configuration Set_OS "win10" ################################################# # Set window the resolution to use for the game # ################################################# Set_Desktop "On" "1024" "768" ######################################################## # Push window resolution into the game's settings file # ######################################################## mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF ###################### # Language selection # ###################### POL_SetupWindow_menu "Choose a language:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "English" ]; then lang="en-us" elif [ "$APP_ANSWER" = "Français" ]; then lang="fr-fr" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="de-de" fi ###################### # Install Method # ###################### POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" "/q" POL_Wine_WaitExit "$TITLE" ############################################ # Set customized settings for the Launcher # ############################################ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$lang" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" ###################### # Fix installation # ###################### # https://github.com/aljen/swtor_fix cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
johnnymacc | Tuesday 26 November 2019 at 0:41 |
johnnymacc
|
MessageHi guys, it's been several days (10) that im trying many things to get the game work, i even try to get a windows 7 version but it doesnt want to work on my mac. reading you we can suppose that it's partly working. i've changed the wine version, try to reinstall again differently... i hope no. Sorry for my english. thanks RepliesThursday 23 January 2020 at 4:32
Friday 24 January 2020 at 1:46
|
JC_Eternium | Saturday 9 November 2019 at 3:36 |
JC_Eternium
|
MessageSo, when this program runs, it runs really well! I have no issues logging in! Replies |
M3r4d3 | Thursday 17 October 2019 at 21:36 |
M3r4d3
|
MessageCurrently giving an MD5 checksum error on Visual C++ - vcredist_x86.exe - and aborting. The adress the installer appeaars to be trying to use is 404ing. Is there no way to provide a path to your own local copies of these non-game files? After all, me downloading an installer for some background support package from Microsoft hardly seems much less secure than you doing it for me.
Replies |
Aital | Tuesday 17 September 2019 at 1:48 |
Aital
|
Messagehttps://www.youtube.com/watch?v=-VSExphdE9U This fixed the installer problem initializing infinitely for me on POL 4.3.4 and 64bit 4.15staging wine. RepliesThursday 19 March 2020 at 4:53
|
Dadu042 | Friday 6 September 2019 at 23:54 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageReleased mainly to make the script POM compatible again. Differences@@ -1,72 +1,96 @@ #!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog -# Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit +# Distribution used to test : Xubuntu 18.04 x64 # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 - + # CHANGELOG # [Quentin PÂRIS] (2014) -# First script wrote ? +# - First script wrote ? # [Yaotl] (2019-03-18) -# Upgrade wine to 4.3 -# swtor_fix.exe re-inserted (without it does not start properly) -# launcher-settings different changes and add language selection -# Add Set_Desktop (to avoid display problems in the system and game) -# Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) +# - Upgrade wine to 4.3 +# - swtor_fix.exe re-inserted (without it does not start properly) +# - launcher-settings different changes and add language selection +# - Add Set_Desktop (to avoid display problems in the system and game) +# - Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) -# Add POL_RequiredVersion (mainly because of Wine 4.3) -# Standardize script (top infos). +# - Add POL_RequiredVersion (mainly because of Wine 4.3) +# - Standardize script (top infos). # [Yaotl] (2019-07-08) -# Upgrade wine 4.3 to 4.12.1 (many bug fixes) -# small script changes +# - Upgrade wine 4.3 to 4.12.1 (many bug fixes) +# - Small script changes +# [Dadu042] (2019-09-06) - Tested on POL, not POM. +# - Wine 4.12.1 -> 4.11 (because 4.12.1 not available on POM yet) +# - d3dx9 update to d3dx9_43 + d3dcompiler_43 +# - Add winhttp because several reports in Appdb.winehq.org recommend it. +# - Standardize GAME_VMS. +# - Add GPU Selection (if there are 2). +# - Add riched30 (because errors found in the POL's installation log, Wine 4.11) +# - Add msls31 (because riched30 added a crash because msls missing). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" -WINEVERSION="4.12.1" +WINEVERSION="4.11" +GAME_VMS="256" # Minimum MB of RAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" - + POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." - + POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" +####################################### +# Setup GPU # +####################################### + +# Set Graphic Card (useful if laptop with dual GPU) +POL_Wine_SetVideoDriver + # Asking about memory size of graphic card -POL_SetupWindow_VMS ${GAME_VMS} #a minimum of 1GB recommended +POL_SetupWindow_VMS $GAME_VMS + +####################################### +# Misc. # +####################################### # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 -POL_Call POL_Install_d3dx9 - +POL_Call POL_Install_d3dx9_43 +POL_Call POL_Install_d3dcompiler_43 +POL_Call POL_Install_winhttp +POL_Call POL_Install_riched30 +POL_Call POL_Install_msls31 + # Configuration Set_OS "win10" - + ################################################# # Set window the resolution to use for the game # ################################################# - + Set_Desktop "On" "1024" "768" - + ######################################################## # Push window resolution into the game's settings file # ######################################################## - + mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" @@ -76,11 +100,11 @@ Width = 1024 Height = 768 EOF - + ###################### # Language selection # ###################### - + POL_SetupWindow_menu "Choose a language:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "English" ]; then lang="en-us" @@ -89,13 +113,14 @@ elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="de-de" fi - + ###################### # Install Method # ###################### -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" @@ -107,15 +132,15 @@ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi - + POL_Wine_WaitBefore "$TITLE" -POL_Wine --ignore-errors "$SETUP_EXE" +POL_Wine --ignore-errors "$SETUP_EXE" "/q" POL_Wine_WaitExit "$TITLE" - + ############################################ # Set customized settings for the Launcher # ############################################ - + cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" @@ -146,21 +171,23 @@ , "PickedEnvironments": "swtor" } EOF - + POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" - + ###################### # Fix installation # ###################### # https://github.com/aljen/swtor_fix - + cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" - + POL_Call POL_Message_OSXFlicker +POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" + # Cleanup POL_System_TmpDelete POL_SetupWindow_Close New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog # Distribution used to test : Xubuntu 18.04 x64 # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 # CHANGELOG # [Quentin PÂRIS] (2014) # - First script wrote ? # [Yaotl] (2019-03-18) # - Upgrade wine to 4.3 # - swtor_fix.exe re-inserted (without it does not start properly) # - launcher-settings different changes and add language selection # - Add Set_Desktop (to avoid display problems in the system and game) # - Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) # - Add POL_RequiredVersion (mainly because of Wine 4.3) # - Standardize script (top infos). # [Yaotl] (2019-07-08) # - Upgrade wine 4.3 to 4.12.1 (many bug fixes) # - Small script changes # [Dadu042] (2019-09-06) - Tested on POL, not POM. # - Wine 4.12.1 -> 4.11 (because 4.12.1 not available on POM yet) # - d3dx9 update to d3dx9_43 + d3dcompiler_43 # - Add winhttp because several reports in Appdb.winehq.org recommend it. # - Standardize GAME_VMS. # - Add GPU Selection (if there are 2). # - Add riched30 (because errors found in the POL's installation log, Wine 4.11) # - Add msls31 (because riched30 added a crash because msls missing). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="4.11" GAME_VMS="256" # Minimum MB of RAM required on the GPU (according the 'readme.txt' after installation). DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" ####################################### # Setup GPU # ####################################### # Set Graphic Card (useful if laptop with dual GPU) POL_Wine_SetVideoDriver # Asking about memory size of graphic card POL_SetupWindow_VMS $GAME_VMS ####################################### # Misc. # ####################################### # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9_43 POL_Call POL_Install_d3dcompiler_43 POL_Call POL_Install_winhttp POL_Call POL_Install_riched30 POL_Call POL_Install_msls31 # Configuration Set_OS "win10" ################################################# # Set window the resolution to use for the game # ################################################# Set_Desktop "On" "1024" "768" ######################################################## # Push window resolution into the game's settings file # ######################################################## mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF ###################### # Language selection # ###################### POL_SetupWindow_menu "Choose a language:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "English" ]; then lang="en-us" elif [ "$APP_ANSWER" = "Français" ]; then lang="fr-fr" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="de-de" fi ###################### # Install Method # ###################### POL_System_TmpCreate "$PREFIX" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" "/q" POL_Wine_WaitExit "$TITLE" ############################################ # Set customized settings for the Launcher # ############################################ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$lang" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" ###################### # Fix installation # ###################### # https://github.com/aljen/swtor_fix cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_SetupWindow_message "$(eval_gettext '\nInstallation is finished ! :)')" "$TITLE" # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Yaotl | Monday 8 July 2019 at 12:50 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,37 +1,43 @@ #!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog -# Distribution used to test : Xubuntu 19.04 64bits +# Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 - + # CHANGELOG # [Quentin PÂRIS] (2014) -# First script wrote ? -# [Yaolt] (2019-03-18) -# ? -# ... +# First script wrote ? +# [Yaotl] (2019-03-18) +# Upgrade wine to 4.3 +# swtor_fix.exe re-inserted (without it does not start properly) +# launcher-settings different changes and add language selection +# Add Set_Desktop (to avoid display problems in the system and game) +# Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) -# Add POL_RequiredVersion (mainly because of Wine 4.3) -# Standardize script (top infos). +# Add POL_RequiredVersion (mainly because of Wine 4.3) +# Standardize script (top infos). +# [Yaotl] (2019-07-08) +# Upgrade wine 4.3 to 4.12.1 (many bug fixes) +# small script changes [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" -WINEVERSION="4.3" +WINEVERSION="4.12.1" DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" - + POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." @@ -39,14 +45,16 @@ POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - -POL_SetupWindow_VMS ${GAME_VMS} -# See: http://www.swtor.com/info/faq - + +# Asking about memory size of graphic card +POL_SetupWindow_VMS ${GAME_VMS} #a minimum of 1GB recommended + +# Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 +# Configuration Set_OS "win10" ################################################# @@ -73,16 +81,13 @@ # Language selection # ###################### -POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" -if [ "$APP_ANSWER" = "Deutsch" ] -then - language="de-de" -elif [ "$APP_ANSWER" = "Français" ] -then - language="fr-fr" -elif [ "$APP_ANSWER" = "English" ] -then - language="en-us" +POL_SetupWindow_menu "Choose a language:" "$TITLE" "English|Français|Deutsch" "|" +if [ "$APP_ANSWER" = "English" ]; then + lang="en-us" +elif [ "$APP_ANSWER" = "Français" ]; then + lang="fr-fr" +elif [ "$APP_ANSWER" = "Deutsch" ]; then + lang="de-de" fi ###################### @@ -102,7 +107,7 @@ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi - + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" @@ -116,7 +121,7 @@ { "Login": "" , "LastProduct": "" , "downloadRate": "0" -, "language": "$language" +, "language": "$lang" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" @@ -141,24 +146,22 @@ , "PickedEnvironments": "swtor" } EOF - -POL_Shortcut "launcher.exe" "$TITLE" + +POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" ###################### -# Patch installation # +# Fix installation # ###################### +# https://github.com/aljen/swtor_fix -# POL_SetupWindow_menu "installing swtor_fix.exe"" "$TITLE" "Yes|No" "|" -# if [ "$APP_ANSWER" = "Yes" ] -# then cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" -# fi - + POL_Call POL_Message_OSXFlicker - + +# Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 # CHANGELOG # [Quentin PÂRIS] (2014) # First script wrote ? # [Yaotl] (2019-03-18) # Upgrade wine to 4.3 # swtor_fix.exe re-inserted (without it does not start properly) # launcher-settings different changes and add language selection # Add Set_Desktop (to avoid display problems in the system and game) # Add client_settings.ini modification (for a quick first start, without it can take up to 1 hour) # [Dadu042] (2019-05-23) # Add POL_RequiredVersion (mainly because of Wine 4.3) # Standardize script (top infos). # [Yaotl] (2019-07-08) # Upgrade wine 4.3 to 4.12.1 (many bug fixes) # small script changes [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="4.12.1" DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Asking about memory size of graphic card POL_SetupWindow_VMS ${GAME_VMS} #a minimum of 1GB recommended # Dependencies POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 # Configuration Set_OS "win10" ################################################# # Set window the resolution to use for the game # ################################################# Set_Desktop "On" "1024" "768" ######################################################## # Push window resolution into the game's settings file # ######################################################## mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF ###################### # Language selection # ###################### POL_SetupWindow_menu "Choose a language:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "English" ]; then lang="en-us" elif [ "$APP_ANSWER" = "Français" ]; then lang="fr-fr" elif [ "$APP_ANSWER" = "Deutsch" ]; then lang="de-de" fi ###################### # Install Method # ###################### POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" ############################################ # Set customized settings for the Launcher # ############################################ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$lang" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" "" "" "Game;" ###################### # Fix installation # ###################### # https://github.com/aljen/swtor_fix cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker # Cleanup POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesWednesday 10 July 2019 at 21:03
Edited by Yaotl |
Dadu042 | Friday 5 July 2019 at 12:39 |
Dadu042
|
WarningThis update has not been approved yet by the team. MessageSee changelog. Differences@@ -1,44 +1,64 @@ #!/bin/bash # Date : (2013-07-08 11-01) -# Last revision : (2019-03-18 00-07) -# Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit +# Last revision : see changelog +# Distribution used to test : Xubuntu 19.04 64bits +# Script licence : GPL3 # Author : Quentin PÂRIS -# Update (2019-03-18) by : Yaotl +# Program licence : ? # PlayOnLinux : 4.3.4 - + +# CHANGELOG +# [Quentin PÂRIS] (2014) +# First script wrote ? +# [Yaolt] (2019-03-18) +# ? +# ... +# [Dadu042] (2019-05-23) +# Add POL_RequiredVersion (mainly because of Wine 4.3) +# Standardize script (top infos). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="4.3" DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" - + POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" +POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." + POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - -# http://www.swtor.com/info/faq + POL_SetupWindow_VMS ${GAME_VMS} - +# See: http://www.swtor.com/info/faq + POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 Set_OS "win10" +################################################# +# Set window the resolution to use for the game # +################################################# + Set_Desktop "On" "1024" "768" +######################################################## +# Push window resolution into the game's settings file # +######################################################## + mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" @@ -49,7 +69,10 @@ Height = 768 EOF -# language selection +###################### +# Language selection # +###################### + POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "Deutsch" ] then @@ -62,6 +85,10 @@ language="en-us" fi +###################### +# Install Method # +###################### + POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then @@ -72,15 +99,18 @@ else # Asking for client exe cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi - + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" -# Update the launcher settings +############################################ +# Set customized settings for the Launcher # +############################################ + cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" @@ -111,21 +141,24 @@ , "PickedEnvironments": "swtor" } EOF - + POL_Shortcut "launcher.exe" "$TITLE" -#POL_SetupWindow_menu "installing swtor_fix.exe"" "$TITLE" "Yes|No" "|" -#if [ "$APP_ANSWER" = "Yes" ] -#then +###################### +# Patch installation # +###################### + +# POL_SetupWindow_menu "installing swtor_fix.exe"" "$TITLE" "Yes|No" "|" +# if [ "$APP_ANSWER" = "Yes" ] +# then cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" -#fi - +# fi + POL_Call POL_Message_OSXFlicker - + POL_System_TmpDelete - POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : see changelog # Distribution used to test : Xubuntu 19.04 64bits # Script licence : GPL3 # Author : Quentin PÂRIS # Program licence : ? # PlayOnLinux : 4.3.4 # CHANGELOG # [Quentin PÂRIS] (2014) # First script wrote ? # [Yaolt] (2019-03-18) # ? # ... # [Dadu042] (2019-05-23) # Add POL_RequiredVersion (mainly because of Wine 4.3) # Standardize script (top infos). [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="4.3" DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_RequiredVersion 4.3.4 || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION\nPlease update." POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" POL_SetupWindow_VMS ${GAME_VMS} # See: http://www.swtor.com/info/faq POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 Set_OS "win10" ################################################# # Set window the resolution to use for the game # ################################################# Set_Desktop "On" "1024" "768" ######################################################## # Push window resolution into the game's settings file # ######################################################## mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF ###################### # Language selection # ###################### POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "Deutsch" ] then language="de-de" elif [ "$APP_ANSWER" = "Français" ] then language="fr-fr" elif [ "$APP_ANSWER" = "English" ] then language="en-us" fi ###################### # Install Method # ###################### POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" ############################################ # Set customized settings for the Launcher # ############################################ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$language" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" ###################### # Patch installation # ###################### # POL_SetupWindow_menu "installing swtor_fix.exe"" "$TITLE" "Yes|No" "|" # if [ "$APP_ANSWER" = "Yes" ] # then cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" # fi POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
ummetal | Friday 5 July 2019 at 9:38 |
ummetal
|
MessageMay I know how to resolve the vcrun2008 problem? I use the most updated script to install, but still getting these from my debugging console and stuck there: 07/05/19 15:32:32 - [POL_Download_Resource] Message: Downloading resource http://download.microsoft.com/download/d/d/9/dd9a82d0-52ef-40db-8dab-795376989c03/vcredist_x86.exe 07/05/19 15:32:32 - [POL_Download_Resource] Message: Resource already present 07/05/19 15:32:32 - [POL_Wine] Message: Running wine-4.3 start /unix vcredist_x86.exe /q (Working directory : /Users/metal/Library/PlayOnMac/ressources/vcrun2008) 07/05/19 15:32:34 - [POL_Wine] Message: Wine return: 0 0025:fixme:clusapi:GetNodeClusterState ((null),0x32ecb4) stub! 0025:fixme:advapi:DecryptFileA ("c:\\470ab5a690f6603efcc6a3fb1fc26c3e\\", 00000000): stub RepliesFriday 5 July 2019 at 9:40
|
Yaotl | Monday 18 March 2019 at 0:16 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,73 +1,131 @@ #!/bin/bash # Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) -# Wine version used : 1.7.21-swotor -# Distribution used to test : 1.7.21-swotor +# Last revision : (2019-03-18 00-07) +# Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Author : Quentin PÂRIS - - +# Update (2019-03-18) by : Yaotl +# PlayOnLinux : 4.3.4 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" - +WINEVERSION="4.3" +DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" +MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" - -POL_System_TmpCreate "$PREFIX" -if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Downloading client +POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" - cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" - SETUP_EXE="$PWD/SWTOR_setup.exe" -else - # Asking for client exe - cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SETUP_EXE="$APP_ANSWER" -fi +POL_System_SetArch "x86" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" # http://www.swtor.com/info/faq -POL_SetupWindow_VMS "256" +POL_SetupWindow_VMS ${GAME_VMS} -POL_Call POL_Install_msxml3 -POL_Call POL_Install_msls31 -POL_Call POL_Install_winhttp +POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 +Set_OS "win10" + +Set_Desktop "On" "1024" "768" + +mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" +cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" +cat << EOF > "client_settings.ini" +[Renderer] +NativeWidth = 1024 +NativeHeight = 768 +Width = 1024 +Height = 768 +EOF + +# language selection +POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" +if [ "$APP_ANSWER" = "Deutsch" ] +then + language="de-de" +elif [ "$APP_ANSWER" = "Français" ] +then + language="fr-fr" +elif [ "$APP_ANSWER" = "English" ] +then + language="en-us" +fi + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +POL_System_TmpCreate "$PREFIX" +if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then + # Downloading client + cd "$POL_System_TmpDir" + POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + SETUP_EXE="$PWD/SWTOR_setup.exe" +else + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" +fi + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings -#POL_LoadVar_PROGRAMFILES -#cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" - cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" -{"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} +{ "Login": "" +, "LastProduct": "" +, "downloadRate": "0" +, "language": "$language" +, "TestServerAccess": "No" +, "SpecHash": "" +, "AutoClose": "NONE" +, "KillKillProc": "false" +, "LastMode": "PROD" +, "PatchingMode": "{ \"swtor\": \"SSN\" }" +, "bitraider_download_complete": { } +, "log_levels": "INFO,SSNFO,ERROR" +, "bitraider_disable": true +, "DevLogin": "" +, "EnableAutoEnvironment": "false" +, "LastEnvironment": "" +, "loglevels": "INFO,SSNFO,ERROR" +, "P2PEnabled": "false" +, "enableRateLimit": "false" +, "uploadRate": "0" +, "InternalLaunchpad": "null" +, "InternalGamepad": "null" +, "ExternalLaunchpad": "null" +, "ExternalGamepad": "null" +, "HardPatcherMode": "PROD" +, "PickedEnvironments": "swtor" +} EOF +POL_Shortcut "launcher.exe" "$TITLE" + +#POL_SetupWindow_menu "installing swtor_fix.exe"" "$TITLE" "Yes|No" "|" +#if [ "$APP_ANSWER" = "Yes" ] +#then cd "$WINEPREFIX/drive_c/" -POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" +POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" -POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" +#fi POL_Call POL_Message_OSXFlicker POL_System_TmpDelete - + POL_SetupWindow_Close exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2019-03-18 00-07) # Distribution used to test : Linux Mint 19.1 Cinnamon - 64-bit # Author : Quentin PÂRIS # Update (2019-03-18) by : Yaotl # PlayOnLinux : 4.3.4 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="4.3" DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "https://www.swtor.com/" "Quentin PÂRIS" "$PREFIX" POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # http://www.swtor.com/info/faq POL_SetupWindow_VMS ${GAME_VMS} POL_Call POL_Install_corefonts POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 Set_OS "win10" Set_Desktop "On" "1024" "768" mkdir -p "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cd "$WINEPREFIX/drive_c/users/$USER/Local Settings/Application Data/SWTOR/swtor/settings" cat << EOF > "client_settings.ini" [Renderer] NativeWidth = 1024 NativeHeight = 768 Width = 1024 Height = 768 EOF # language selection POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "Deutsch" ] then language="de-de" elif [ "$APP_ANSWER" = "Français" ] then language="fr-fr" elif [ "$APP_ANSWER" = "English" ] then language="en-us" fi POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$language" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF POL_Shortcut "launcher.exe" "$TITLE" #POL_SetupWindow_menu "installing swtor_fix.exe"" "$TITLE" "Yes|No" "|" #if [ "$APP_ANSWER" = "Yes" ] #then cd "$WINEPREFIX/drive_c/" POL_Download "https://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" #fi POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Yaotl | Thursday 14 June 2018 at 9:47 |
Yaotl
|
WarningThis update has not been approved yet by the team. Differences@@ -1,66 +1,110 @@ #!/bin/bash # Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) -# Wine version used : 1.7.21-swotor -# Distribution used to test : 1.7.21-swotor -# Author : Quentin PÂRIS - - +# Last revision : (2018-06-14) +# Author : Yaotl + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" - +WINEVERSION="3.10" +EDITOR="LucasArts & Bioware" +GAME_URL="http://www.swtor.com/" +AUTHOR="Yaotl" +Launcher_DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" +Launcher_MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" +swtor_fix_DOWNLOAD_URL="https://repository.playonlinux.com/divers/swtor_fix.exe" +swtor_fix_MD5_CHECKSUM="b3b1edcbee4e130760ebd2e1139cc764" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" - -POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" - -POL_System_TmpCreate "$PREFIX" -if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then - # Downloading client +#POL_SetupWindow_free_presentation "$TITLE" "Welcome to $PREFIX installation wizard." +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" - cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" - SETUP_EXE="$PWD/SWTOR_setup.exe" -else - # Asking for client exe - cd "$HOME" - POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" - SETUP_EXE="$APP_ANSWER" -fi +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" +POL_Call POL_Install_corefonts POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 -POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 + +POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" +if [ "$APP_ANSWER" = "Deutsch" ] +then + launcher_language="de-de" +elif [ "$APP_ANSWER" = "Français" ] +then + launcher_language="fr-fr" +elif [ "$APP_ANSWER" = "English" ] +then + launcher_language="en-us" +fi + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +POL_System_TmpCreate "$PREFIX" +if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then + # Downloading client + + cd "$POL_System_TmpDir" + POL_Download "$Launcher_DOWNLOAD_URL" "$Launcher_MD5_CHECKSUM" + SETUP_EXE="$PWD/SWTOR_setup.exe" +else + # Asking for client exe + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + SETUP_EXE="$APP_ANSWER" +fi + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings -#POL_LoadVar_PROGRAMFILES -#cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" -{"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} +{ "Login": "" +, "LastProduct": "" +, "downloadRate": "0" +, "language": "$launcher_language" +, "TestServerAccess": "No" +, "SpecHash": "" +, "AutoClose": "NONE" +, "KillKillProc": "false" +, "LastMode": "PROD" +, "PatchingMode": "{ \"swtor\": \"SSN\" }" +, "bitraider_download_complete": { } +, "log_levels": "INFO,SSNFO,ERROR" +, "bitraider_disable": true +, "DevLogin": "" +, "EnableAutoEnvironment": "false" +, "LastEnvironment": "" +, "loglevels": "INFO,SSNFO,ERROR" +, "P2PEnabled": "false" +, "enableRateLimit": "false" +, "uploadRate": "0" +, "InternalLaunchpad": "null" +, "InternalGamepad": "null" +, "ExternalLaunchpad": "null" +, "ExternalGamepad": "null" +, "HardPatcherMode": "PROD" +, "PickedEnvironments": "swtor" +} EOF cd "$WINEPREFIX/drive_c/" -POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" +POL_Download "$swtor_fix_DOWNLOAD_URL" "$swtor_fix_MD5_CHECKSUM" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" @@ -68,6 +112,6 @@ POL_Call POL_Message_OSXFlicker POL_System_TmpDelete - + POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit \ No newline at end of file New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2018-06-14) # Author : Yaotl [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" WINEVERSION="3.10" EDITOR="LucasArts & Bioware" GAME_URL="http://www.swtor.com/" AUTHOR="Yaotl" Launcher_DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" Launcher_MD5_CHECKSUM="e706b4b4b9618b0eee5e1917da6fcf4e" swtor_fix_DOWNLOAD_URL="https://repository.playonlinux.com/divers/swtor_fix.exe" swtor_fix_MD5_CHECKSUM="b3b1edcbee4e130760ebd2e1139cc764" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init #POL_SetupWindow_free_presentation "$TITLE" "Welcome to $PREFIX installation wizard." POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_corefonts POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_SetupWindow_menu "Select a language for the launcher:" "$TITLE" "English|Français|Deutsch" "|" if [ "$APP_ANSWER" = "Deutsch" ] then launcher_language="de-de" elif [ "$APP_ANSWER" = "Français" ] then launcher_language="fr-fr" elif [ "$APP_ANSWER" = "English" ] then launcher_language="en-us" fi POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "$Launcher_DOWNLOAD_URL" "$Launcher_MD5_CHECKSUM" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "$launcher_language" , "TestServerAccess": "No" , "SpecHash": "" , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" } EOF cd "$WINEPREFIX/drive_c/" POL_Download "$swtor_fix_DOWNLOAD_URL" "$swtor_fix_MD5_CHECKSUM" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit Replies |
jayquon108 | Thursday 22 February 2018 at 0:09 |
jayquon108
|
MessageThe game freezes when I travel to Alderaan and Hoth (the only two that I have come across so far). The game will let you travel to those planets, but when it loads the planets, it gets hung up.
Are there any fixes for this? RepliesSaturday 24 March 2018 at 5:19
|
artyurad | Wednesday 21 February 2018 at 22:58 |
artyurad
|
MessageError with creating driver WineBus. Fedora 26, Wine 2.21 stagging. Replies |
morgul | Wednesday 31 January 2018 at 16:56 |
morgul
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/bin/bash # Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) -# Wine version used : 1.7.21-swotor -# Distribution used to test : 1.7.21-swotor -# Author : Quentin PÂRIS +# Last revision : (2018-01-31) +# Wine version used : 2.21-staging +# Distribution used to test : macOS 10.13.2 +# Author : Morgul [ "$PLAYONLINUX" = "" ] && exit 0 @@ -16,10 +16,10 @@ POL_SetupWindow_SetID 2135 POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" +POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" @@ -27,8 +27,8 @@ if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client - cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" + cd "$POL_System_TmpDir" + POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe @@ -56,14 +56,37 @@ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" -{"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} +{{ "Login": "" +, "LastProduct": "" +, "downloadRate": "0" +, "language": "en-us" +, "TestServerAccess": "No" +, "SpecHash": "2780273865.3575468912,2913094160.2293818522,1864792078.621590208," +, "AutoClose": "NONE" +, "KillKillProc": "false" +, "LastMode": "PROD" +, "PatchingMode": "{ \"swtor\": \"SSN\" }" +, "bitraider_download_complete": { } +, "log_levels": "INFO,SSNFO,ERROR" +, "bitraider_disable": true +, "DevLogin": "" +, "EnableAutoEnvironment": "false" +, "LastEnvironment": "" +, "loglevels": "INFO,SSNFO,ERROR" +, "P2PEnabled": "false" +, "enableRateLimit": "false" +, "uploadRate": "0" +, "InternalLaunchpad": "null" +, "InternalGamepad": "null" +, "ExternalLaunchpad": "null" +, "ExternalGamepad": "null" +, "HardPatcherMode": "PROD" +, "PickedEnvironments": "swtor" +}} EOF cd "$WINEPREFIX/drive_c/" -POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" -mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" -POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2018-01-31) # Wine version used : 2.21-staging # Distribution used to test : macOS 10.13.2 # Author : Morgul [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {{ "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "en-us" , "TestServerAccess": "No" , "SpecHash": "2780273865.3575468912,2913094160.2293818522,1864792078.621590208," , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" }} EOF cd "$WINEPREFIX/drive_c/" POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesWednesday 31 January 2018 at 17:06
Wednesday 31 January 2018 at 17:14
Wednesday 31 January 2018 at 17:16
Thursday 1 February 2018 at 14:47
Tuesday 20 February 2018 at 7:59
|
morgul | Wednesday 31 January 2018 at 5:22 |
morgul
|
WarningThis update has not been approved yet by the team. Differences@@ -1,9 +1,9 @@ #!/bin/bash # Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) -# Wine version used : 1.7.21-swotor -# Distribution used to test : 1.7.21-swotor -# Author : Quentin PÂRIS +# Last revision : (2018-01-30) +# Wine version used : 2.21-staging +# Distribution used to test : macOS 10.13.2 +# Author : Morgul [ "$PLAYONLINUX" = "" ] && exit 0 @@ -16,10 +16,10 @@ POL_SetupWindow_SetID 2135 POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" +POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" @@ -27,8 +27,8 @@ if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client - cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" + cd "$POL_System_TmpDir" + POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe @@ -56,14 +56,38 @@ cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" -{"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} +{{ "Login": "" +, "LastProduct": "" +, "downloadRate": "0" +, "language": "en-us" +, "TestServerAccess": "No" +, "SpecHash": "123.123," +, "AutoClose": "NONE" +, "KillKillProc": "true" +, "LastMode": "PROD" +, "PatchingMode": "{ \"swtor\": \"SSN\" }" +, "bitraider_download_complete": { } +, "log_levels": "INFO,SSNFO,ERROR" +, "bitraider_disable": true +, "DevLogin": "" +, "EnableAutoEnvironment\u201d:\u201dtrue\u201d,\u201dLastEnvironment": "" +, "LastEnvironment": "" +, "loglevels": "INFO,SSNFO,ERROR" +, "P2PEnabled\u201d:\u201dtrue\u201d,\u201denableRateLimit\u201d:\u201dtrue\u201d,\u201duploadRate": "0" +, "enableRateLimit": "false" +, "uploadRate": "0" +, "KillKillProc\u201d:\u201dtrue\u201d,\u201dInternalLaunchpad": "null" +, "InternalLaunchpad": "null" +, "InternalGamepad": "null" +, "ExternalLaunchpad": "null" +, "ExternalGamepad": "null" +, "HardPatcherMode": "PROD" +, "PickedEnvironments": "swtor" +}} EOF cd "$WINEPREFIX/drive_c/" -POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" -mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" -POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2018-01-30) # Wine version used : 2.21-staging # Distribution used to test : macOS 10.13.2 # Author : Morgul [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {{ "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "en-us" , "TestServerAccess": "No" , "SpecHash": "123.123," , "AutoClose": "NONE" , "KillKillProc": "true" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment\u201d:\u201dtrue\u201d,\u201dLastEnvironment": "" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled\u201d:\u201dtrue\u201d,\u201denableRateLimit\u201d:\u201dtrue\u201d,\u201duploadRate": "0" , "enableRateLimit": "false" , "uploadRate": "0" , "KillKillProc\u201d:\u201dtrue\u201d,\u201dInternalLaunchpad": "null" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" }} EOF cd "$WINEPREFIX/drive_c/" POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Nemazu | Sunday 28 January 2018 at 14:45 |
Nemazu
|
WarningThis update has not been approved yet by the team. Differences@@ -16,10 +16,10 @@ POL_SetupWindow_SetID 2135 POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Nemazu" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" +POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" @@ -28,7 +28,7 @@ # Downloading client cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" + POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Nemazu" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Nemazu | Sunday 28 January 2018 at 14:42 |
Nemazu
|
WarningThis update has not been approved yet by the team. Differences@@ -16,7 +16,7 @@ POL_SetupWindow_SetID 2135 POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Nemazu" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.53" @@ -28,7 +28,7 @@ # Downloading client cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" + POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Nemazu" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.53" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "http://patchnotes.swtor.com/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Nemazu | Sunday 28 January 2018 at 13:02 |
Nemazu
|
WarningThis update has not been approved yet by the team. Differences@@ -16,10 +16,10 @@ POL_SetupWindow_SetID 2135 POL_Debug_Init -POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" +POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Nemazu" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" +POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Nemazu" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.21-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
arnosloma | Sunday 19 November 2017 at 23:43 |
arnosloma
|
Message"incoherences des fichiers" "Error in POL_Download MD5 sum mismatch ! (1 attempt)"
Bonjour j'ai un probleme d'installation pour cette application. Impossible de la lancer. Merci d'avance
RepliesMonday 20 November 2017 at 0:04
|
ahjolinna | Saturday 21 October 2017 at 19:35 |
ahjolinna
|
WarningThis update has not been approved yet by the team. Messagethis version should ...hopefully work. Differences@@ -1,34 +1,35 @@ #!/bin/bash -# Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) -# Wine version used : 1.7.21-swotor -# Distribution used to test : 1.7.21-swotor -# Author : Quentin PÂRIS +# Date : (2017-10-21) +# Last revision : (2017-10-21) +# Wine version used : 2.18-staging +# Distribution used to test : Arch -linux +#!/bin/bash + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" - -POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +POL_Wine_PrefixCreate "2.18-staging" +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client - + cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" + POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe @@ -36,38 +37,52 @@ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi - + # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" - -POL_Call POL_Install_msxml3 -POL_Call POL_Install_msls31 -POL_Call POL_Install_winhttp -POL_Call POL_Install_vcrun2008 -POL_Call POL_Install_d3dx9 - + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" - -# Update the launcher settings -#POL_LoadVar_PROGRAMFILES -#cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" - + cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" -{"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} +{{ "Login": "" +, "LastProduct": "" +, "downloadRate": "0" +, "language": "en-us" +, "TestServerAccess": "No" +, "SpecHash": "123.123," +, "AutoClose": "NONE" +, "KillKillProc": "true" +, "LastMode": "PROD" +, "PatchingMode": "{ \"swtor\": \"SSN\" }" +, "bitraider_download_complete": { } +, "log_levels": "INFO,SSNFO,ERROR" +, "bitraider_disable": true +, "DevLogin": "" +, "EnableAutoEnvironment\u201d:\u201dtrue\u201d,\u201dLastEnvironment": "" +, "LastEnvironment": "" +, "loglevels": "INFO,SSNFO,ERROR" +, "P2PEnabled\u201d:\u201dtrue\u201d,\u201denableRateLimit\u201d:\u201dtrue\u201d,\u201duploadRate": "0" +, "enableRateLimit": "false" +, "uploadRate": "0" +, "KillKillProc\u201d:\u201dtrue\u201d,\u201dInternalLaunchpad": "null" +, "InternalLaunchpad": "null" +, "InternalGamepad": "null" +, "ExternalLaunchpad": "null" +, "ExternalGamepad": "null" +, "HardPatcherMode": "PROD" +, "PickedEnvironments": "swtor" +}} EOF - + cd "$WINEPREFIX/drive_c/" -POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" -mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" -POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" - + POL_Call POL_Message_OSXFlicker - + POL_System_TmpDelete - + POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2017-10-21) # Last revision : (2017-10-21) # Wine version used : 2.18-staging # Distribution used to test : Arch -linux #!/bin/bash [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.18-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {{ "Login": "" , "LastProduct": "" , "downloadRate": "0" , "language": "en-us" , "TestServerAccess": "No" , "SpecHash": "123.123," , "AutoClose": "NONE" , "KillKillProc": "true" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment\u201d:\u201dtrue\u201d,\u201dLastEnvironment": "" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled\u201d:\u201dtrue\u201d,\u201denableRateLimit\u201d:\u201dtrue\u201d,\u201duploadRate": "0" , "enableRateLimit": "false" , "uploadRate": "0" , "KillKillProc\u201d:\u201dtrue\u201d,\u201dInternalLaunchpad": "null" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "PickedEnvironments": "swtor" }} EOF cd "$WINEPREFIX/drive_c/" POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesFriday 17 November 2017 at 5:02
Friday 17 November 2017 at 5:02
Friday 17 November 2017 at 5:03
Friday 22 December 2017 at 5:32
|
OkiFedora | Tuesday 5 September 2017 at 22:52 |
OkiFedora
|
MessageI'm new to PlayOnMac. Downloaded and installed SWTOR. Had problems with it at first, then I read about changing to Wine 2.14 Staging. Once I did that, the SWTOR installer came up and started to download the game. Problem is, it's downloading at an average of 200KB/s. Is that a problem with the launcher or with some setting with PlayOnMac that is affecting the internet connection speed? I run SpeedTest frequently and normally get 150Mbps or better download speeds. Any thoughts? Replies |
Chameleon444 | Wednesday 30 August 2017 at 18:45 |
Chameleon444
|
WarningThis update has not been approved yet by the team. MessageMovies don't work in repaired script. Differences@@ -1,34 +1,34 @@ #!/bin/bash # Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) -# Wine version used : 1.7.21-swotor -# Distribution used to test : 1.7.21-swotor -# Author : Quentin PÂRIS - - +# Last revision : (2017-08-27 16-10) +# Wine version used : 2.14-staging-swotor +# Distribution used to test : 2.14-staging-swotor +# Author : Quentin PÂRIS, Chameleon444 + + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.53" - +POL_Wine_PrefixCreate "2.14-staging" + POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" - + POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client - + cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" + POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe @@ -36,38 +36,51 @@ POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi - + # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" - -POL_Call POL_Install_msxml3 -POL_Call POL_Install_msls31 -POL_Call POL_Install_winhttp -POL_Call POL_Install_vcrun2008 -POL_Call POL_Install_d3dx9 - + POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" -# Update the launcher settings -#POL_LoadVar_PROGRAMFILES -#cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" - cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" -{"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} +{ "LastProduct": "" +, "downloadRate": "0" +, "language": "en-us" +, "TestServerAccess": "No" +, "SpecHash": "4254067197.1537030376," +, "AutoClose": "NONE" +, "KillKillProc": "false" +, "LastMode": "PROD" +, "PatchingMode": "{ \"swtor\": \"SSN\" }" +, "bitraider_download_complete": { } +, "log_levels": "INFO,SSNFO,ERROR" +, "bitraider_disable": true +, "DevLogin": "" +, "EnableAutoEnvironment": "false" +, "LastEnvironment": "" +, "loglevels": "INFO,SSNFO,ERROR" +, "P2PEnabled": "false" +, "enableRateLimit": "false" +, "uploadRate": "0" +, "InternalLaunchpad": "null" +, "InternalGamepad": "null" +, "ExternalLaunchpad": "null" +, "ExternalGamepad": "null" +, "HardPatcherMode": "PROD" +, "skip_self_patch": true +, "PickedEnvironments": "swtor" +} EOF cd "$WINEPREFIX/drive_c/" -POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" -mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" -POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" - + POL_Call POL_Message_OSXFlicker - -POL_System_TmpDelete +POL_System_TmpDelete + POL_SetupWindow_Close -exit 0 \ No newline at end of file +exit 0 New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2017-08-27 16-10) # Wine version used : 2.14-staging-swotor # Distribution used to test : 2.14-staging-swotor # Author : Quentin PÂRIS, Chameleon444 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "2.14-staging" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "e706b4b4b9618b0eee5e1917da6fcf4e" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" { "LastProduct": "" , "downloadRate": "0" , "language": "en-us" , "TestServerAccess": "No" , "SpecHash": "4254067197.1537030376," , "AutoClose": "NONE" , "KillKillProc": "false" , "LastMode": "PROD" , "PatchingMode": "{ \"swtor\": \"SSN\" }" , "bitraider_download_complete": { } , "log_levels": "INFO,SSNFO,ERROR" , "bitraider_disable": true , "DevLogin": "" , "EnableAutoEnvironment": "false" , "LastEnvironment": "" , "loglevels": "INFO,SSNFO,ERROR" , "P2PEnabled": "false" , "enableRateLimit": "false" , "uploadRate": "0" , "InternalLaunchpad": "null" , "InternalGamepad": "null" , "ExternalLaunchpad": "null" , "ExternalGamepad": "null" , "HardPatcherMode": "PROD" , "skip_self_patch": true , "PickedEnvironments": "swtor" } EOF cd "$WINEPREFIX/drive_c/" POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesFriday 1 September 2017 at 0:33
Friday 17 November 2017 at 6:32
|
Shakuniboss | Sunday 27 August 2017 at 16:07 |
Shakuniboss
|
|
gwynplaine | Saturday 26 August 2017 at 9:54 |
gwynplaine
|
MessageCORRECTION! Je reviens sur mon poste ou j'ai marqué que le jeu ne fonctionnais pas avec wine 2.14; apres avoir verifier, j'ai installer la version 2.14 staging qui fais fonctionner le jeu; mais j'ai attendu d'en etre sur pour poster ici, ce message : IL faut modifier la version wine (configurer puis dans l'onglet général) pour la version 2.14 staging qui prend bien en charge les certificat sha 256. Le jeu fonctionne mais swtor fix plante au demarrage, ce qui n'empeche pas le jeu de se lancer et qu'on puisse jouer. pour plus de précision sur l'installation et si vous avez besoin, je ferai un petit tuto. Traduction en anglais CORRECTION!
RepliesSaturday 26 August 2017 at 16:30
Saturday 26 August 2017 at 17:11
Saturday 26 August 2017 at 17:11
Sunday 27 August 2017 at 3:05
Monday 28 August 2017 at 8:29
Monday 28 August 2017 at 10:13
Monday 28 August 2017 at 14:26
|
gwynplaine | Friday 25 August 2017 at 15:02 |
gwynplaine
|
Messageavec la mise a jour 5.4, le jeu n'est pas compatible la version 2.14 de wine ne résoud pas le probleme d'erreur d'authentification du certificat
comme il est indispensable d'installer ce patch, il n'est plus possible de jouer, tant que le probleme de certificat sha 256, n'est pas résolu.
With the update 5.4, the game is not compatible
Wine version 2.14 does not solve the certificate authentication error problem
As it is necessary to install this patch, it is no longer possible to play, as long as the problem
Certificate sha 256, is not resolved.
Replies |
incomingfire | Tuesday 22 August 2017 at 23:51 |
incomingfire
|
MessageI got this working but it took a bit of futzing. Anytime I would try and run it above anything other than Low graphics settings the cut scenes when creating a new character would freeze. First, I changed the Offscreen rendering mode (highlight swtor -> click the configure cog -> go to the display tab) to "pbuffer". Next, I upped the video memory size to 1024. That last part will depend on how much ram your gfx card has I'm sure. Replies |
American_Desi | Sunday 20 August 2017 at 6:03 |
American_Desi
|
MessageWhen I tried installing the program via the PlayOnMac application, it kept giving me error messages about a file server mismatch or some such thing. Retrying would get the same result, so I told it not to retry. The result of that is that it installed the program anyway, which appears to have completed. I selected the default directory and otherwise did not do anything to customize the install or run it from the installer. When I tried to run the program, I keep getting a "certificate authentication failed" error.
RepliesTuesday 22 August 2017 at 23:49
|
ahjolinna | Wednesday 9 August 2017 at 15:45 |
ahjolinna
|
Messageagain, it seems people are confuse with what to use, its the wine-staging (2.14) release and NOT the basic wine (2.14). So you NEED the staging version of wine for SWTOR to work at all.
Ps. also since wine-staging v2.8 arrived SWTOR has been working "out of box", aka there hasn't been any need for "swtor_fix.exe" or other downloads anymore ....except the "BitRaider" thing, which is still broken (even on windows at times)
what is the staging version? : from their github page: "Wine Staging is the testing area of winehq.org. It contains bug fixes and features, which have not been integrated into the development branch yet. The idea of Wine Staging is to provide experimental features faster to end users and to give developers the possibility to discuss and improve their patches before they are integrated into the main branch. More information about Wine Staging can also be found on our website wine-staging.com." RepliesWednesday 9 August 2017 at 16:04
Wednesday 9 August 2017 at 20:40
Wednesday 9 August 2017 at 23:45
Wednesday 9 August 2017 at 23:54
Thursday 10 August 2017 at 7:49
Thursday 10 August 2017 at 9:33
Thursday 10 August 2017 at 15:48
Friday 11 August 2017 at 0:11
Friday 11 August 2017 at 0:22
Friday 11 August 2017 at 0:28
|
ahjolinna | Saturday 5 August 2017 at 21:39 |
ahjolinna
|
MessageSWTOR had just updated their launcher and because of this it doesn't work on wine anymore (or even winxp or vista), but this problem has has been patched and merged to (wine)-staging, and should be in wine-staging 2.14 release (when it arrives)... so currently only way to play is to use the git version of wine-staging or just wait for wine-staging 2.14 release to arrive
more about the bug: https://bugs.winehq.org/show_bug.cgi?id=43469 and the patch: https://dev.wine-staging.com/patches/164/
PS. SWTOR runs now "out of box" box on wine-staging, so there isn't any need for those extra installations or "swtor_fix.exe" file RepliesTuesday 8 August 2017 at 3:31
Tuesday 8 August 2017 at 20:09
Wednesday 9 August 2017 at 0:00
Wednesday 9 August 2017 at 1:40
|
gwynplaine | Friday 4 August 2017 at 8:23 |
gwynplaine
|
Messagej'ai installé swtor sur la distribution voyager gs (gaming) il a fonctionné 4 jours et il a une mise a jour. message d'erreur : echec de l'authentification du certificat. j'ai donc re-installer le jeu et chercher sur internet et visiblement la version de wine (1.7.53) ne supporte pas le sha-2 (qui est une abréviation de sha-256) le sha-2 est visiblement supporter depuis la version 2.12 de wine. j'ai donc installé via playonlinux, la version 2.13 et j'ai la meme erreur : echec de l'authentification du certificat.
suite a ça, et a beaucoup de recherche. J'ai trouvé une méthode de contournement :
elle semble fonctionner pour certains.
ce qui m'étonne, c'est que si wine 2.13 - 2.14 supporte ce format de certificat (sha 256) qu'on puisse avoir comme message d'erreur : echec de l'authentification du certificat
RepliesFriday 4 August 2017 at 21:11
Friday 4 August 2017 at 21:15
Saturday 5 August 2017 at 11:01
Saturday 5 August 2017 at 21:01
Sunday 6 August 2017 at 13:12
Monday 7 August 2017 at 18:05
Monday 7 August 2017 at 18:05
Monday 7 August 2017 at 18:06
Monday 7 August 2017 at 18:09
Thursday 10 August 2017 at 2:28
Friday 25 August 2017 at 15:19
|
imhill97 | Thursday 3 August 2017 at 6:01 |
imhill97
|
MessageI have been using playonmac to run SWTOR for about 2 months now and I didn't any significant problems with it until yesterday. I tried to launch my game and the login screen openned up and then crashed after saying something about the launcher needing to update. I thought this was an issue with SWTOR and not playonmac and looked around and found out other people were having issues with SWTOR but their issues resolved and I still couldnt get the launcher to open up. I only got the black screen saying "Waiting on Star Wars..." So around 10 pm last night I was like I am done I will just reinstall the game. I tried to reinstall and when the Star Wars_Setup finished downloading I got an error message saying that the files were mismatched. I tried updating playonmac and reinstalling, updating my computer, and nothing will let me reinstall SWTOR. Is there something else I could do to fix this issue or is it something that Playonmac needs to deal with and if so does anyone know when it will be fixed. Replies |
Stumper | Wednesday 2 August 2017 at 19:24 |
Stumper
|
Messageand i have a second problem ^^' File inconsistency I really do not know what to do by waiting i look everywhere but without result unhappily ! Replies |
Stumper | Wednesday 2 August 2017 at 16:54 |
Stumper
|
MessageWhen lauching the game, i have problem:"Certificate authentication failed,please contact customer support"
Please help me ! RepliesWednesday 2 August 2017 at 18:45
Wednesday 2 August 2017 at 21:57
Thursday 3 August 2017 at 0:01
|
oblednov | Wednesday 26 July 2017 at 8:24 |
oblednov
|
MessageIf you have an issue with the launcher being stuck at "Initializing..." and/or asking for administrative privileges, try doing this: In the SWTOR directory find the launcher.settings file and make these changes:
Try the launcher again. Worked for me. Replies |
Barais | Sunday 2 July 2017 at 6:52 |
Barais
|
MessageEvery once in a while SWTOR will just crash at random points. From everyone else I've seen says that it runs perfect with playonmac. But for me, this isnt the case. It will just freeze without warning and has hindered me from applying the best graphics possible because of the crashes. I can run it on ultra fine but it comes at a cost of more risk of it crashing at random points and during very important missions that if you crash or exit the area from you lose all of your progress. Replies |
TAJTHEGAMER | Sunday 28 May 2017 at 16:39 |
TAJTHEGAMER
|
MessageThis has worked really well on my Mac. Recently however, I was almost done with one of the story arcs and went to talk with someone, and I click on them but the dialogue never happens and it just freezes. Can someone please help me. Here is the debug log:
[05/28/17 09:38:08] - Running wine-1.7.53 start /unix swtor_fix.exe (Working directory : /Users/TAJ/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old[05/28/17 09:38:08] - Running wine-1.7.53 launcher.exe /unix swtor_fix.exe (Working directory : /Users/TAJ/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:iphlpapi:NotifyAddrChange (Handle 0x33cbbc, overlapped 0xeeb600): stub fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) Stub! [0528/093809:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x336820,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x334410,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3347e0,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x336810,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x336810,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x336850,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3367f0,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x5c8ae70,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x5c89c60,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x5c89930,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented Replies |
ahjolinna | Thursday 18 May 2017 at 0:39 |
ahjolinna
|
Messageeverything runs really well for me but it seems now with wine-staging v2.8 it runs even better and the whole "swtor-fix.exe" isn't needed anymore to run, at least what I tested..
https://www.gamingonlinux.com/articles/wine-staging-28-released-with-more-functional-32-bit-fake-dlls-and-starcraft-i-should-now-work-properly.9681 "In regards to the two games mentioned, Star Wars: The Old Republic should now work better thanks to their implementation of a mechanism to "update the time fields inside the used shared data block periodically". This is done in a new thread and only when required."
RepliesThursday 18 May 2017 at 0:56
|
Gregshadow | Monday 15 May 2017 at 15:41 |
Gregshadow
|
MessageI have been using Star Wars The Old Republic for almost a year, and it has worked great. A couple weeks ago I updated my Ubuntu software. Since then, after I try to create a character and start the story the program shuts down and kicks me off. I don't know the particular issue is because I have removed the program and reinstalled it but it still does the same thing. Any help would be appreciated. RepliesMonday 15 May 2017 at 16:38
Monday 15 May 2017 at 16:40
Wednesday 17 May 2017 at 18:25
Wednesday 17 May 2017 at 21:04
Wednesday 17 May 2017 at 21:04
|
baileyrw | Monday 24 April 2017 at 4:51 |
baileyrw
|
MessageCan anyone help me here is my debug report it was working three days ago now wont open past the login screen
[04/23/17 19:43:52] - Running wine-1.7.53 launcher.exe /unix swtor_fix.exe (Working directory : /Users/Wes/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - err:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:iphlpapi:NotifyAddrChange (Handle 0x33cbbc, overlapped 0xeeb6d0): stub fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) Stub! [0423/194353:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x336820,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x334410,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3347e0,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x336810,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x336810,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x336850,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3367f0,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x537ae70,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x5379c60,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x5379930,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled err:avicap:query_video_device Video 4 Linux support not enabled fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winsock:WSAIoctl ignoring keepalive interval fixme:win:EnumDisplayDevicesW ((null),0,0x339bd0,0x00000000), stub! fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot fixme:toolhelp:Heap32ListFirst : stub fixme:win:EnumDisplayDevicesW ((null),0,0x33a2b0,0x00000000), stub! fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:winsock:WSAIoctl ignoring keepalive interval fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented Replies |
Horigo | Sunday 9 April 2017 at 14:43 |
Horigo
|
MessageWork perfectly Replies |
trisimix | Wednesday 21 December 2016 at 17:05 |
trisimix
|
MessageSo sound does not work with the default install and whenever I manage to install libraries to get the test sound in configure working I receive this error
[12/21/16 04:59:13] - Running wine-1.9.23 launcher.exe (Working directory : /home/trisimix/.PlayOnLinux/wineprefix/adrive/drive_c/Program Files (x86)/Electronic Arts/BioWare/Star Wars-The Old Republicfixme:file:SetDefaultDllDirectories (800): stub
Replies |
ceciliarosegrey | Tuesday 22 November 2016 at 12:56 |
ceciliarosegrey
|
MessageIt shows server mismatch for mslm and it hangs upon downloading video 5
Linux mint 18, 16.04 64 bit amd Replies |
jeremyofmany | Thursday 25 August 2016 at 3:55 |
jeremyofmany
|
MessageLinux Mint 18 Sarah 16.04 LTS PlayonLinux 4.2.10 Wine versions tried: 1.7.53 & 1.9.17 (32-bit) I had PoL download the swtor setup file and all the redistributables (I had to manually download W2KSP4_EN.EXE due to a md5sum mismatch between server and local). I also had to install p11-kit-trust.so and gnome-keyring-pkcs11.so I edited the following file: /home/jeremy/PlayOnLinux's virtual drives/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic/swtor/retailclient/client_defaults.ini When I run SWTOR, SWTOR_fix.exe comes up and hangs at "Waiting for threads to end..." [08/24/16 22:51:39] - Running wine-1.9.17 start /unix swtor_fix.exe (Working directory : /home/jeremy/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [08/24/16 22:51:39] - Running wine-1.9.17 launcher.exe /unix swtor_fix.exe (Working directory : /home/jeremy/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) fixme:iphlpapi:NotifyAddrChange (Handle 0x32cbbc, overlapped 0xeeb760): stub fixme:winsock:WSALookupServiceBeginW (0x32cc68 0x00000ff0 0x32cca4) Stub! [0824/225140:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x3268f8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3244e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3248b8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3268e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3268e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x326928,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3268c8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x5ffa318,0x00000000), stub! fixme:wbemprox:client_security_SetBlanket 0x70b42ba8, 0x19edd0, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0x70b42ba8 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:dsound:IKsPrivatePropertySetImpl_Get unsupported property: {f2957840-260c-11d1-a4d8-00c04fc28aca} fixme:win:EnumDisplayDevicesW ((null),0,0x5ff4cd8,0x00000000), stub! fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x5ff4990,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),1,0x5ff4cd8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x5ff51e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x5ff4d58,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {67685559-3106-11d0-b971-00aa00342f9f}. fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x329e48,0x00000000), stub! fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot fixme:toolhelp:Heap32ListFirst : stub fixme:win:EnumDisplayDevicesW ((null),0,0x32a3e8,0x00000000), stub! fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x329d08,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x329e88,0x00000000), stub! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xeeb760): stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc3c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc3c 1 C) semi-stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f3f8,0x00000000), stub! fixme:wbemprox:client_security_SetBlanket 0xf49e3ba8, 0x16f780, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0xf49e3ba8 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:dsound:IKsPrivatePropertySetImpl_Get unsupported property: {f2957840-260c-11d1-a4d8-00c04fc28aca} fixme:win:EnumDisplayDevicesW ((null),0,0x33a210,0x00000000), stub! fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x339ec8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),1,0x33a210,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33a728,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33a288,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {67685559-3106-11d0-b971-00aa00342f9f}. fixme:win:EnumDisplayDevicesW ((null),0,0xabfe098,0x00000000), stub! fixme:d3d:wined3d_check_device_format_conversion wined3d 0x1656a8, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub! fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xabfe56c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xabfe36c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xaefe41c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc3c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc3c 1 C) semi-stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f3f8,0x00000000), stub! fixme:wbemprox:client_security_SetBlanket 0xf4ad2ba8, 0x16e758, 10, 0, (null), 3, 3, (nil), 0x00000000 fixme:wbemprox:client_security_Release 0xf4ad2ba8 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:dsound:IKsPrivatePropertySetImpl_Get unsupported property: {f2957840-260c-11d1-a4d8-00c04fc28aca} fixme:win:EnumDisplayDevicesW ((null),0,0x33a210,0x00000000), stub! fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x339ec8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),1,0x33a210,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33a728,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33a288,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {67685559-3106-11d0-b971-00aa00342f9f}. fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaafe8e4,0xaafe8e0): stub RepliesThursday 25 August 2016 at 3:58
Thursday 15 September 2016 at 1:40
Sunday 23 April 2017 at 10:24
Sunday 23 April 2017 at 10:26
|
GraphicLevel | Wednesday 13 July 2016 at 19:41 |
GraphicLevel
|
MessageVoilà, en installant SWTOR, je me retrouve avec une erreur Incohérence de fichier pour celui de WinHTTP, ou W2KSP4 qui à mon avis ont été remis à jours. Je ne sais pas comment, mais quelqu'un peut-il le réinstaller et comfirmer ce que je dis? Et désolé je ne sais pas comment envoyer mon script mais je suis pérsuadé que c'est winhttp qui plante. Que la force soit avec vous! RepliesSunday 28 August 2016 at 0:50
|
Raiderwolf | Monday 20 June 2016 at 20:32 |
Raiderwolf
|
MessageI was very pleasantly surprised this weekend when I, out of the blue, decided to try SWTOR on my Slackware 14.1 Linux on PlayOnLinux (of course), and it worked great, smooth as silk. I didn't change anything, it just worked and I played practically all weekend with absolutely no problems. My system (a bit old, but still kicks) is MSI 790FX-GD70 AMD Phenom II X4 965 with CrossfireX Radeon HD 6950s with AMD proprietary drivers. For some reason, to me, while playing this weekend, the graphics to just popped, looked really great while playing the game. This is the only game I've gotten to work, that I like playing, other than Diablo III. I am not sure of the settings, as in Wine version etc., but am happy to share anything you need to know. Replies |
th1967 | Friday 10 June 2016 at 14:49 |
th1967
|
MessageDear all, I have just had a problem by the installation of "Star wars the old republic" on PlayOnLinux. Just after downloading the "swtor.exe" file, I got the following error message: Error: The files do not correspond. Local: ******** (key) Server: xxxxxx (different key). Would you try again? I tried again but unsuccessfully. Can someone help me, please? Thanks in advance, Th. RepliesFriday 10 June 2016 at 14:51
Friday 10 June 2016 at 14:56
Sunday 12 June 2016 at 11:11
Monday 20 June 2016 at 20:36
|
Sorbonne | Tuesday 10 May 2016 at 8:07 |
Sorbonne
|
MessageHi, I have been able to download and launch SWTOR thanks to playonmac but it's impossible to play, I mean I have like 10/15 fps and I don't know if it's because of playonmac or my mac? I have a Macbook Air 2015 with Yosemite 10.10.5, 4Go Ram DDR3, Graphic Card: Intel HD Graphics 6000 1536 Mo, Proc: 1,6 GHz Intel Core i5. I am able to play way more recent games so I don't understand why it is so unplayable in SWTOR, do you have some advices? Thx :)
RepliesWednesday 22 June 2016 at 21:50
Wednesday 22 June 2016 at 21:51
Thursday 23 June 2016 at 13:45
Tuesday 21 February 2017 at 3:48
|
classl3ss | Sunday 17 April 2016 at 7:54 |
classl3ss
|
MessageReplies |
ahjolinna | Wednesday 13 April 2016 at 2:05 |
ahjolinna
|
|
uberneen | Sunday 10 April 2016 at 1:28 |
uberneen
|
MessageThis script worked flawlessly on Linux Mint 17.3 KDE Edition. All I had to do was change a client video setting to Fullscreen (Windowed) to solve an issue where any focus loss would result in a permanent black screen. This was the one game I was booting to windows for. Thank you! Replies |
Flugeless | Monday 21 March 2016 at 20:50 |
Flugeless
|
MessageI downloaded and installed the game wthout problem (except for the fact that I fetched WKSP4 by hand), but now I am stuck.
The launcher goes up well, when I hit play, swtor_fix, gets a PID, then "waits for thread to finish. The first time I launched, I got the cinematic, now I am stuck at the loading screen (with a black part) [IMG]http://i66.tinypic.com/xkomxy.png[/IMG] I saw some fixes (rename LoadingScreen and Loading icon as *.old) but they did not work. anyone as a solution ? Replies |
larspj3 | Thursday 17 March 2016 at 13:57 |
larspj3
|
MessageIt runs smooth, but there is an issue with the interfance. When i hover mouse over quest maker on map the interface crash. and game stops. When i hover mouse over quest tracker on the side the interface crash. and game stops. When i hover mouse over quest maker on the mini map the interface crash. and game stops.
Replies |
Mozart92 | Saturday 5 March 2016 at 13:22 |
Mozart92
|
MessageI get this error during the installation. How can I solve it?
[IMG]http://i67.tinypic.com/20r7m7b.png[/IMG] RepliesMonday 7 March 2016 at 21:44
Monday 7 March 2016 at 22:06
Monday 7 March 2016 at 22:06
Monday 7 March 2016 at 22:06
Monday 14 March 2016 at 6:07
|
ShenLun | Monday 29 February 2016 at 5:27 |
ShenLun
|
MessageIt installs well and I have full use over the mouse and keyboard during the character creation phase. However when I get to the actual mission I have no reponse from my keyboard only mouse.
Is their a logitech controller option? Thanks for your amazing effort in getting this game to run on linux. I am using linux mint 17.3.
Kind Regards ShenLun Replies |
petch | Wednesday 17 February 2016 at 10:38 |
petch
|
WarningThis update has not been approved yet by the team. MessageUpdated download hash Differences@@ -28,7 +28,7 @@ # Downloading client cd "$POL_System_TmpDir" - POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" + POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.53" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "6027c30b7aea8a3a19c62d156143260a" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesEdited by petch |
danutzdobre | Tuesday 26 January 2016 at 22:13 |
danutzdobre
|
MessageI have installed SWTOR on Linux Mint 17.2 Rafaella. All went well on install, it downloaded all packages and installed them and after that it showed me again that it needs to download 16.41 Gb and was stuck there. I have closed and reopened the launcher but it is still suck at: Downloading 16.41 Gb withouw any download taking place. RepliesSunday 31 January 2016 at 22:04
|
kahtwoloo | Wednesday 30 December 2015 at 15:31 |
kahtwoloo
|
MessageAfter I login and hit PLAY a C:/ box opens up and reads [code] Waiting for swtor... Found, PID:109 Waiting for threads to end...[/code]
then... nothing happens. Sorry about yellow text not sure why its doing that Replies |
ahjolinna | Monday 28 December 2015 at 12:49 |
ahjolinna
|
MessageSWTOR runs really well with wine-staging v1.8 my only problem is still this wine's: 32092 bug My Desktop Specs: CPU Intel Skylake i5-6600K 4,5GHz Motherboard Asus Z170 PRO GAMING RAM Kingston(4x4GB) HyperX Fury DDR4 2133 MHz GPU EVGA GeForce NVIDIA GTX 970 SSC ACX 2.0+ Case NZXT Phantom 820 Storage HDD: WD 14TB, SSD: 240GB Kingston HyperX 3K PSU Corsair AX860 80+ Platinum Display(s) 2x Dell UltraSharp U2312HM Cooling Corsair Hydro H80 Keyboard Roccat Ryos Pro MK Mouse Roccat KonePure Sound DacMagicXS, BeyerDynamic DT 880 OS: chakraOS -plasma5.x Replies |
82caff | Thursday 17 December 2015 at 16:46 |
82caff
|
MessageHello, I'm running on Antergos (a version of Arch). After running the launcher, updating, and clicking play, it hangs for a few minutes, and then the SWTOR_fix window closes unceremoniously. I found a tag indicating that the window couldn't resize to my monitor's size (1440 x 900). I opened the programs directory and went to /swtor/retailclient/client_defaults.ini and changed the full screen line to = false. Client opens now I hope this helps someone else. Replies |
Raiderwolf | Tuesday 15 December 2015 at 1:02 |
Raiderwolf
|
MessageI don't know what could have changed, maybe some change SWTOR did, but I can now get the login screen, am able to set the language from French to English, run the updates and run and play the game. I was playing for about 15 minutes when it hung and I had to exit X windows KDE. So as of now, it is running much better than before, which before is what s1ngle says, stopping with a DOS like window that says "Waiting for swtor...". It makes it past that now. Replies |
petch | Monday 14 December 2015 at 19:12 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd POL_SetupWindow_VMS, with a minimum requirement of 256MB Differences@@ -37,6 +37,9 @@ SETUP_EXE="$APP_ANSWER" fi +# http://www.swtor.com/info/faq +POL_SetupWindow_VMS "256" + POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.53" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi # http://www.swtor.com/info/faq POL_SetupWindow_VMS "256" POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesThursday 31 December 2015 at 11:59
Thursday 31 December 2015 at 12:24
|
s1ngle | Monday 14 December 2015 at 4:10 |
s1ngle
|
|
sculy | Tuesday 8 December 2015 at 12:23 |
sculy
|
MessageThe program runs greatly well, with one exception. Every time I move the mouse at any item which would display a radius around a marker (or above this marker), the game crashes and I got the following backtrace: http://pastebin.com/WBPuVsay This only happen with this "radius around a marker" itens at maps, and that kind of sutff. Info about my system at the end of the backtrace. Replies |
petch | Friday 4 December 2015 at 23:43 |
petch
|
WarningThis update has not been approved yet by the team. MessageAdd POL_SetupWindow_SetID Differences@@ -13,6 +13,7 @@ PREFIX="SWTOR" POL_SetupWindow_Init +POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_SetupWindow_SetID 2135 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.53" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesSunday 10 January 2016 at 16:48
|
aegorsuch | Wednesday 2 December 2015 at 5:30 |
aegorsuch
|
MessageProgram runs great, connects great, starts great except every so often it will crash. It seems to crash every so often if I mouse over something with a pop-up window. For example, over an objective marker on map or an included item in tracked quests. RepliesSunday 31 January 2016 at 22:05
|
moiko89 | Monday 30 November 2015 at 13:45 |
moiko89
|
MessageThe game will start . In Hybrid - graphics card is not going well . Someone an idea? RepliesMonday 30 November 2015 at 13:46
|
Drewmarasco | Friday 6 November 2015 at 18:05 |
Drewmarasco
|
MessageAttempting to download on my MacBook Pro. The downloaded is extremely slow. I've been working on a full download for a couple days. Any suggestions? Replies |
Playwinner | Friday 6 November 2015 at 13:15 |
Playwinner
|
MessageBonjour, Je m'excuse mais malheureusement je suis complètement largué. Je suis tout nouveau sur votre forum, sur Linux (Mint 17.2 Cinnamon 64bits) également, et j'essaie d'installer SWTOR. Le téléchargement du premier fichier SWTOR_setup.exe s'est parfaitement déroulé. J'utilise Wine 1.6.2 et mon "système est à jour" (d'après mon Gestionnaire de mises à jour). J'ai lancé SWTOR (dans Wine, en appuyant sur l'icône "Star Wars - The Old Republic"), je me suis identifié (joueur sans abonnement) et le jeu a voulu télécharger le reste, mais impossible (en attente, fenêtre tourne dans le vide). Après quelques recherches, je suis tombé sur https://appdb.winehq.org/objectManager.php?sClass=version&iId=27088&iTestingId=87665. J'ai recherché dans le fichier launcher.settings la ligne : "PatchingMode": "{ \"swtor\": \"BR\" }" ...mais il n'y avait que la ligne sans le \"BR\". J'ai toutefois remplacé par "{ \"swtor\": \"SSN\" }" ...et bingo, le jeu a continué de se télécharger pour dépasser légèrement les 30 Go. Jusque là tout va bien, il démarre parfaitement, j'arrive jusqu'au bouton "jouer". Je continue donc le tuto en téléchargeant le fichier swtor_fix.exe et en le plaçant dans c:\ J'ouvre un terminal, je tape WINEDEBUG=-all wine c:\swtor_fix.exe mais ça me dit que l'exe a un souci. Je m'aperçois en fait qu'il faut lancer en 32 bits donc je recommence en tapant : $ env WINEARCH=win32 WINEDEBUG=-all wine c:\swtor_fix.exe ...mais j'obtiens : Je me dis que c'est juste une info, donc j'ouvre le second terminal pour y taper : env WINEARCH=win32 WINEDEBUG=-all wine ~/.wine/drive_c/Program\Files\(x86)/Electronic\Arts/BioWare/Star\Wars\-\The\ Old\Republic/launcher.exe mais ça me marque : bash: Erreur de syntaxe près du symbole inattendu « ) » Le laucher.exe est pourtant dans Program Files (x86), Electronic Arts, Bioware, Star Wars - The Old Republic. Bon, je recherche une autre méthode et j'installe playonlinux (4.4.2). Me voici donc ici et je clique sur "installer ce programme", et ça me renvoie : L'adresse n'a pas été reconnue, Firefox ne sait pas ouvrir cette adresse car l'un des protocoles suivants (playonlinux) n'est associé à aucun programme ou n'est pas autorisé dans ce contexte. Il est peut-être nécessaire d'installer une autre application pour ouvrir ce type d'adresse. Je prends bien conscience que je n'y arriverai pas tout seul, découvrant Mint (et Linux) depuis 2 jours. Donc si quelques uns d'entre vous pouvez me venir en aide et me guider pas à pas ici ou par MP, je vous vous remercie. Replies |
jelcq | Friday 30 October 2015 at 13:52 |
jelcq
|
|
gmarchini | Tuesday 27 October 2015 at 1:30 |
gmarchini
|
MessageHello, I wrote the previous message and was just wondering if there was more information I should have provided? Or if there are any troubleshoots I should try? Thanks! RepliesFriday 30 October 2015 at 13:58
|
gmarchini | Monday 26 October 2015 at 5:50 |
gmarchini
|
MessageHello, I just downloaded playonmac and installed SWTOR. It installed and it starts up and I can log in and go to play and it takes me to the full screen loading screen and then it freezes. The first time I logged in and hit play it played a video where a master and apprentice get split up and the master gets killed and then the sith apprentice kills his maser and then it went to the loading screen where it froze. Any help on what I'm doing wrong would be greatly appreciated! I'm running on a 2015 13" MacBook Pro, 2.9 GHz Intel Core i5 Processor, 8 GB 1867 MHzDDR3 Memory, Intel Iris Graphics 6100 1536MB. Here is the debugger log: [10/25/15 20:55:23] - Running wine-1.7.53 /Users/Gage/Library/PlayOnMac/tmp/SWTOR/SWTOR_setup.exe (Working directory : /Users/Gage/Library/PlayOnMac/tmp/SWTOR) Replies |
petch | Sunday 25 October 2015 at 8:56 |
petch
|
WarningThis update has not been approved yet by the team. MessageUpgrade Wine to 1.7.53 Differences@@ -18,7 +18,7 @@ POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.22" +POL_Wine_PrefixCreate "1.7.53" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.53" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesTuesday 27 October 2015 at 9:44
|
GraphicLevel | Friday 23 October 2015 at 16:23 |
GraphicLevel
|
MessagePour moi le programme fonctionne malgré ma machine peu puissante. Mais le jeu freeze enormement et crash dans les cas suivants: -Ouverture de la Map -Changement de graphisme (pour augmenter ou reduire les graphismes, il faut le faire dans le menu de selection de personnages. Replies |
Sayph | Tuesday 20 October 2015 at 12:11 |
Sayph
|
MessageBonjour bonjour, le jeux fonctionnait plutôt bien jusqu'à la mise a jour du 05 octobre 2015 qui a modifié le lanceur. Maintenant, le jeux tourne dans le vide au moment de la connection au compte, et ce, peu importe si les logs sont valides ou non. Merci de votre attention et de votre travail, j'apprécie vraiment cette superbe plateforme =) RepliesFriday 23 October 2015 at 16:19
Sunday 25 October 2015 at 8:53
|
fmanarchist | Saturday 17 October 2015 at 1:52 |
fmanarchist
|
MessageI am unable to log in to the game. Can anyone help? Here's the output of the debugger: [10/16/15 19:51:23] - Running wine-1.7.22 launcher.exe /unix swtor_fix.exe (Working directory : /home/conrad/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - Theerr:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution.
Replies |
Nirutthana | Tuesday 7 July 2015 at 12:02 |
Nirutthana
|
MessageMy computer details, error message, and debug log are below. Can this be fixed? Linux Version: Release Linux Mint 17.2 Rafaela 32-bit, Kernel Linux 3.13.0-24-generic i686, MATE 1.10.0 Version of POL: PlayOnLinux 4.2.8 Full computer specs:
d or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:advapi:LsaOpenPolicy ((null),0x33f2e4,0x00000001,0x33f30c) stub fixme:advapi:LsaClose (0xcafe) stub fixme:ntdll:NtLockFile I/O completion on lock not implemented yet [07/06/15 20:34:19] - Running wine-1.7.22 regedit /home/ash/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/ash/.PlayOnLinux/ressources/vcrun2008) [07/06/15 20:34:19] - Content of /home/ash/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*msvcr90"="native,builtin" ----------- [07/06/15 20:34:20] - ----- Ending function POL_Install_vcrun2008 ----- [07/06/15 20:34:21] - ----- Starting function POL_Install_d3dx9 ----- [07/06/15 20:34:26] - Running wine-1.7.22 regedit /home/ash/.PlayOnLinux//tmp/override-dll.reg (Working directory : /home/ash/.PlayOnLinux/ressources) [07/06/15 20:34:26] - Content of /home/ash/.PlayOnLinux//tmp/override-dll.reg ----------- REGEDIT4 [HKEY_CURRENT_USER\Software\Wine\DllOverrides] "*d3dx9_24"="native, builtin" "*d3dx9_25"="native, builtin" "*d3dx9_26"="native, builtin" "*d3dx9_27"="native, builtin" "*d3dx9_28"="native, builtin" "*d3dx9_29"="native, builtin" "*d3dx9_30"="native, builtin" "*d3dx9_31"="native, builtin" "*d3dx9_32"="native, builtin" "*d3dx9_33"="native, builtin" "*d3dx9_34"="native, builtin" "*d3dx9_35"="native, builtin" "*d3dx9_36"="native, builtin" "*d3dx9_37"="native, builtin" "*d3dx9_38"="native, builtin" "*d3dx9_39"="native, builtin" "*d3dx9_40"="native, builtin" "*d3dx9_42"="native, builtin" "*d3dx9_42"="native, builtin" "*d3dx9_43"="native, builtin" ----------- [07/06/15 20:34:27] - ----- Ending function POL_Install_d3dx9 ----- [07/06/15 20:34:27] - Running wine-1.7.22 /home/ash/.PlayOnLinux/tmp/SWTOR/SWTOR_setup.exe (Working directory : /home/ash/.PlayOnLinux/tmp/SWTOR) fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination err:richedit:ReadStyleSheet skipping optional destination fixme:shell:IAutoComplete2_fnInit ACO_FILTERPREFIXES not supported fixme:gameux:GameExplorerImpl_VerifyAccess (0x259b438, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\SWTOR_GDF.dll", 0x2ecdce8) fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"ReleaseDate" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Genres" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Ratings" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Version" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"WindowsSystemPerformanceRating" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Developers" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"Publishers" in Game Definition File not yet supported fixme:gameux:GAMEUX_ProcessGameDefinitionElement entry L"ExtendedProperties" in Game Definition File not yet supported fixme:hnetcfg:fw_manager_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:hnetcfg:fw_app_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:hnetcfg:fw_app_put_Name 0x259ee80, L"Star Wars - The Old Republic" fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x259ee80, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\swtor\\retailclient\\swtor.exe" fixme:hnetcfg:fw_app_put_Scope 0x259ee80, 0 fixme:hnetcfg:fw_app_put_IpVersion 0x259ee80, 2 fixme:hnetcfg:fw_app_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented fixme:hnetcfg:fw_app_put_Name 0x259e7e0, L"Star Wars - The Old Republic" fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x259e7e0, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\swtor\\retailclient\\swtor.exe" fixme:hnetcfg:fw_app_put_Scope 0x259e7e0, 0 fixme:hnetcfg:fw_app_put_IpVersion 0x259e7e0, 2 fixme:hnetcfg:fw_manager_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:hnetcfg:fw_app_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:hnetcfg:fw_app_put_Name 0x259b068, L"Star Wars - The Old Republic Updater" fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x259b068, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe" fixme:hnetcfg:fw_app_put_Scope 0x259b068, 0 fixme:hnetcfg:fw_app_put_IpVersion 0x259b068, 2 fixme:hnetcfg:fw_app_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented fixme:hnetcfg:fw_app_put_Name 0x259ea80, L"Star Wars - The Old Republic" fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x259ea80, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe" fixme:hnetcfg:fw_app_put_Scope 0x259ea80, 0 fixme:hnetcfg:fw_app_put_IpVersion 0x259ea80, 2 fixme:hnetcfg:fw_manager_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:hnetcfg:fw_app_QueryInterface interface {00000126-0000-0000-c000-000000000046} not implemented fixme:hnetcfg:fw_app_put_Name 0x25970b0, L"Star Wars - The Old Republic" fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x25970b0, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe" fixme:hnetcfg:fw_app_put_Scope 0x25970b0, 0 fixme:hnetcfg:fw_app_put_IpVersion 0x25970b0, 2 fixme:hnetcfg:fw_app_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub [07/06/15 20:35:24] - ----- Starting function POL_Message_OSXFlicker ----- [07/06/15 20:35:24] - ----- Ending function POL_Message_OSXFlicker ----- [07/06/15 20:35:38] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Repub[07/06/15 20:35:39] - Running wine-1.7.22 launcher.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [0706/203542:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [07/06/15 21:35:09] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Repub[07/06/15 21:35:10] - Running wine-1.7.22 launcher.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [0706/213512:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [0706/213551:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [0706/213551:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [07/07/15 20:36:15] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Repub[07/07/15 20:36:22] - Running wine-1.7.22 launcher.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [0707/203626:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [07/07/15 21:24:20] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Repub[07/07/15 21:24:25] - Running wine-1.7.22 launcher.exe /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Ol[0707/212430:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [07/07/15 21:26:23] - Running wine- start /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) wine: configuration in '/home/ash/.PlayOnLinux//wineprefix/SWTOR' has been updated. [07/07/15 21:26:39] - Running wine- launcher.exe /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Repu[0707/212640:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 [07/07/15 21:44:40] - Running wine- start /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic) [07/07/15 21:44:40] - Running wine- launcher.exe /unix swtor_fix.exe (Working directory : /home/ash/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Repuerr:winediag:SECUR32_initNTLMSP ntlm_auth was not found or is outdated. Make sure that ntlm_auth >= 3.0.25 is in your path. Usually, you can find it in the winbind package of your distribution. fixme:iphlpapi:NotifyAddrChange (Handle 0x32cbbc, overlapped 0xfe55d0): stub fixme:winsock:WSALookupServiceBeginW (0x32cc68 0x00000ff0 0x32cca4) Stub! [0707/214442:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046} err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x3268f8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3244e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3248b8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3268e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3268e8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x326928,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3268c8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x57fa2d8,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:win:EnumDisplayDevicesW ((null),0,0x57f92b8,0x00000000), stub! fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:win:EnumDisplayDevicesW ((null),0,0x57f90a8,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a760-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x329e78,0x00000000), stub! fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot fixme:toolhelp:Heap32ListFirst : stub fixme:win:EnumDisplayDevicesW ((null),0,0x32a318,0x00000000), stub! fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x329d28,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x329ea8,0x00000000), stub! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xfe55d0): stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc48 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc48 1 C) semi-stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f3f8,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:win:EnumDisplayDevicesW ((null),0,0x33e838,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33e628,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a760-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:winediag:AUDDRV_GetAudioEndpoint Winepulse is not officially supported by the wine project fixme:winediag:AUDDRV_GetAudioEndpoint For sound related feedback and support, please visit http://ubuntuforums.org/showthread.php?t=1960599 fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:dbghelp:elf_search_auxv can't find symbol in module RepliesThursday 9 July 2015 at 6:41
Thursday 9 July 2015 at 11:45
Thursday 9 July 2015 at 13:48
Friday 10 July 2015 at 10:40
Friday 10 July 2015 at 10:44
Friday 10 July 2015 at 10:44
Monday 19 October 2015 at 19:22
|
talon-forge | Wednesday 17 June 2015 at 17:49 |
talon-forge
|
MessageHi all, Wineskin & playonmac noob here. Installed playonmac & star wars old republic. Launcher & character selection works fine. Crashes when the game loading screen pops up. Any fix for this and how i would do this? Thanks guys RepliesWednesday 17 June 2015 at 17:53
Wednesday 17 June 2015 at 18:00
Wednesday 17 June 2015 at 18:01
|
Alzeif | Monday 8 June 2015 at 21:52 |
Alzeif
|
MessageBonjour, Le jeu s'est parfaitement installé, mais lorsque je le lance, il reste bloqué sur la page de chargement (avant la page de sélection de serveurs). J'ai essayé de le lancer dans un bureau virtuel mais rien ne se passe. Est-ce un problème connu ? Connaissez vous une solution ? PS: Je suis sur fedora 21. Merci par avance de votre réponse. Cordialement, Alzeif. Replies |
Raiderwolf | Saturday 6 June 2015 at 23:29 |
Raiderwolf
|
|
davidbooth | Wednesday 3 June 2015 at 16:49 |
davidbooth
|
MessageThe game works fine most of the time but it crashes occasionaly. Whenever i run it the screen is always flickering and my eyes can't stand it! Would anybody know how to fix it? Thx in advance RepliesWednesday 3 June 2015 at 16:53
Wednesday 3 June 2015 at 21:04
Wednesday 3 June 2015 at 21:06
Thursday 4 June 2015 at 0:34
Thursday 4 June 2015 at 0:49
Thursday 4 June 2015 at 1:20
Thursday 4 June 2015 at 7:05
Thursday 4 June 2015 at 16:10
Thursday 4 June 2015 at 18:00
Thursday 4 June 2015 at 21:34
Thursday 4 June 2015 at 21:40
Thursday 4 June 2015 at 21:48
Thursday 4 June 2015 at 21:48
Thursday 4 June 2015 at 21:56
Thursday 4 June 2015 at 21:56
Friday 5 June 2015 at 16:13
Friday 5 June 2015 at 18:30
Wednesday 26 April 2017 at 1:46
|
ogbrewer | Wednesday 6 May 2015 at 5:55 |
ogbrewer
|
MessageI rarely get past the initial loading screen and when I do, it's glitchy to say the least and has never let me past character creation. RepliesWednesday 6 May 2015 at 7:06
|
Merej | Tuesday 5 May 2015 at 5:50 |
Merej
|
MessageBonjour a tous pour commencer ! Je viens de tout installer parfaitement , cela fonctionne MAIS pas vraiment jouable car bcp de freeze . Pour info : macbook pro debut 2015 / 8go ram / intel iris 6100 / 128go ssd Je ne suis pas sur de mon coup car le jeu se lance , l'ordi ne souffle pas du tout , ne chauffe meme pas dc je me demande s'il on pourrait le faire aller un peu plus fort niveau reglage si qqn a des conseils ?? Hesitez pas merci Replies |
o-w-a | Saturday 28 March 2015 at 2:09 |
o-w-a
|
MessageSo I've been experimenting on my MBPr mid 2012 and this decreases battery health significantly! Even with a good cooler the computer gets very hot. Anyone else? Replies |
Lawsomemrb | Sunday 22 March 2015 at 3:09 |
Lawsomemrb
|
MessageI am fairly new to wine/playonmac, so please excuse me for being a bit on the slow side. RepliesWednesday 17 June 2015 at 17:51
|
eikenb | Wednesday 4 March 2015 at 1:11 |
eikenb
|
MessageRuns fine with the various caveats listed in the winehq. Most annoying is the minimap freezes, as you can hit that by accident when in normal play. But been playing and enjoying it for 16+ hours. 14th level alreay. :)
Gnome Ubuntu 14.04, Nvidia proprietary driver (750Ti). Using wine 1.7.37 currently (updated to see if it fixed minimap bug). Replies |
arcanex | Friday 20 February 2015 at 18:51 |
arcanex
|
Message
Salutation à tous les membres De mon côté , le jeux Star Wars The Old Republic fonctionne très bien en tant qu'Inquisiteur Sith.Les mécaniques de jeux son assez fluide mais faite attention à la carte du monde, car si vous le touchiez, le jeu va carrément gelé.Je l'ai testé pendant plus de 5 heures et je vous garantis que vous vous amuseriez. (N'oubliez pas que j'ai testé que sur Mac) Tout ce qui manque à ce jeu c'est seulement la réparation du but de la carte du monde Merci de votre écoute et à l'ans prochaine ????
RepliesFriday 20 February 2015 at 18:52
|
andyg314 | Wednesday 4 February 2015 at 21:55 |
andyg314
|
MessageIt mostly works well, I'm playing and enjoying the game for 8+ hours now.
One bug, others have mentioned is that the game crashes if I mouse over the minimap or use the planet map features (ui disapears, game freezes mucic keeps playing). It's annoying but the game is certainly playable. According to wineHQ(https://appdb.winehq.org/objectManager.php?sClass=version&iId=27088) this is fixed in the wine 1.7.29, has anybody tried this? I might check it out next time I have time to play/tweek. RepliesWednesday 4 February 2015 at 22:10
Wednesday 4 February 2015 at 22:18
Wednesday 4 February 2015 at 22:19
Friday 6 February 2015 at 15:47
|
Ash_sneaks | Thursday 29 January 2015 at 16:04 |
Ash_sneaks
|
MessageBonjour à tous !! Après avoir installé PlayOnMac et SWTOR sur ma machine (Macbook Pro), je vous fais un p'tit retour de mon expérience. Dans un premier temps, le jeu marchait plus ou moins bien, mais depuis hier, impossible de jouer. L'installation c'est très bien passée. Le jeu charge mais bug rapidement. Pour info, j'ai remarqué que les chargements allaient mieux lorsque je fais cmd+tab. Allez savoir si cette manipulation change quelque chose ou pas.. Je ne sais pas si le jeu est dispo depuis un moment ou si des modifs sont encore apportées. En tout cas, si vous voulez d'autres infos d'un utilisateur, n'hésitez pas à me demander. Bonne fin de journée et bon courage !! Flo Replies |
edelmanns | Friday 2 January 2015 at 14:33 |
edelmanns
|
MessageScreen blocked, game crashed after 10 mn of play..... :-( Replies |
Onixbab | Friday 26 December 2014 at 18:23 |
Onixbab
|
MessageLe jeu marche bien sauf quelque petit bug qui cause des crashes du jeu comme: Dès que je passe mon curseur sur une icone de quète le jeu plante Et le jeu plante aussi quand on lance une partie de combat à vaisseau.
Sinon un grand merci ce jeu est genial. En esperant que vous allez pouvoir corriger ces leger bug. Merci d'avance! :)
Replies |
alex9445 | Thursday 27 November 2014 at 23:46 |
alex9445
|
MessageBonjour, Aprés avoir lancé le jeu, je me retrouve avec l'écran de démarrage en arrière fond ce qui empeche totalement de jouer. Es normal ? Merci de votre réponse :) Replies |
Army105 | Thursday 27 November 2014 at 14:12 |
Army105
|
MessageI have it running well on my macbook pro mid 2012. The only issue i have is a slight lag in game every 5 seconds while moving and i slight audio skip while in conversation. Is there a fix for this, and whats the best wine version for this games? Replies |
maqsh | Tuesday 25 November 2014 at 11:04 |
maqsh
|
Message
Hi everyone, The program is working well on my MacbookPro 10.10 (2011) 2,8ghz intel core i7, 4gb memory intel HD graphics 3000. I'm now level 24 and it's a pleasure to play. I just a have few bugs : the game crash when my mouse is going on the little pointed gold circle on the map. This little pointed gold circle represents objects to collects on missions. Also, the game crashs when i'm launching the galactic starfighter mode, after the loading screen. And i also find a strange bug, when i start the game, if the sound level of my computer is off, the game freeze on the first loading screen after the laucnher.
Nevertheless, thanks a lot for this program Replies |
fanno | Thursday 13 November 2014 at 17:35 |
fanno
|
MessageHello, I am new to linux and playonlinux (including wine), I have tried to install this game and i have the game up and running. I can read that others have long start up time and i can live with that also. However it seems the game "crash/freeze" what/how do i need to do to report issues? So curently i would have to say the game is not runnig well.. =/ I have tried some of the advices from the feedback thread, to best of my ability. i would like this working so let me know what feedback i can provide. and how RepliesThursday 13 November 2014 at 18:59
Thursday 13 November 2014 at 20:11
Thursday 13 November 2014 at 20:12
|
darktytanus | Thursday 6 November 2014 at 11:13 |
darktytanus
|
MessageBonjour, heureux de voir que le jeu tourne. J'ai quelque problème de framerate mais ça ce n'est pas grave. Cependant le gros problème c'est que mon jeu freeze. A n'importe quel moment, que ce soit après 2 mn ou 30 mn de jeu, l'écran se fige et je ne peux que quitter le jeu afin de le redémarrer ... C'est un gros problème car en instance ou en quête c'est frustrant de devoir recommencer ou mourir parce que l'on doit redémarrer. Merci de bien vouloir m'aider si possible ^^ Replies |
Aiwings | Sunday 21 September 2014 at 19:10 |
Aiwings
|
MessageHi , I managed to install it on fedora 20. The launcher works fine but I have to wait 1min until the game shows up (not a real problem...) Then the character selection works fine. In game , I experience periodic lags, even in very low graphics. It's playable in standards zones , but not during pvp . My computer runs with Nvidia optimus tech (Nvidia GT-525M - Intel HD Graphic 3000) , so I use bumblebee with optirun / primusrun cmd. I also installed PhysX using playonlinux. Thanks for going this far:) _ Dell xps 15 L502X
Replies |
Pueblo89 | Friday 5 September 2014 at 14:22 |
Pueblo89
|
MessageI got a backtrace file while using Wine 1.7.25 after pointing on a POI on the ingame Minimap. I really dont know if its important. Also i cant find a possibility to add a file to this post or to use a spoiler. But here is the content of this file:
" Unhandled exception: divide by zero in 32-bit code (0x0088f145). "
Hope it helps! Greez Replies |
Bittersteel | Sunday 31 August 2014 at 10:53 |
Bittersteel
|
Messagewhat I have done so far: just installed playonlinux and wine, and finished to fully install swtor using playonlinux. what I experience: when I press play, the screen is black, I can hear the intro movie playing, unable to do anything. once its finish, I recognize im on the character selection screen, and all I see is blackness :p when I rapidly move my mouse i notice a square (a bit grey) in the middle of the screen. I cant do anything at that point :( help :) RepliesSunday 31 August 2014 at 14:30
Monday 1 September 2014 at 2:28
Monday 1 September 2014 at 2:29
|
WarfarinKithwood | Wednesday 6 August 2014 at 18:42 |
WarfarinKithwood
|
MessageI added comctl32, ddrawex, and gdiplus to the libraries in the Wine config and I no longer have any issues (no mini-map issues, freezes, etc). Give that a try. Replies |
Hermes111 | Tuesday 5 August 2014 at 12:40 |
Hermes111
|
MessageThere are more in depth details of the freeze issue at winehq (link below) that many, including myself, are experiencing. It has been present for almost 2 years and has not been able to be fixed yet by anyone on winehq. On a side note, i was mistaken before and my issue is actually part of the "map bug." http://bugs.winehq.org/show_bug.cgi?id=32092 Replies |
Hermes111 | Sunday 3 August 2014 at 14:13 |
Hermes111
|
MessageEverything in the game runs fine, including the map and other stuff that gave others problems, minus the fact that randomly the GUI ingame will disappear and the screen will freeze. The audio however continues to work when this happens. This is the line I get in debug when this occurs: fixme:dbghelp:elf_search_auxv can't find symbol in module
Any ideas how to fix this? I'd really love to play this game RepliesSunday 3 August 2014 at 14:14
Sunday 3 August 2014 at 20:37
Monday 4 August 2014 at 6:40
Monday 4 August 2014 at 6:41
Monday 4 August 2014 at 8:35
Monday 4 August 2014 at 8:52
Monday 4 August 2014 at 9:57
Monday 4 August 2014 at 13:39
|
Quentin PÂRIS | Thursday 31 July 2014 at 13:51 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. Message- Really improves performances on Mac OS Differences@@ -59,7 +59,7 @@ POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" -POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine \"swtor_fix.exe\" &" +POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.22" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF cd "$WINEPREFIX/drive_c/" POL_Download "http://repository.playonlinux.com/divers/swtor_fix.exe" "b3b1edcbee4e130760ebd2e1139cc764" mv swtor_fix.exe "$(dirname "$(find ./ -iname launcher.exe)")" POL_Shortcut "launcher.exe" "$TITLE" POL_Shortcut_InsertBeforeWine "$TITLE" "POL_Wine start /unix swtor_fix.exe \"\$@\"" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesThursday 31 July 2014 at 15:05
Thursday 31 July 2014 at 15:06
Thursday 31 July 2014 at 18:34
Thursday 31 July 2014 at 18:35
Thursday 31 July 2014 at 18:35
Thursday 31 July 2014 at 18:45
Thursday 31 July 2014 at 20:01
Thursday 31 July 2014 at 23:46
Edited by Tinou |
Quentin PÂRIS | Thursday 31 July 2014 at 13:36 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. Differences@@ -18,7 +18,7 @@ POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" -POL_Wine_PrefixCreate "1.7.21-swotor" +POL_Wine_PrefixCreate "1.7.19-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.19-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
squeenix | Thursday 31 July 2014 at 0:06 |
squeenix
|
MessageI have to correct my previous comment. This game does not run well at all, yet. So far it randomly freezes after cutscenes. It also freezes when trying to apply certain settings. It also freezes when I hover certain items (any items?) on the world map. Another bug: After logging in, it happens nothing for about two minutes. Then the game starts. At this point it seems to run well, while it's actually unplayable. I hope for further updates. :) RepliesThursday 31 July 2014 at 2:05
|
squeenix | Wednesday 30 July 2014 at 1:18 |
squeenix
|
MessageSo far the game runs well, I think. However, changing the ingame graphics settings does not really work. The game freezes after hitting the apply button. After killing and restarting it, the new graphic settings are applied, though. Generally I feel like the game is running a lot less smoothly on machine than it previously did under windows. However, overall it's playable and runs well, I guess. Replies |
Masmarino | Saturday 26 July 2014 at 11:01 |
Masmarino
|
MessageThis program runs well but I have a problem now : when I go to the map, the game crashs. It is when I went to watch the green circle's goal... A picture to watch where is the bug : RepliesThursday 17 March 2016 at 13:54
|
timorlee | Sunday 6 July 2014 at 19:07 |
timorlee
|
MessageThe Game itself won't launch... after the Login Splash, after I press Play, nothing happens. (Wine does make many fixmes for a while, then stops and sits there). I've waited for at least 8-10 minutes.
Here the debug info:
Running wine-1.7.21-swotor launcher.exe (Working directory : /home/[user]/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic)fixme:iphlpapi:NotifyAddrChange (Handle 0x32cbbc, overlapped 0x30eaeb0): stub fixme:winsock:WSALookupServiceBeginW (0x32cc68 0x00000ff0 0x32cca4) Stub! [0706/185916:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8 fixme:ole:RemUnknown_QueryInterface No interface for iid {00000019-0000-0000-c000-000000000046} err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x326838,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x324428,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x3247f8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x326828,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x326828,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x326868,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x326808,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x77fa258,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:win:EnumDisplayDevicesW ((null),0,0x77f90d8,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x77f8ed8,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x329db8,0x00000000), stub! fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot fixme:toolhelp:Heap32ListFirst : stub fixme:win:EnumDisplayDevicesW ((null),0,0x32a328,0x00000000), stub! fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform fixme:file:MoveFileWithProgressW MOVEFILE_WRITE_THROUGH unimplemented fixme:win:EnumDisplayDevicesW ((null),0,0x329c58,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x329de8,0x00000000), stub! fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x30eaeb0): stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc9c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 1 C) semi-stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f338,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:win:EnumDisplayDevicesW ((null),0,0x33e618,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33e418,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:win:EnumDisplayDevicesW ((null),0,0xadcdfd8,0x00000000), stub! fixme:d3d:wined3d_check_device_format_conversion wined3d 0x1aa7b0, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub! fixme:ntdll:NtCreateJobObject stub: 0xadce67c 1f001f fixme:ntdll:NtSetInformationJobObject stub: 0xdead 9 0xadce7ac 112 fixme:ntdll:NtAssignProcessToJobObject stub: 0xdead 0x1a8 fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadce588 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadce3e8 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xb0ce43c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc9c 1 C) semi-stub fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 1 C) semi-stub fixme:win:EnumDisplayDevicesW ((null),0,0x33f338,0x00000000), stub! fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030 fixme:wbemprox:enum_class_object_Next timeout not supported fixme:win:EnumDisplayDevicesW ((null),0,0x33e618,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),0,0x33e418,0x00000000), stub! fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}. fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {33d9a761-90c8-11d0-bd43-00a0c911ce86} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb41-f175-11d1-a392-00e0291f3959} not found fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaace8e4,0xaace8e0): stub RepliesSunday 6 July 2014 at 19:16
Sunday 6 July 2014 at 19:22
Sunday 6 July 2014 at 19:22
Sunday 6 July 2014 at 19:43
Sunday 6 July 2014 at 21:21
Monday 7 July 2014 at 11:17
Monday 7 July 2014 at 21:33
Tuesday 8 July 2014 at 23:17
Tuesday 8 July 2014 at 23:18
Saturday 12 July 2014 at 1:32
Saturday 12 July 2014 at 1:34
Edited by Tinou |
Quentin PÂRIS | Sunday 6 July 2014 at 13:54 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. Differences@@ -50,6 +50,7 @@ #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" +cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.21-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Quentin PÂRIS | Sunday 6 July 2014 at 13:44 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. MessageFixes the previous problem Differences@@ -50,6 +50,7 @@ #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" +cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.21-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings #POL_LoadVar_PROGRAMFILES #cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cd "$WINEPREFIX/drive_c" cat << EOF > "$(find ./ -iname launcher.settings)" {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesEdited by Tinou |
wil_sly | Sunday 6 July 2014 at 1:10 |
wil_sly
|
MessageAfter a first install, it doesn't work at all, the installation process doesn't work at the end ("you don't install the program at the right place" or something like that, i send you the exact report with the playonlinux apllication). I retry the installation by erasing everything and this time, it seems that it works proprely at least it's currently downloading the game (1,69 Go). I'll tell you the next step when it'll be finished. Thanks for the job anyway Wil RepliesSunday 6 July 2014 at 1:25
Sunday 6 July 2014 at 1:40
Sunday 6 July 2014 at 9:26
Sunday 6 July 2014 at 14:59
Monday 7 July 2014 at 11:53
|
Quentin PÂRIS | Saturday 5 July 2014 at 21:31 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. Differences@@ -56,6 +56,7 @@ POL_Shortcut "launcher.exe" "$TITLE" +POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close New source code#!/bin/bash # Date : (2013-07-08 11-01) # Last revision : (2013-07-08 11-01) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.21-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings POL_LoadVar_PROGRAMFILES cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cat << EOF > launcher.settings {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF POL_Shortcut "launcher.exe" "$TITLE" POL_Call POL_Message_OSXFlicker POL_System_TmpDelete POL_SetupWindow_Close exit 0 Replies |
Quentin PÂRIS | Saturday 5 July 2014 at 20:45 |
Quentin PÂRIS
|
WarningThis update has not been approved yet by the team. Differences@@ -1,6 +1,6 @@ #!/bin/bash -# Date : (2013-07-08 11-01) -# Last revision : (2013-07-08 11-01) +# Date : (2013-07-05 21-31) +# Last revision : (2013-07-05 21-31) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS @@ -14,14 +14,14 @@ POL_SetupWindow_Init POL_Debug_Init - + POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" - + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.21-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" - + POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client New source code#!/bin/bash # Date : (2013-07-05 21-31) # Last revision : (2013-07-05 21-31) # Wine version used : 1.7.21-swotor # Distribution used to test : 1.7.21-swotor # Author : Quentin PÂRIS [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Star Wars: The Old Republic" PREFIX="SWTOR" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "LucasArts & Bioware" "http://www.swtor.com" "Quentin PARIS" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "1.7.21-swotor" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" POL_System_TmpCreate "$PREFIX" if [ "$INSTALL_METHOD" = "DOWNLOAD" ]; then # Downloading client cd "$POL_System_TmpDir" POL_Download "https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe" "55e4c9d4a6566d38a9ce978cf0e8f80f" SETUP_EXE="$PWD/SWTOR_setup.exe" else # Asking for client exe cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" SETUP_EXE="$APP_ANSWER" fi POL_Call POL_Install_msxml3 POL_Call POL_Install_msls31 POL_Call POL_Install_winhttp POL_Call POL_Install_vcrun2008 POL_Call POL_Install_d3dx9 POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$SETUP_EXE" POL_Wine_WaitExit "$TITLE" # Update the launcher settings POL_LoadVar_PROGRAMFILES cd "$WINEPREFIX/drive_c/$PROGRAMFILES/Electronic Arts/BioWare/Star Wars-The Old Republic" || POL_Debug_Fatal "You did not install the program to the default location!" cat << EOF > launcher.settings {"DevLogin":"","Login":"","EnableAutoEnvironment":"false","LastEnvironment":"","LastProduct":"","loglevels":"INFO,SSNFO,ERROR","P2PEnabled":"false","enableRateLimit":"false","uploadRate":"0","downloadRate":"0","language":"fr-fr","SpecHash":"","AutoClose":"NONE","KillKillProc":"false","InternalLaunchpad":"null","InternalGamepad":"null","ExternalLaunchpad":"null","ExternalGamepad":"null","LastMode":"PROD","HardPatcherMode":"PROD", "PatchingMode": "{ \"swtor\": \"SSN\" }"} EOF POL_Shortcut "launcher.exe" "$TITLE" POL_System_TmpDelete POL_SetupWindow_Close exit 0 RepliesSaturday 12 July 2014 at 1:36
Saturday 12 July 2014 at 11:14
Sunday 10 January 2016 at 16:47
Sunday 10 January 2016 at 16:49
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