Star Wars: The Old Republic

Informations

Creator Mensajes
Quentin PÂRIS Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 131815
Wine: 5.12

Feedbacks

Description

Massively multiplayer online role-playing game (MMORPG) based in the Star Wars universe. 2011.

Wikipedia. Appdbwinehq.org  PCGamingWiki.

Screenshots

MiniatureMiniature

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

Contributions

Filters:

Contribute
Member Mensajes
jaspersedi Monday 6 September 2021 at 1:01
jaspersedi Anonymous

Mensajes

Hello everyone,

This may be a very dumb question.  (I'm no tech expert), but the issue seems to involve executables in playonmac and their interactions with MacOS.  I'm no expert on PlayOnMac so any help you have would be much appreciated.

I've been running SWTOR on a 2019 MacBook Pro, using macOS Mojave 10.14.6 and PlayOnMac 4.3.4 using 3.10-staging since August 2019. I've never had any problems until this most recent SWTOR patch this past Tuesday. It worked fine Monday, but since the patch Tuesday I keep getting a blank server list every time I log in.  PlayOnMac still launches the application.  But I can't connect to the SWTOR servers.  My Internet still works fine, I've restarted the computer and reset the router.  It happens everytime I log in, so I'm assuming this is some sort of issue with my Mac blocking connections to this application.

I contacted SWTOR customer support and they indicated that the recent SWTOR patch included updates to the launcher which can cause firewalls to see the launcher as an entirely new program.  The quote from SWTOR Customer Service is here:


"Check that both swtor.exe and launcher.exe are allowed through their Firewall/antivirus.

As the last update included an update to the launcher, you may need to remove and re-add the two files above to their whitelist. This is because some anti-virus and firewall programs will see the updated launcher as an entirely new program."
 

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.

OSX Version:  macOS Mojave 10.14.6
PlayOnMac Version:  PlayOnMac 4.3.4
Graphics Card:  Intel Iris Plus Graphics 645 1536 MB

 

[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

Respuestas

Varanops Thursday 10 December 2020 at 12:13
Varanops Anonymous

Mensajes

Hello 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
Binary not found: launcher.exe
Have you installed the program to the default location?"

 

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

Respuestas

Editado por: Varanops

kristofm Thursday 23 July 2020 at 19:30
kristofm Anonymous

Mensajes

During 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)

Respuestas

Anonymous
Thursday 23 July 2020 at 19:34
I've tested it on Catalina 10.15.6
Anonymous
Friday 7 August 2020 at 4:05
I experienced the same, though it appears I am still on 10.15.4.
Anonymous
Sunday 9 August 2020 at 13:03
same thing for me. Impossible to instal
Sunday 9 August 2020 at 13:12
The link does still work for me (manually, OS Linux): DOWNLOAD_URL="https://swtor-a.akamaihd.net/installer/SWTOR_setup.exe"
Anonymous
Sunday 9 August 2020 at 13:55
Some other links don't work during the instalation.
HTTPS://web.archive.org/web/20190913165356/http://download.microsoft.com.
https://web.archive.org/web/2016071005585if_/http://download.microsoft.com.
And finally, https://repository.playonlinux.com/divers/swtor_fix.exe
Anonymous
Thursday 13 August 2020 at 2:15
Attempted to try installing from a manually downloaded exe with the wizard, but still ran into the issue with the rest of the broken links.
Yaotl Thursday 16 July 2020 at 1:38
Yaotl Anonymous

Information

This 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

Respuestas

Anonymous
Thursday 16 July 2020 at 13:52
edited again
Thursday 16 July 2020 at 21:20
Script approved.

Editado por: Yaotl

Keika Wednesday 13 May 2020 at 14:06
Keika Anonymous

Mensajes

Hello,

 

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

 

screenshot

Respuestas

Anonymous
Wednesday 8 July 2020 at 13:37
Almost the same here. I tried to install it on Catalina, and it stuck at "Please wait while the virtual drive is being created"
Anonymous
Wednesday 15 July 2020 at 19:02
I tried it again with 4.4.1, but it doesn't download anything from the apps during the installation. It just keeps giving error messages that there is a problem with the download, but when I try again it tells the same. So installing The Old Republic is still not possible.

Editado por: Dadu042

Dadu042 Thursday 19 March 2020 at 4:57
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

johnnymacc Tuesday 26 November 2019 at 0:41
johnnymacc Anonymous

Mensajes

Hi 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. 
I really need help to repair the files, i've got a lot a error message during installation : vcredistx86// pol download ressources// md5 mismatch// POL WINE // WKSP2.
ive read many things on the forum, and on other sites, 
But still, is the game working with play on mac? 

reading you we can suppose that it's partly working. 
and if it's working, what should i do to make it work? Should I modify the game script ?

i've changed the wine version, try to reinstall again differently...
Should i really buy a PC just to play SWTOR ? 

i hope no.

Sorry for my english.

thanks

Respuestas

Anonymous
Thursday 23 January 2020 at 4:32
OK,
no answer.
Does that mean the programm is not working ? or has it Working for anyone?
Anonymous
Friday 24 January 2020 at 1:46
Well, thanks.
I suppose i had to copy the scripts somewhere, but I don't know where. so thanks for the help was nice :D
JC_Eternium Saturday 9 November 2019 at 3:36
JC_Eternium Anonymous

Mensajes

So, when this program runs, it runs really well! I have no issues logging in!


I just can't get it passed the initial loading screen.

I don't know WHY it won't work, and I can't find any fixes for this. I have tried removing the Bitfolder thing a couple times, and even ran the Launcher Repair, which is how I got it running the first time. Now? It just doesn't run. Can someone help?

Respuestas

M3r4d3 Thursday 17 October 2019 at 21:36
M3r4d3 Anonymous

Mensajes

Currently 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.

 

 

 

 

Respuestas

Thursday 17 October 2019 at 22:31
A user provided a patch. The vcrun2008 script worked until july 2019, Microsoft removed the files.
About POL functions, this is described in the Wiki.
Anonymous
Saturday 19 October 2019 at 10:47
If you proceed past the Visual C++ error, it appears the attempted installation of W2KSP4_EN.EXE appears to give a similar checksum error.
Anonymous
Monday 21 October 2019 at 10:34
You do realise it's actually the new version of POL_Install_vcrun2008 that I'm saying has the bad link?
Aital Tuesday 17 September 2019 at 1:48
Aital Anonymous

Mensajes

https://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.

Respuestas

Thursday 19 March 2020 at 4:53
I looked at the video, it recommends to edit the text file "launcher.settings" and to change "Bitraider_disable" -> true .
Dadu042 Friday 6 September 2019 at 23:54
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Released 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

Respuestas

Yaotl Monday 8 July 2019 at 12:50
Yaotl Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Wednesday 10 July 2019 at 21:03
Approved (not tested yet).

Editado por: Yaotl

Dadu042 Friday 5 July 2019 at 12:39
Dadu042

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

See 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

Respuestas

ummetal Friday 5 July 2019 at 9:38
ummetal Anonymous

Mensajes

May 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

Respuestas

Anonymous
Friday 5 July 2019 at 9:40
I further look inside it is stuck at the install.exe which is the XQuartz. I tried to install the XQuartz app for mac successfully, but it won't help and still stuck there.
Yaotl Monday 18 March 2019 at 0:16
Yaotl Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Thursday 27 June 2019 at 17:39
Approved. Yaolt, a changelog zone would be welcome.
Friday 5 July 2019 at 18:24
I tried this script, problem as soon as the "end user licence" appear : the text is missing, did you notice the issue ?. https://ibb.co/tCKGryV    This issue does not occurs if I replace Wine 4.3 by 3.0.5  (Right display: https://ibb.co/WnjZsJn ).
Anonymous
Wednesday 10 July 2019 at 17:46
I first thought 3.x that's from 1804. sorry! I tested 3.0.5, and it works fine. I would agree.
Yaotl Thursday 14 June 2018 at 9:47
Yaotl Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

jayquon108 Thursday 22 February 2018 at 0:09
jayquon108 Anonymous

Mensajes

The 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?

Respuestas

Anonymous
Saturday 24 March 2018 at 5:19
As far as I'm concern. The planets freezing the game are large maps/instances (i.e. Alderaan, Hoth and Tatooine). Some speculate the issue is due to the macOS High Sierra. If you are running that OS, it might be the problem, but I was suggested to use this solution: GLSL Support, enable it
Direct Draw Renderer, OpenGL
Video memory size, whatever yours is
Don't touch offscreen rendering mode
Don't touch render target mode lock
Don't touch multisampling
Strict draw ordering, disable it No guarantees it will work, as all computers work differently. Unfortunately, it didn't work for me and I'm still waiting for a proven solution for a month or two now. Hope this info helps. I've noticed not a lot of helpful tips lately, so I thought I should chip with what I've checked so far.
artyurad Wednesday 21 February 2018 at 22:58
artyurad Anonymous

Mensajes

Error with creating driver WineBus. Fedora 26, Wine 2.21 stagging.

Respuestas

morgul Wednesday 31 January 2018 at 16:56
morgul

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Wednesday 31 January 2018 at 17:06
Same script with author name override. Duplicate ?
Wednesday 31 January 2018 at 17:14
This has fixed launcher settings from my previous one. Note: The game plays better if you change all of the DirectX libs from "native, builtin" to "builtin, native". I will experiment with the script more to see if we can eliminate installing the direct x components at all.
Wednesday 31 January 2018 at 17:16
Ah, I thought author name was of the current revision, not overall. I'm sorry. :)
Thursday 1 February 2018 at 14:47
I just need other to test that script to be sure it's work on other system :)
Anonymous
Tuesday 20 February 2018 at 7:59
We have a slight issue. I don't know of a fix for this. No chance to upload a picture for you to see? There is a files mismatch involving W2KSP4_EN.EXE. The local doesn't match the server. No matter how many times I retry, still no luck.
morgul Wednesday 31 January 2018 at 5:22
morgul

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Wednesday 31 January 2018 at 5:40
With wine-staging, swtorfix is no longer needed. Also pulling in the other updates suggested, and removing the french language selection.
Wednesday 31 January 2018 at 16:54
Thanks to not override other Author name. If someone can test these patch (other than you) to confirm, I can accept it :)
Nemazu Sunday 28 January 2018 at 14:45
Nemazu Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Nemazu Sunday 28 January 2018 at 14:42
Nemazu Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Nemazu Sunday 28 January 2018 at 13:02
Nemazu Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

arnosloma Sunday 19 November 2017 at 23:43
arnosloma Anonymous

Mensajes

"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

 

 

 

Respuestas

Anonymous
Monday 20 November 2017 at 0:04
et si je réussis a installer le launcher manuellement je reçois le message "échec de l'authentication du certificat"
ahjolinna Saturday 21 October 2017 at 19:35
ahjolinna

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

this version should ...hopefully work.

why wine-staging 2.18? a lower version may work for other distros (and Mac) but after freetype 2.8.1 update broke wine the 2.18+ version become a requirement....and why staging (in general)? it has the needed patches for SWTOR to work out of the box.

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 

Respuestas

Anonymous
Friday 17 November 2017 at 5:02
I attempted to install this on my Macbook Pro.

I'm successful in installing the launcher, however, after I login, I'm not able to download the game.
Anonymous
Friday 17 November 2017 at 5:02
I attempted to install this on my Macbook Pro.

I'm successful in installing the launcher, however, after I login, I'm not able to download the game.
Anonymous
Friday 17 November 2017 at 5:03
Sorry for the multiple posts. More info:
When it tries to download the game, I get this:
https://screenshot.click/16-11-17-cn3mb-mv846.jpg

Not sure what's happening here. Do I need to install anything else for this to work?
Anonymous
Friday 22 December 2017 at 5:32
I keep getting the same thing. Did you figure it out?
OkiFedora Tuesday 5 September 2017 at 22:52
OkiFedora Anonymous

Mensajes

I'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?

Respuestas

Anonymous
Wednesday 6 September 2017 at 10:33
Update: I uninstalled and reinstalled SWTOR, set to Wine 2.14 Staging before running for the first time. Not sure what it was, but my download is sailing now at an average speed of 700-800KB/s. One note, there were t
Anonymous
Wednesday 6 September 2017 at 10:34
One note, there were two errors during installation. Both were "Error ! Files mismatch". One for InstMsiW.exe and W2KSP4.EXE. I kept pressing with the install. Are those going to be critical later?...
Anonymous
Friday 8 September 2017 at 15:05
Update: despite the errors, the game installed and I've been successfully playing the last two days. Seems pretty solid. No errors or glitches yet...
Chameleon444 Wednesday 30 August 2017 at 18:45
Chameleon444 Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Movies 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 

Respuestas

Anonymous
Friday 1 September 2017 at 0:33
This update does not work for me. Application tries to run but then force closes.
Anonymous
Friday 17 November 2017 at 6:32
This update downloads for me where the above update will not begin downloading on Macbook Pro
Shakuniboss Sunday 27 August 2017 at 16:07
Shakuniboss Anonymous

Mensajes

Is swtor working for anyone?

Respuestas

Anonymous
Monday 28 August 2017 at 13:38
Yes you will just have to use 2.14-staging wine version instead of any other version and it will work
gwynplaine Saturday 26 August 2017 at 9:54
gwynplaine

Mensajes

CORRECTION!

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!

I return to my post or I marked that the game did not work with wine 2.14; After verifying, I have installed version 2.14 staging that run the game; But I waited to be on to post here, this message:

You have to modify the version wine (configure then on the general tab) for version 2.14 staging that supports the sha 256 certificate.

The game works but swtor fix plant at startup, which does not prevent the game from getting started and that one can play.

For more precision on the installation and if you need, I will make a small tutorial.

 

Respuestas

Anonymous
Saturday 26 August 2017 at 16:30
Yes could u please make a small guide to help me? Thx so much for your continued support for us players :)
Anonymous
Saturday 26 August 2017 at 17:11
Could u also tell us if we need to install from POL or from the swtor website? And which version of wine do we need?
Anonymous
Saturday 26 August 2017 at 17:11
I have 1.75.3 and 2.14 staging installed but it isn't working
Anonymous
Sunday 27 August 2017 at 3:05
Ok I just did a fresh install using 1.75.3 and 2.14 staging but it still says certificate authentication failure and crashes. Also if I use the workaround it will not update to 5.4. it says network error 206
Monday 28 August 2017 at 8:29
Do not install the wine version 2.14 but the wine version 2.14 staging. I will make a tutorial.
Anonymous
Monday 28 August 2017 at 10:13
swtor_fix.exe isn't needed anymore in wine staging ;)
All those changes are in the POL5 script ->https://github.com/PhoenicisOrg/Scripts/blob/master/Applications/Games/STAR%20WARS:%20The%20Old%20Republic/Online/script.js
Monday 28 August 2017 at 14:26
I tank you
gwynplaine Friday 25 August 2017 at 15:02
gwynplaine

Mensajes

avec 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.

Respuestas

incomingfire Tuesday 22 August 2017 at 23:51
incomingfire Anonymous

Mensajes

I 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.

Respuestas

American_Desi Sunday 20 August 2017 at 6:03
American_Desi Anonymous

Mensajes

When 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. 

 

 

 

 

Respuestas

Anonymous
Tuesday 22 August 2017 at 23:49
I was able to get it to work by following the steps in this reddit comment: https://www.reddit.com/r/swtor/comments/6qyz4v/certificate_authentication_failure/dl14ju7/
ahjolinna Wednesday 9 August 2017 at 15:45
ahjolinna

Mensajes

again, 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."

Respuestas

Wednesday 9 August 2017 at 16:04
how to get the/switch the wine version in PlayonLinux(/Mac):
1st) go to "Tools" -> "Manage Wine versions" ... select "2.14-staging" in "Available Wine version" (when it has arrived there)

2nd) then select SWTOR and select "Configure" and in the "General" section there is "Wine version" where you will choose 2.14-staging

optional: if you have wine-staging (2.14) installed in your system instead then you skip the 1st part and choose in 2nd part "System" instead
Anonymous
Wednesday 9 August 2017 at 20:40
According to the wine staging website version 2.14 is now available but it hasn't shown up on playonmac yet so hopefully this will all be fixed soon.
Anonymous
Wednesday 9 August 2017 at 23:45
I downloaded the 2.14. staging package and followed the on-screen prompts, does that count as being installed in the system or is there more?
Anonymous
Wednesday 9 August 2017 at 23:54
There is currently no Wine Staging 2.14 on downloadable wine section for me.
Thursday 10 August 2017 at 7:49
unfortunately when it comes to mac I can't help as I'm a Linux only user
Anonymous
Thursday 10 August 2017 at 9:33
If you install the version of wine-staging 2.14downloadable installer from winehq, with its default settings, that then becomes what Playonlinux (or Mac) refers to as the 'system' version. Select that as the version to use with SWTOR, and you're good to go. No need to wait for Payonlinux to update their list.
Anonymous
Thursday 10 August 2017 at 15:48
Okay. UT how does the wine staging 2.2.14 automatically configure itself when Swtor is opened?
Anonymous
Friday 11 August 2017 at 0:11
How do you select 2.14 as the system version to use in PlayonLinux? Do a manual intstall of the game on Play on Linux?
Anonymous
Friday 11 August 2017 at 0:22
So figured it out, followed the guide on installing wine-staging and 2.14, and the client now does a fatal error about needing administrative permission. Did a manual install of the client through playonlinux and used the SWTOR_setup.exe file for the install. Not sure what the issue is.
Anonymous
Friday 11 August 2017 at 0:28
During manual install, I selected "system" version of wine after installing 2.14 staging. So not sure what's up.
ahjolinna Saturday 5 August 2017 at 21:39
ahjolinna

Mensajes

SWTOR 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

Respuestas

Anonymous
Tuesday 8 August 2017 at 3:31
Will playonmac update the wine for me when its ready or do I have to do something on my end? Also I went on wines website and the version playonmac uses to download SWTOR is 17.53 which was released in Oct. of 2015. Does anyone know if there is a specific reason for that or is it because playonmac is a free program?
Tuesday 8 August 2017 at 20:09
It is a translation of the French.

It is possible to modify the version of wine in the configuration of the game in playonlinux:

Tools> wine version

And install the version of wine 2.13

Then click on the game and click on configuration.

In the tab, general; We can modify the version of wine that the game uses.

Normally, starting from 2.12, wine would be expected to manage the
Certificates sah-2 (sha 256) but it does not seem to work with
Star wars the old republic.
Anonymous
Wednesday 9 August 2017 at 0:00
I figured out how to change the wine version but even with version 2.14 I still get authentication error.
Anonymous
Wednesday 9 August 2017 at 1:40
Huh, you're posting in the future...I'm impressed
gwynplaine Friday 4 August 2017 at 8:23
gwynplaine

Mensajes

j'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

  1. Assurez-vous qu'il n'y a pas de processus launcher.exe en cours d'exécution; S'il existe, le tuer dans le Gestionnaire des tâches.
  2. Modifiez le fichier "launcher.settings" dans votre dossier SWTOR, ajoutez la ligne suivante:

    , "skip_self_patch": true

  3. Téléchargez l'ancien lanceur ici et extrayez tous les fichiers dans votre répertoire SWTOR.

    Si vous ne nous faites pas confiance, vous pouvez également utiliser l'ancienne Utilitaire de réparation du lanceur pour restaurer le lanceur à la version précédente, mais faites une sauvegarde de votre fichier launcher.settings au préalable parce que cet outil le réinitialisera.

Respuestas

Anonymous
Friday 4 August 2017 at 21:11
??????? ??????? ?? ???????:
Anonymous
Friday 4 August 2017 at 21:15
It works for me. Thank you.
Anonymous
Saturday 5 August 2017 at 11:01
The launcher starts, an update is done automatically,the launcher automatically closes, and it is impossible to open it, but in any case I no longer have the problem of certificate... Did I miss something?
Anonymous
Saturday 5 August 2017 at 21:01
I wish I could understand these better so I can apply it. It translates from French and I am still not sure of the step by step process of this.
Anonymous
Sunday 6 August 2017 at 13:12
Bonjour, même problème que Stumper, le lanceur démarre et essaie de télécharger le nouveau lanceur et plante, impossible de relancer ensuite... Je sais plus quoi faire
Monday 7 August 2017 at 18:05
voila la réponse en anglais :
Monday 7 August 2017 at 18:05
voila la réponse en anglais : https://www.reddit.com/r/swtor/comments/6qyz4v/certificate_authentication_failure/
Monday 7 August 2017 at 18:06
There may be a workaround for players getting the "Certificate authentication failed" error. For this, you will go back to the previous launcher and prevent the launcher from updating to the current version.

Big caveat: This is, at most, a temporary fix. Once the certificates expire in October 2017, the old launcher will no longer work. Also, even before that, there will likely be a patch that renews the certificate on the swtor.exe process, and then you'll get the same error message when trying to start the game.

Make sure there is no launcher.exe process running; if there is, kill it in Task Manager.

Edit the "launcher.settings" file in your SWTOR folder, add the following line:

, "skip_self_patch": true

Download the old launcher here and extract all files into your SWTOR directory.

If you don't trust us, you can also use the old Launcher Repair Utility to restore the launcher to the previous version, but make a backup of your launcher.settings file beforehand because that tool will reset it.

Since we are not using Wine, we cannot test whether this works, so please let us know if it works for you.

If you are getting any issues or if the launcher is fixed, you can just delete the "skip_self_patch" line and the launcher should automatically update to the current version the next time you run it.
Monday 7 August 2017 at 18:09
sur reddit : https://www.reddit.com/r/swtor/comments/6qyz4v/certificate_authentication_failure/
Anonymous
Thursday 10 August 2017 at 2:28
Bonjour @gwynplaine, je suis désolé, je suis vraiment perdu avec cette installation. De quel fichier SWTOR parlez-vous ? J'ai essayé de l'installé avec PlayOnMac, mais cela ne marche pas. Je ne comprends pas bien vos explications, serait-il possible de détailler pas à pas pour un novice ? Je vous en serais infiniment reconnaissant.
Friday 25 August 2017 at 15:19
avec la mise a jour 5.4, le jeu n'est pour le moment plus compatible.. je vous répond dès que j'ai une solution
imhill97 Thursday 3 August 2017 at 6:01
imhill97 Anonymous

Mensajes

I 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.

Respuestas

Stumper Wednesday 2 August 2017 at 19:24
Stumper Anonymous

Mensajes

and i have a second problem ^^' File inconsistency sad I really do not know what to do by waiting i look everywhere but without result unhappily ! indecision

Respuestas

Stumper Wednesday 2 August 2017 at 16:54
Stumper Anonymous

Mensajes

When lauching the game, i have problem:"Certificate authentication failed,please contact customer support"

 

Please help me ! crying

Respuestas

Anonymous
Wednesday 2 August 2017 at 18:45
Hi , exactly same problem here after an update on tuesday 1 august 2017, and another new problem of version missmatch when i try to install swtor with playonlinux , thanks to all for help :)
Anonymous
Wednesday 2 August 2017 at 21:57
Same problem here. Their Fixlauncher app delivers the same message, as well (so it doesn't do much fixing).
Anonymous
Thursday 3 August 2017 at 0:01
i think the problem will be solve automaticly at next launcher update , maybe tuesday or wednesday of next week , i already have this problem and it'll be solve at the next launcher update , but when installing swtor with playonlinux i have a new problem wich say , missmatch version while installing launcher .
oblednov Wednesday 26 July 2017 at 8:24
oblednov Anonymous

Mensajes

If 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:

  1. "PatchingMode": "{ \"swtor\": \"BR\" }"  --> "PatchingMode": "{ \"swtor\": \"SSN\" }"
  2. "bitraider_disable": false --> "bitraider_disable": true

Try the launcher again. Worked for me.

Respuestas

Barais Sunday 2 July 2017 at 6:52
Barais Anonymous

Mensajes

Every 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. 

Respuestas

TAJTHEGAMER Sunday 28 May 2017 at 16:39
TAJTHEGAMER Anonymous

Mensajes

This 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

Respuestas

ahjolinna Thursday 18 May 2017 at 0:39
ahjolinna

Mensajes

everything 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."

 

Respuestas

Thursday 18 May 2017 at 0:56
oh and it seems "the old dependencies on winetricks are not needed with wine 2.7+ anymore." https://appdb.winehq.org/objectManager.php?sClass=version&iId=34946
Gregshadow Monday 15 May 2017 at 15:41
Gregshadow Anonymous

Mensajes

I 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.

Respuestas

Anonymous
Monday 15 May 2017 at 16:38
Maybe you should try changing the wine version to 2.7 or 2.8 in the configuration of POL for that program, and see what happend

https://appdb.winehq.org/objectManager.php?sClass=version&iId=34946

Seems SWTOR is perfectly working under wine 2.7
Anonymous
Monday 15 May 2017 at 16:40
* what's happening (it's better i suppose)
Anonymous
Wednesday 17 May 2017 at 18:25
I upgraded mine to 2.8. I just checked this morning and the same problem occurs.
Anonymous
Wednesday 17 May 2017 at 21:04
That's weird, SWTOR seems to ork properly with wine 2.7
https://appdb.winehq.org/objectManager.php?sClass=version&iId=34946

Go to the config menu of POL, open a terminal (from pol), go to your .exe location and make this command "wine STOR.exe &>log.txt"

I don't know the name of the .exe, indeed. Then you send me the log file (it's located near the .exe), maybe we will see something interessant in it.
Anonymous
Wednesday 17 May 2017 at 21:04
*work
baileyrw Monday 24 April 2017 at 4:51
baileyrw Anonymous

Mensajes

Can 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

Respuestas

Horigo Sunday 9 April 2017 at 14:43
Horigo Anonymous

Mensajes

Work perfectly

Respuestas

trisimix Wednesday 21 December 2016 at 17:05
trisimix Anonymous

Mensajes

So 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
err:winediag:schan_imp_init Failed to load libgnutls, secure connections will not be available.
fixme:iphlpapi:NotifyAddrChange (Handle 0x32cbbc, overlapped 0xeeaf60): stub
fixme:winsock:WSALookupServiceBeginW (0x32cc68 0x00000ff0 0x32cca4) Stub!
[1221/045914: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
ALSA lib dlmisc.c:254:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
ALSA lib dlmisc.c:254:(snd1_dlobj_cache_get) Cannot open shared library /usr/lib32/alsa-lib/libasound_module_pcm_pulse.so
fixme:win:EnumDisplayDevicesW ((null),0,0x326908,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x326718,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3244f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x324308,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3248c8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3246d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3268f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3266f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3268f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3266f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x326938,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x326738,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3268d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3266d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x4cfa338,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x4cfa148,0x00000000), stub!
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported

 

Respuestas

ceciliarosegrey Tuesday 22 November 2016 at 12:56
ceciliarosegrey Anonymous

Mensajes

It shows server mismatch for mslm and it hangs upon downloading video 5

 

Linux mint 18, 16.04 64 bit amd

Respuestas

jeremyofmany Thursday 25 August 2016 at 3:55
jeremyofmany

Mensajes

Linux 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
and changed the resolution to 1360x768.

When I run SWTOR, SWTOR_fix.exe comes up and hangs at "Waiting for threads to end..."
The playonlinux.log shows this:

[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

Respuestas

Thursday 25 August 2016 at 3:58
If anyone has any solutions, ideas, suggestions to assist me, I would greatly appreciate it. Thank you.
Anonymous
Thursday 15 September 2016 at 1:40
Have the same problem.
Anonymous
Sunday 23 April 2017 at 10:24
Same error, same log. This game used to work, now it just gets stuck with no other window than the one waiting for threads to end.
Anonymous
Sunday 23 April 2017 at 10:26
Ok, just updated wine version to 2.6 and now it works again!
GraphicLevel Wednesday 13 July 2016 at 19:41
GraphicLevel Anonymous

Mensajes

Voilà, 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!

Respuestas

Anonymous
Sunday 28 August 2016 at 0:50
Excuse moi, mais tu as réussit a avoir une réponse toi? moi je joue sur netbook j'essaie de l'installer mais il veut pas se lancer correctement...
Raiderwolf Monday 20 June 2016 at 20:32
Raiderwolf Anonymous

Mensajes

I 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.

Respuestas

th1967 Friday 10 June 2016 at 14:49
th1967 Anonymous

Mensajes

Dear 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.

Respuestas

Anonymous
Friday 10 June 2016 at 14:51
Note that the mentioned trouble actually happened before entering the installation wizard of the game.
Anonymous
Friday 10 June 2016 at 14:56
By quiting I got the message "Error in POL_Download_Resource POL_Download_Resource-md5sum mismatch! (3 tries)".
Anonymous
Sunday 12 June 2016 at 11:11
Nevertheless the installation could be performed. But the game freezes each time it is used. The freezing takes place just after the choice of a game character and a retart of ubuntu seems to be necessary.
Anonymous
Monday 20 June 2016 at 20:36
th1967, Sounds like to me the installation file is corrupt or didn't finish downloading.
Sorbonne Tuesday 10 May 2016 at 8:07
Sorbonne Anonymous

Mensajes

Hi, 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 :)

 

 

Respuestas

Anonymous
Wednesday 22 June 2016 at 21:50
Intel "graphics" are practically worthless for playing games:
Anonymous
Wednesday 22 June 2016 at 21:51
http://www.videocardbenchmark.net/gpu.php?gpu=Intel+HD+6000
Anonymous
Thursday 23 June 2016 at 13:45
What you are experiencing is what you should expect for what you have, integrated graphics from Intel.
Anonymous
Tuesday 21 February 2017 at 3:48
Thanks for this. I guess I wont be playing this game.
classl3ss Sunday 17 April 2016 at 7:54
classl3ss Anonymous

Mensajes

I am trying to run Star Wars the Old Republic but it doesn't make it past the launcher most of the time. If it does, the game will load after 8-15 minutes.

 

Any solutions? Thanks in advance for y'alls help!

 

I am running ubuntu 15.10 with a gnome shell

Intel Core i7-2600 CPU @ 3.40GHz × 8

GeForce GTX 960/PCIe/SSE2

16gigs of ddr4

I have the latest version of PlayonLinux installed and am using wine version 1.7.2.1-swotor

 

Here is the debug log:

[04/16/16 15:05:21] - Running wine-1.7.21-swotor launcher.exe /unix swtor_fix.exe (Working directory : /home/comptroller/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Staerr: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 0xeeb768): stub
fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) Stub!
[0416/150522: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,0x336838,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x334428,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3347f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336868,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336808,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x53fa258,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x53f90d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x53f8ed8,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,0x339d88,0x00000000), stub!
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x339d88,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33a328,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,0x339b68,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x339ce8,0x00000000), stub!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xeeb768): stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 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,0xadfdfd8,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x14f178, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:ntdll:NtCreateJobObject stub: 0xadfe67c 1f001f
fixme:ntdll:NtSetInformationJobObject stub: 0xdead 9 0xadfe7ac 112
fixme:ntdll:NtAssignProcessToJobObject stub: 0xdead 0x1a8
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfe588 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfe3e8 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xb0fe43c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 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,0xaafe8e4,0xaafe8e0): stub

Respuestas

ahjolinna Wednesday 13 April 2016 at 2:05
ahjolinna

Mensajes

it seems wine 1.9.7 fixes AT LAST this annoying bug 32092 (when you move/hover your mouse over a quest item on the map), at least for me

Respuestas

Wednesday 13 April 2016 at 2:09
apprently it has been the bug was fixed within swtor...but anyway it would be nice to if 1.9.7 would be by default when it has CSMT feature now from staging it has made my fps more stable
Wednesday 13 April 2016 at 2:10
damn typos, why can't I modify my comment -_-
uberneen Sunday 10 April 2016 at 1:28
uberneen Anonymous

Mensajes

This 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!

Respuestas

Flugeless Monday 21 March 2016 at 20:50
Flugeless Anonymous

Mensajes

I 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 ?

Respuestas

Anonymous
Monday 21 March 2016 at 21:04
Here are the debug logs
Anonymous
Monday 21 March 2016 at 21:06
[03/21/16 20:56:01] - Running wine-1.7.53 start /unix swtor_fix.exe (Working directory : /home/martin/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Re[03/21/16 20:56:02] - Running wine-1.7.53 launcher.exe /unix swtor_fix.exe (Working directory : /home/martin/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The[0321/205603:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
[03/21/16 21:01:16] - Running wine-1.7.53 start /unix swtor_fix.exe (Working directory : /home/martin/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Re[03/21/16 21:01:17] - Running wine-1.7.53 launcher.exe /unix swtor_fix.exe (Working directory : /home/martin/.PlayOnLinux/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - Thefixme:iphlpapi:NotifyAddrChange (Handle 0x32cbbc, overlapped 0x30ebd20): stub
fixme:winsock:WSALookupServiceBeginW (0x32cc68 0x00000ff0 0x32cca4) Stub!
[0321/210120: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,0x74fa308,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x74f92d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x74f90c8,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,0x32a838,0x00000000), stub!
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x32a3e8,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,0x329c28,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x329da8,0x00000000), stub!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0x30ebd20): stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 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,0x33e828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e618,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,0xaeee088,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x16b568, 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 (0xaeee578 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xaeee3e8 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xb1ee42c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc4c 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,0x33e828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e618,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,0xaaee8d4,0xaaee8d0): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaeee484,0xaeee480): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaeee464,0xaeee460): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaaee8d4,0xaaee8d0): stub
fixme:win:EnumDisplayDevicesW ((null),0,0xaaec978,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x16a848, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:win:EnumDisplayDevicesW ((null),0,0xaaec928,0x00000000), stub!
fixme:d3d9:D3DPERF_SetOptions (0x1) : stub
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:keyboard:X11DRV_ActivateKeyboardLayout 0x4090409, 0100: semi-stub!
fixme:keyboard:X11DRV_ActivateKeyboardLayout KLF_SETFORPROCESS not supported
fixme:win:EnumDisplayDevicesW ((null),0,0xaeee008,0x00000000), stub!
fixme:thread:GetThreadPreferredUILanguages 52, 0xaeeded8, 0xaeedf48 0xaeedee0
fixme:thread:GetThreadPreferredUILanguages 52, 0xaeedf38, 0xaeedfa8 0xaeedf40
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xaeee3ac 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xaeee1ec 1 C) semi-stub
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xaeee208 1 C) semi-stub
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xaeedfcc 1 C) semi-stub
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window
Anonymous
Monday 21 March 2016 at 21:08
On ElementaryOS
IntelCore I5
NVIDIA GEFORCE 635M. 2G
Anonymous
Monday 28 March 2016 at 3:27
I got this on PlayonMac as well, and it used to happen to me on a native PC install as well. Try editing client settings.ini add the line FullScreen 0 and set NativeHeight and NativeWidth to something that makes sense. I found the .ini file in drive_c\users\\Local Settings\Application Data\SWTOR\swtor\settings
larspj3 Thursday 17 March 2016 at 13:57
larspj3 Anonymous

Mensajes

It 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.

 

Respuestas

Mozart92 Saturday 5 March 2016 at 13:22
Mozart92 Anonymous

Mensajes

I get this error during the installation. How can I solve it?

 

[IMG]http://i67.tinypic.com/20r7m7b.png[/IMG]

Respuestas

Anonymous
Monday 7 March 2016 at 21:44
I got the same error. Any word on a fix?
Anonymous
Monday 7 March 2016 at 22:06
This seems to be the bug... and it has been marked as "low" priority... so I'm afraid we won't see a solution anytime soon... or never.
Anonymous
Monday 7 March 2016 at 22:06
This seems to be the bug... and it has been marked as "low" priority... so I'm afraid we won't see a solution anytime soon... or never.
Anonymous
Monday 7 March 2016 at 22:06
https://www.playonlinux.com/de/issue-5221.html
Anonymous
Monday 14 March 2016 at 6:07
You can download exe from https://dl.dropboxusercontent.com/u/31503571/W2KSP4_EN.EXE and put it into ~/Library/PlayOnMac/ressources and then reinstall script.
ShenLun Monday 29 February 2016 at 5:27
ShenLun Anonymous

Mensajes

It 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

Respuestas

petch Wednesday 17 February 2016 at 10:38
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Updated 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

Respuestas

Anonymous
Monday 29 February 2016 at 5:25
Check sum error when attempting to update with your patch
Anonymous
Tuesday 1 March 2016 at 13:21
e: Downloading resource http://download.microsoft.com/download/E/6/A/E6A04295-D2A8-40D0-A0C5-241BFECD095E/W2KSP4_EN.EXE

Editado por: petch

danutzdobre Tuesday 26 January 2016 at 22:13
danutzdobre Anonymous

Mensajes

I 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.

Respuestas

Anonymous
Sunday 31 January 2016 at 22:04
I have managed to make it work. I have reinstalled the game and waited for it to download the patches multiple times (yeah, multiple times). After that it worked. I can play it but i have the map areas issue and the Mission names issue. Wen i hover the mouse on any of those the game crashes.
kahtwoloo Wednesday 30 December 2015 at 15:31
kahtwoloo Anonymous

Mensajes

After 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

Respuestas

ahjolinna Monday 28 December 2015 at 12:49
ahjolinna

Mensajes

SWTOR 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

Respuestas

82caff Thursday 17 December 2015 at 16:46
82caff Anonymous

Mensajes

Hello,

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.

Respuestas

Raiderwolf Tuesday 15 December 2015 at 1:02
Raiderwolf Anonymous

Mensajes

I 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.

Respuestas

petch Monday 14 December 2015 at 19:12
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Add 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

Respuestas

Anonymous
Thursday 31 December 2015 at 11:59
Vous pensez que ça marche?
Thursday 31 December 2015 at 12:24
J'ai rajouté cette instruction suite à un cas rapporté sur IRC où ce jeu ne détectait pas correctement la quantité de mémoire graphique présente; Je n'ai pas ce jeu pour tester
s1ngle Monday 14 December 2015 at 4:10
s1ngle Anonymous

Mensajes

It does not work on Yosemite 10.10.5.

Game installs fine and the launcher appears.

But when you hit play the loading screen appears and the game is stuck.

Respuestas

Anonymous
Monday 14 December 2015 at 18:52
fixme:devenum:DEVENUM_ICreateDevEnum_CreateClassEnumerator Category {cc7bfb46-f175-11d1-a392-00e0291f3959} not found
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaaff514,0xaaff510): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xadff0c4,0xadff0c0): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xadff0a4,0xadff0a0): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaaff514,0xaaff510): stub
fixme:win:EnumDisplayDevicesW ((null),0,0xaafd4e0,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x15d338, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:win:EnumDisplayDevicesW ((null),0,0xaafd490,0x00000000), stub!
fixme:d3d9:D3DPERF_SetOptions (0x1) : stub
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:keyboard:macdrv_ActivateKeyboardLayout flags 100 not supported
fixme:win:EnumDisplayDevicesW ((null),0,0xadfeb70,0x00000000), stub!
fixme:thread:GetThreadPreferredUILanguages 52, 0xadfe9f8, 0xadfea68 0xadfea00
fixme:thread:GetThreadPreferredUILanguages 52, 0xadfeaa8, 0xadfeb18 0xadfeab0
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:win:GetWindowPlacement not supported on other process window 0x70062
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfefc0 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfece0 1 C) semi-stub
fixme:win:GetWindowPlacement not supported on other process window 0x70062
err:d3d:resource_init Out of adapter memory

Graphic card is: Intel Iris Graphics 6100 1536 MB
Monday 14 December 2015 at 19:09
err:d3d:resource_init Out of adapter memory
Try declaring those 1536MB:
Configure button > (select SWTOR virtual drive) > Display tab > Video RAM amount > 1536
Anonymous
Friday 18 December 2015 at 18:38
The same thing happened to me, it is just stuck at the loading screen
sculy Tuesday 8 December 2015 at 12:23
sculy Anonymous

Mensajes

The 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.

Respuestas

petch Friday 4 December 2015 at 23:43
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Add 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

Respuestas

Anonymous
Sunday 10 January 2016 at 16:48
Guys, my game is freezing!
aegorsuch Wednesday 2 December 2015 at 5:30
aegorsuch Anonymous

Mensajes

Program 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.

Respuestas

Anonymous
Sunday 31 January 2016 at 22:05
did you get any reply for this or find any fix?
moiko89 Monday 30 November 2015 at 13:45
moiko89 Anonymous

Mensajes

The game will start . In Hybrid - graphics card is not going well . Someone an idea?

Respuestas

Anonymous
Monday 30 November 2015 at 13:46
// Dell Inspiron 15 - 7537 # Core i7-4500U # 16 GB DDR3L-1600 # 1.000-GB-HDD # GeForce GT 750M //
// Manjaro xfce 15.09 (64 bit) //
Drewmarasco Friday 6 November 2015 at 18:05
Drewmarasco Anonymous

Mensajes

Attempting 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?

Respuestas

Playwinner Friday 6 November 2015 at 13:15
Playwinner Anonymous

Mensajes

Bonjour,

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 :
wine: WINEARCH set to win32 but '/home/up/.wine' is a 64-bit installation.

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.

Respuestas

jelcq Friday 30 October 2015 at 13:52
jelcq Anonymous

Mensajes

Bonjour,

Depuis le dernier patch de SWTOR, apres le login le chargement freeze ne donnant plus accès au jeu malgé la version win conseillée. Avez vous des retours concerant ce problème?

Merci

Respuestas

Anonymous
Friday 30 October 2015 at 13:57
EDIT: Le jeu se lance avec 1.7.22 je reviendrai pour voir si dans le jeu la stabilité est au rendez-vous ou si le jeu crash
Friday 30 October 2015 at 17:05
Le problème c'est que pour d'autres personnes c'est le passage en 1.7.53 qui les a débloqués (cf plus bas)...
gmarchini Tuesday 27 October 2015 at 1:30
gmarchini Anonymous

Mensajes

Hello, 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!

Respuestas

Anonymous
Friday 30 October 2015 at 13:58
change wine version to 1.7.22 that has worked for me
gmarchini Monday 26 October 2015 at 5:50
gmarchini Anonymous

Mensajes

Hello, 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)
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:gameux:GameExplorerImpl_VerifyAccess (0x14fd040, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\SWTOR_GDF.dll", 0x19ce928)
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 0x15003a8, L"Star Wars - The Old Republic"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x15003a8, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\swtor\\retailclient\\swtor.exe"
fixme:hnetcfg:fw_app_put_Scope 0x15003a8, 0
fixme:hnetcfg:fw_app_put_Enabled 0x15003a8, -1
fixme:hnetcfg:fw_policy_GetProfileByType 0x15003c0, 0, 0x19ce45c
fixme:hnetcfg:fw_policy_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented
fixme:hnetcfg:fw_app_put_Name 0x14f79a8, L"Star Wars - The Old Republic"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x14f79a8, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\swtor\\retailclient\\swtor.exe"
fixme:hnetcfg:fw_app_put_Scope 0x14f79a8, 0
fixme:hnetcfg:fw_app_put_Enabled 0x14f79a8, -1
fixme:hnetcfg:fw_apps_Add 0x14f79c0, 0x14f79a8
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 0x14ff920, L"Star Wars - The Old Republic Updater"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x14ff920, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe"
fixme:hnetcfg:fw_app_put_Scope 0x14ff920, 0
fixme:hnetcfg:fw_app_put_Enabled 0x14ff920, -1
fixme:hnetcfg:fw_policy_GetProfileByType 0x14f7928, 0, 0x19ce45c
fixme:hnetcfg:fw_policy_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented
fixme:hnetcfg:fw_app_put_Name 0x14ff978, L"Star Wars - The Old Republic"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x14ff978, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe"
fixme:hnetcfg:fw_app_put_Scope 0x14ff978, 0
fixme:hnetcfg:fw_app_put_Enabled 0x14ff978, -1
fixme:hnetcfg:fw_apps_Add 0x14f7928, 0x14ff978
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 0x14fc6d8, L"Star Wars - The Old Republic"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x14fc6d8, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe"
fixme:hnetcfg:fw_app_put_Scope 0x14fc6d8, 0
fixme:hnetcfg:fw_app_put_Enabled 0x14fc6d8, -1
fixme:hnetcfg:fw_policy_GetProfileByType 0x14ffd80, 0, 0x19ce45c
fixme:hnetcfg:fw_policy_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented
fixme:wininet:query_global_option INTERNET_OPTION_CONNECTED_STATE: semi-stub
[10/25/15 20:55:44] - Running wine-1.7.53 winepath -u C:\\users\\Gage\\Desktop (Working directory : /Users/Gage/Library/PlayOnMac/wineprefix/SWTOR/drive_c)
/Users/Gage/Library/PlayOnMac//wineprefix/SWTOR/dosdevices/c:/users/Gage/Desktop
[10/25/15 20:55:48] - ----- Starting function POL_Message_OSXFlicker -----
[10/25/15 20:56:39] - ----- Ending function POL_Message_OSXFlicker -----
[10/25/15 20:56:54] - Running wine-1.7.53 start /unix swtor_fix.exe (Working directory : /Users/Gage/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic)
[10/25/15 20:56:57] - Running wine-1.7.53 start /unix swtor_fix.exe (Working directory : /Users/Gage/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic)
[10/25/15 20:56:57] - Running wine-1.7.53 launcher.exe (Working directory : /Users/Gage/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic)
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 0xeeb558): stub
fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) Stub!
[1025/205721: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
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: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,0x53eae70,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:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:winsock:WSAIoctl ignoring keepalive interval
fixme:win:EnumDisplayDevicesW ((null),0,0x53e9c60,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,0x53e9930,0x00000000), stub!
fixme:winsock:WSAIoctl ignoring keepalive interval
fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}.
[10/25/15 20:57:36] - Running wine-1.7.53 start /unix swtor_fix.exe (Working directory : /Users/Gage/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic)
[10/25/15 20:57:37] - Running wine-1.7.53 launcher.exe (Working directory : /Users/Gage/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old Republic)
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 0xeeab50): stub
fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) Stub!
[1025/205738: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
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: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,0x578ae70,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:winsock:WSAIoctl ignoring keepalive interval
fixme:winsock:WSAIoctl ignoring keepalive interval
fixme:win:EnumDisplayDevicesW ((null),0,0x5789c60,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,0x5789930,0x00000000), stub!
fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}.
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
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: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:iphlpapi:CancelIPChangeNotify (overlapped 0xeeab50): stub
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 0xeeab50): stub
fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) 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: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: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,0x5bbae70,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: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:win:EnumDisplayDevicesW ((null),0,0x5bb9c60,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x5bb9930,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: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: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:win:EnumDisplayDevicesW ((null),0,0x339c00,0x00000000), stub!
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:win:EnumDisplayDevicesW ((null),0,0x339c00,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33a2b0,0x00000000), stub!
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
fixme:win:EnumDisplayDevicesW ((null),0,0x339aa0,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x339c30,0x00000000), stub!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xeeab50): stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc40 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc40 1 C) semi-stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33f320,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x33e570,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e240,0x00000000), stub!
fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}.
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:win:EnumDisplayDevicesW ((null),0,0xadfebf0,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x1595b8, 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 (0xadff180 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfeed0 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xb0ff040 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc40 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0x33fc40 1 C) semi-stub
fixme:win:EnumDisplayDevicesW ((null),0,0x33f320,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x33e570,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x33e240,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,0xaaff514,0xaaff510): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xadff0c4,0xadff0c0): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xadff0a4,0xadff0a0): stub
fixme:process:GetProcessWorkingSetSize (0xffffffff,0xaaff514,0xaaff510): stub
fixme:win:EnumDisplayDevicesW ((null),0,0xaafd4e0,0x00000000), stub!
fixme:d3d:wined3d_check_device_format_conversion wined3d 0x158898, adapter_idx 0, device_type WINED3D_DEVICE_TYPE_HAL, src_format WINED3DFMT_B8G8R8A8_UNORM, dst_format WINED3DFMT_B8G8R8X8_UNORM stub!
fixme:win:EnumDisplayDevicesW ((null),0,0xaafd490,0x00000000), stub!
fixme:d3d9:D3DPERF_SetOptions (0x1) : stub
fixme:keyboard:macdrv_ActivateKeyboardLayout flags 100 not supported
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
err:ole:CoInitializeEx Attempt to change threading model of this apartment from multi-threaded to apartment threaded
fixme:d3d_shader:print_glsl_info_log Info log received from GLSL shader #3:
fixme:d3d_shader:print_glsl_info_log     WARNING: Could not find vertex shader attribute 'vs_in2' to match BindAttributeLocation request.
fixme:win:EnumDisplayDevicesW ((null),0,0xadfeb70,0x00000000), stub!
fixme:thread:GetThreadPreferredUILanguages 52, 0xadfe9f8, 0xadfea68 0xadfea00
fixme:thread:GetThreadPreferredUILanguages 52, 0xadfeaa8, 0xadfeb18 0xadfeab0
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfefc0 1 C) semi-stub
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfece0 1 C) semi-stub
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfee00 1 C) semi-stub
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:msvcp:_Locinfo__Locinfo_ctor_cat_cstr (0xadfebe0 1 C) semi-stub
fixme:toolhelp:CreateToolhelp32Snapshot Unimplemented: heap list snapshot
fixme:toolhelp:Heap32ListFirst : stub
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:d3d_shader:print_glsl_info_log Info log received from GLSL shader #5:
fixme:d3d_shader:print_glsl_info_log     WARNING: Could not find vertex shader attribute 'vs_in2' to match BindAttributeLocation request.
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process window 0x80064
fixme:win:GetWindowPlacement not supported on other process windo

Respuestas

petch Sunday 25 October 2015 at 8:56
petch

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Upgrade 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

Respuestas

Anonymous
Tuesday 27 October 2015 at 9:44
How to get these update buttons to work on your website?
GraphicLevel Friday 23 October 2015 at 16:23
GraphicLevel Anonymous

Mensajes

Pour 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.

Respuestas

Sayph Tuesday 20 October 2015 at 12:11
Sayph Anonymous

Mensajes

Bonjour 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 =)

Respuestas

Anonymous
Friday 23 October 2015 at 16:19
Change la version de Wine, quitte à tout reinstaller, essaye la 1.7.53
Anonymous
Sunday 25 October 2015 at 8:53
Super, le jeu fonctionne en 1.7.53 merci beaucoup ! Et pas besoin de se re-farcir l'installation ou les interminables maj =)
fmanarchist Saturday 17 October 2015 at 1:52
fmanarchist Anonymous

Mensajes

I 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.
fixme:iphlpapi:NotifyAddrChange (Handle 0x33cbbc, overlapped 0xfeb668): stub
fixme:winsock:WSALookupServiceBeginW (0x33cc68 0x00000ff0 0x33cca4) Stub!
[1016/195125: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:win:EnumDisplayDevicesW ((null),0,0x336838,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x334428,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3347f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336828,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336868,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x336808,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x51fa258,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x51f90d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x51f8ed8,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

 

Respuestas

Anonymous
Wednesday 21 October 2015 at 20:46
DCHP issue resolved and I can log in/download the client using the 1.7.53-steam_crossoverhack wine version. Have not had a chance to try gameplay yet.
Anonymous
Wednesday 26 April 2017 at 1:36
How did you resolve this issue???
Nirutthana Tuesday 7 July 2015 at 12:02
Nirutthana Anonymous

Mensajes

My 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:
         CPU: Intel® Pentium(R) 4 CPU 3.40GHz × 2
         RAM: 2.7 GiB
         Graphics card type: NVIDIA Corporation NV38GL [Quadro FX 1300]
         Installed driver: nvidia-173.14.39-0ubuntu3

Game version: Star Wars - The Old Republic - Patch 3.2.2a

Problem/Error: I login fine, but when I press play the game exits and I get this this error message: "This program encountered an internal error and will exit. Error code: C7 . Incompatible system. Please verify your system is compatible with this game." 

Debug log:

 

 

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

Respuestas

Anonymous
Thursday 9 July 2015 at 6:41
Have I not had a response because the information I provided was inadequate? So far, looks like this has just been a big waste of time.
Anonymous
Thursday 9 July 2015 at 11:45
Your log is so garbage to read. Would you yourself read something like that try to figure out what's wrong?
Thursday 9 July 2015 at 13:48
@Nirutthana: are you using Chrome for example? This site is known to have some issues with Chrome, all the line-returns have been dropped...
Anonymous
Friday 10 July 2015 at 10:40
Took time to get it proper before posting. Looked fine in review. When I posted then it went like you see it. So, trying again in Firefox, instead of Chrome. See new post.
Anonymous
Friday 10 July 2015 at 10:44
c 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
[07/07/15 21:55:31] - 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:55:31] - 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/215533:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
[07/07/15 21:59:04] - 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:59:05] - 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/215906:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

(process:6381): GLib-CRITICAL **: g_slice_set_config: assertion 'sys_page_size == 0' failed

(firefox:6381): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::sm-connect after class was initialised

(firefox:6381): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::show-crash-dialog after class was initialised

(firefox:6381): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::display after class was initialised

(firefox:6381): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::default-icon after class was initialised
[07/10/15 20:34: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)
[07/10/15 20:34:29] - 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 0xfeb5c8): stub
fixme:winsock:WSALookupServiceBeginW (0x32cc68 0x00000ff0 0x32cca4) Stub!
[0710/203434: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: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: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,0x550a2d8,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x55092b8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x55090a8,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: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,0x32a848,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,0x329d38,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x329eb8,0x00000000), stub!
fixme:iphlpapi:CancelIPChangeNotify (overlapped 0xfeb5c8): 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
Anonymous
Friday 10 July 2015 at 10:44
Also am using 32bit.
Monday 19 October 2015 at 19:22
I saw nothing special... Have you tried with other Wine versions than Ubuntu compiled Wine?
talon-forge Wednesday 17 June 2015 at 17:49
talon-forge Anonymous

Mensajes

Hi 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

Respuestas

Wednesday 17 June 2015 at 17:53
Please read the wiki; we need full computer specs and debug logs to troubleshoot any issues. :)
Anonymous
Wednesday 17 June 2015 at 18:00
early 2011 model
Anonymous
Wednesday 17 June 2015 at 18:01
me:hnetcfg:fw_app_put_Scope 0x575f320, 0
fixme:hnetcfg:fw_app_put_IpVersion 0x575f320, 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 0x2dc25e0, L"Star Wars - The Old Republic Updater"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x2dc25e0, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe"
fixme:hnetcfg:fw_app_put_Scope 0x2dc25e0, 0
fixme:hnetcfg:fw_app_put_IpVersion 0x2dc25e0, 2
fixme:hnetcfg:fw_app_QueryInterface interface {df0b3d60-548f-101b-8e65-08002b2bd119} not implemented
fixme:hnetcfg:fw_app_put_Name 0x2dc2e58, L"Star Wars - The Old Republic"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x2dc2e58, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe"
fixme:hnetcfg:fw_app_put_Scope 0x2dc2e58, 0
fixme:hnetcfg:fw_app_put_IpVersion 0x2dc2e58, 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 0x2dc2fc8, L"Star Wars - The Old Republic"
fixme:hnetcfg:fw_app_put_ProcessImageFileName 0x2dc2fc8, L"C:\\Program Files\\Electronic Arts\\BioWare\\Star Wars - The Old Republic\\launcher.exe"
fixme:hnetcfg:fw_app_put_Scope 0x2dc2fc8, 0
fixme:hnetcfg:fw_app_put_IpVersion 0x2dc2fc8, 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
fixme:secur32:schan_imp_get_max_message_size Returning 1 << 14.
[06/16/15 21:42:03] - ----- Starting function POL_Message_OSXFlicker -----
[06/16/15 21:42:07] - ----- Ending function POL_Message_OSXFlicker -----
[06/16/15 21:42:13] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/16/15 21:42:21] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/16/15 21:42:23] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/16/15 21:42:23] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0616/214228:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/16/15 21:44:01] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/16/15 21:44:04] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/16/15 21:44:04] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/16/15 21:44:06] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0616/214408:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/16/15 21:46:56] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/16/15 21:47:13] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/16/15 21:47:18] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/16/15 21:47:22] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0616/214725:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/17/15 04:16:44] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 12:33:34] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 12:33:40] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 12:33:42] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 12:33:44] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 12:33:50] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 12:33:57] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/17/15 12:33:57] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/17/15 12:33:58] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/17/15 12:33:58] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/17/15 12:33:59] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0617/123407:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/17/15 13:34:43] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 13:34:53] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0617/133457:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/17/15 15:04:16] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 15:04:17] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 15:04:42] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [06/17/15 15:04:42] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0617/150449:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/17/15 15:56:44] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 15:57:06] - Running wine-1.7.22 launcher.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wars - The Old [0617/155713:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8

[06/17/15 16:25:28] - Running wine-1.7.22 winecfg (Working directory : /Applications/PlayOnMac.app/Contents/Resources/playonlinux/python)
[06/17/15 16:28:21] - Running wine-1.7.22 start /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/Star Wa[06/17/15 16:28:23] - Running wine-1.7.22 launcher.exe /unix swtor_fix.exe (Working directory : /Users/damienraistrick/Library/PlayOnMac/wineprefix/SWTOR/drive_c/Program Files/Electronic Arts/BioWare/[0617/162827:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
Alzeif Monday 8 June 2015 at 21:52
Alzeif Anonymous

Mensajes

Bonjour,

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.

Respuestas

Raiderwolf Saturday 6 June 2015 at 23:29
Raiderwolf Anonymous

Mensajes

When I install Star Wars: The Old Republic, even though I select "English" during the install, the login screen is still in French.

Respuestas

Saturday 6 June 2015 at 23:32
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
I suppose that's because the install script puts this fr-fr in launcher.settings
Not sure how it can be helped though...
Anonymous
Tuesday 22 September 2015 at 18:06
If you are wanting US English, simply replace the "fr-fr" with "en-us". However, this means you will have to download the game data again.
davidbooth Wednesday 3 June 2015 at 16:49
davidbooth Anonymous

Mensajes

The 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

Respuestas

Wednesday 3 June 2015 at 16:53
http://wiki.playonlinux.com/index.php/How_to_Post_in_the_Forums
Anonymous
Wednesday 3 June 2015 at 21:04
Sorry for the question but which forum do I post my question on? There is so many to choose from!
Wednesday 3 June 2015 at 21:06
It explains it in the first section... ;)

http://wiki.playonlinux.com/index.php/How_to_Post_in_the_Forums#The_different_forum_areas
Anonymous
Thursday 4 June 2015 at 0:34
How long does it usually take to get your questions answered because i posted my q at noonish.
Anonymous
Thursday 4 June 2015 at 0:49
I fixed the flickering problem but my next question would be what would be the optimal settings for this game on my mac.
Anonymous
Thursday 4 June 2015 at 1:20
my game wont stop stuttering and it is very not smooth
Thursday 4 June 2015 at 7:05
Patience, please.....
Anonymous
Thursday 4 June 2015 at 16:10
Could you link me to the forum page about stuttering, I can't seem to find it.
Thursday 4 June 2015 at 18:00
There is not a forum page about stuttering... I gave you the link telling you how to post in the forums asking for help. You posted in the forums, so you will need to be patient, and if someone has a solution, they will tell you.
Anonymous
Thursday 4 June 2015 at 21:34
Well good sir, you closed my post on stuttering so I am afraid I can not post a question on that. I would greatly appreciate it if you could reopen it and allow people to answer the question old sport.
Anonymous
Thursday 4 June 2015 at 21:40
i would really appreciate it i u could answer my q's without linking to a forum page
Thursday 4 June 2015 at 21:48
I edited your post to remove your profanity. Do it again, and you will be banned. No exceptions. There is no excuse for profanity. 
Thursday 4 June 2015 at 21:48
There is the post, that is open, not locked:

https://www.playonlinux.com/en/topic-13172.html

On top of that, I am looking, and I cannot find a post that you posted in the forums about stuttering with this game, and if it is locked, it was locked for a reason. Chill. :)

edit:I found the post; refer to post below this

"i would really appreciate it i u could answer my q's without linking to a forum page"

Well, I would love to, but you aren't giving me the proper information to troubleshoot your issue, which is in the wiki page in the link that I keep sending you.
Thursday 4 June 2015 at 21:56
Nevermind. I found it:

https://www.playonlinux.com/en/topic-13173-Star_Wars__The_Old_Republic.html
Thursday 4 June 2015 at 21:56
I will unlock it but you need to post your full debug log in there so that we can help you. That is why your post was locked, and that is why I posted the link on how to post in the forums. :D 

PS: Sorry if I am sounding rude. Sometimes the way I word things and the amount that I type, one may infer rudeness. I am not trying to be. 
Anonymous
Friday 5 June 2015 at 16:13
its chill im just frusturated and i wanna play the game :)
Friday 5 June 2015 at 18:30
It's all good. Just don't swear. :) I hate having to use the ban stick. It is not a fun part of the job. lol.
Anonymous
Wednesday 26 April 2017 at 1:46
wow
ogbrewer Wednesday 6 May 2015 at 5:55
ogbrewer Anonymous

Mensajes

I 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.

Respuestas

Anonymous
Wednesday 6 May 2015 at 7:06
Macbook air early 2014,
Merej Tuesday 5 May 2015 at 5:50
Merej Anonymous

Mensajes

Bonjour 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 

Respuestas

o-w-a Saturday 28 March 2015 at 2:09
o-w-a Anonymous

Mensajes

So 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?

Respuestas

Lawsomemrb Sunday 22 March 2015 at 3:09
Lawsomemrb Anonymous

Mensajes

I am fairly new to wine/playonmac, so please excuse me for being a bit on the slow side. 

I have read numereous threads on many bugs and applied several fixes without luck. I am currently able to log into the game and get past server list and character selection screen after patching. Once a character is selected however, the loading screen loads about 20% of the way and then hangs/freezes. Despite choosing the correct option under wine configuration to emulate a virtual dekstop (1000x614 and 1280x800 attempted), the game insists on going into a complete full screen mode. 
Attempting with other versions of wine just makes the game hang on the very first loading screen before serverlist. 

I am attemptning this on a primo 2011 Macbook Pro 11', with 8 gb ram, Intel I5, Intel HD Graphics 3000 (512). Anyone have any idea how to solve this? :) 

Thank you in advance! 

Respuestas

Anonymous
Wednesday 17 June 2015 at 17:51
I'm having same issue, anyone get back to you on this?
eikenb Wednesday 4 March 2015 at 1:11
eikenb Anonymous

Mensajes

Runs 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).

Respuestas

arcanex Friday 20 February 2015 at 18:51
arcanex Anonymous

Mensajes

 

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 ????

 

Respuestas

Anonymous
Friday 20 February 2015 at 18:52
Les point d'interrogation à la fin de la phrase sont inutiles
andyg314 Wednesday 4 February 2015 at 21:55
andyg314 Anonymous

Mensajes

It 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.

Respuestas

Wednesday 4 February 2015 at 22:10
You can try it easily by installing wine-1.7.29 in PlayOnLinux -> Tools -> Manage Wine Versions

Then, you can go to the Configure menu, select the virtual drive, and change the Wine version and see if it makes a difference. If we can confirm that it works and does not break anything, we might be able to just update the script to use the newer Wine version.
Anonymous
Wednesday 4 February 2015 at 22:18
Sounds good, I'm new to PlayOnLinux but have been using wine for a while. I will give it a try next time I sit down to play, and will let you know what happens.
Anonymous
Wednesday 4 February 2015 at 22:19
Removed double post
Anonymous
Friday 6 February 2015 at 15:47
I tried 1.7.29 and a few other versions as well. None fixed the crash problem. On the pulse side, change wine versions is very easy.
Ash_sneaks Thursday 29 January 2015 at 16:04
Ash_sneaks Anonymous

Mensajes

Bonjour à 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

Respuestas

edelmanns Friday 2 January 2015 at 14:33
edelmanns Anonymous

Mensajes

Screen blocked, game crashed after 10 mn of play..... :-(

Respuestas

Onixbab Friday 26 December 2014 at 18:23
Onixbab Anonymous

Mensajes

Le 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! :)

 

Respuestas

alex9445 Thursday 27 November 2014 at 23:46
alex9445 Anonymous

Mensajes

Bonjour,

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 :)

Respuestas

Anonymous
Monday 1 December 2014 at 15:07
Même problème, une réponse s'il vous plait :)
Anonymous
Monday 1 December 2014 at 15:07
Ps:j'ai un MacBook Air
Anonymous
Friday 20 February 2015 at 18:54
Ce problème ne m'a jamais apparu.Vérifier si il n'est pas déjà résolut
Army105 Thursday 27 November 2014 at 14:12
Army105 Anonymous

Mensajes

I 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?

Respuestas

maqsh Tuesday 25 November 2014 at 11:04
maqsh Anonymous

Mensajes

 

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

Respuestas

fanno Thursday 13 November 2014 at 17:35
fanno Anonymous

Mensajes

Hello,

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

Respuestas

Thursday 13 November 2014 at 18:59
Can you post in the forums with your full computer specs and debug output? It is not wrong to post here, but I feel you will get more attention in our actual forums. :)
Anonymous
Thursday 13 November 2014 at 20:11
hmm i thought i was on the forum i pressed forums and then application testing but i guess it after that took me somewhere else..
Anonymous
Thursday 13 November 2014 at 20:12
hmm i did not know pressing enter would send the message early.. =/ where is the correct location ? if you could then post a link =/
darktytanus Thursday 6 November 2014 at 11:13
darktytanus Anonymous

Mensajes

Bonjour, 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 ^^

Respuestas

Aiwings Sunday 21 September 2014 at 19:10
Aiwings Anonymous

Mensajes

Hi ,

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

 

 

 

 

Respuestas

Pueblo89 Friday 5 September 2014 at 14:22
Pueblo89 Anonymous

Mensajes

I 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).
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
 EIP:0088f145 ESP:0abce2f0 EBP:0abce314 EFLAGS:00010246(  R- --  I  Z- -P- )
 EAX:00000000 EBX:3a7cf0a0 ECX:0abce3b4 EDX:00000000
 ESI:00000000 EDI:00000000
Stack dump:
0x0abce2f0:  00000200 81b204ec 0146b2cc 00000002
0x0abce300:  3a7cf0b0 00000000 0abce300 01238179
0x0abce310:  00000001 0abce344 00869eaa 00000020
0x0abce320:  00000020 00000001 00000200 00000000
0x0abce330:  00000000 00000001 01469b6c 2d7775b0
0x0abce340:  2d7775f0 0abce3c4 00833bdc 3a7cf0a0
Backtrace:
=>0 0x0088f145 in swtor (+0x48f145) (0x0abce314)
  1 0x00869eaa in swtor (+0x469ea9) (0x0abce344)
  2 0x00833bdc in swtor (+0x433bdb) (0x0abce3c4)
  3 0x00836006 in swtor (+0x436005) (0x0abce3e8)
  4 0x00b8b644 in swtor (+0x78b643) (0x0abce414)
  5 0x00bc2884 in swtor (+0x7c2883) (0x0abce474)
  6 0x00bb392a in swtor (+0x7b3929) (0x0abce4c0)
  7 0x00bb3aba in swtor (+0x7b3ab9) (0x0abce510)
  8 0x00bb4904 in swtor (+0x7b4903) (0x0abce548)
  9 0x00ba6019 in swtor (+0x7a6018) (0x0abce564)
  10 0x00bb4714 in swtor (+0x7b4713) (0x0abce59c)
  11 0x00ba74e9 in swtor (+0x7a74e8) (0x0abce5c8)
  12 0x00ba6019 in swtor (+0x7a6018) (0x0abce5e4)
  13 0x00ba2f51 in swtor (+0x7a2f50) (0x0abce61c)
  14 0x00ba74e9 in swtor (+0x7a74e8) (0x0abce648)
  15 0x00ba6019 in swtor (+0x7a6018) (0x0abce664)
  16 0x00ba2f51 in swtor (+0x7a2f50) (0x0abce69c)
  17 0x00ba74e9 in swtor (+0x7a74e8) (0x0abce6c8)
  18 0x00ba6019 in swtor (+0x7a6018) (0x0abce6e4)
  19 0x00ba2f51 in swtor (+0x7a2f50) (0x0abce71c)
  20 0x00ba534d in swtor (+0x7a534c) (0x0abce750)
  21 0x00bcbe99 in swtor (+0x7cbe98) (0x0abce778)
  22 0x00b50810 in swtor (+0x75080f) (0x0abce7a8)
  23 0x00b51d19 in swtor (+0x751d18) (0x0abce7e0)
  24 0x00d569de in swtor (+0x9569dd) (0x0abce7f8)
  25 0x00d57e8e in swtor (+0x957e8d) (0x0abce888)
  26 0x00d5655d in swtor (+0x95655c) (0x0abce8b4)
  27 0x00d575bb in swtor (+0x9575ba) (0x0abce8f0)
  28 0x00d57b64 in swtor (+0x957b63) (0x0abce918)
  29 0x00c264d6 in swtor (+0x8264d5) (0x0abce948)
  30 0x00c3c364 in swtor (+0x83c363) (0x0abce968)
  31 0x00c3c679 in swtor (+0x83c678) (0x0abce9ac)
  32 0x00434867 in swtor (+0x34866) (0x0abce9c0)
  33 0x0043492e in swtor (+0x3492d) (0x0abce9e8)
  34 0x00402bfa in swtor (+0x2bf9) (0x0abcea0c)
  35 0x0063fa60 in swtor (+0x23fa5f) (0x0abcea18)
  36 0x7bc80270 call_thread_func_wrapper+0xb() in ntdll (0x0abcea28)
  37 0x7bc8317d call_thread_func+0x7c() in ntdll (0x0abceaf8)
  38 0x7bc8024e RtlRaiseException+0x21() in ntdll (0x0abceb18)
  39 0x7bc8960c in ntdll (+0x7960b) (0x0abcf368)
  40 0xf756cd4c start_thread+0xcb() in libpthread.so.0 (0x0abcf468)
0x0088f145: divl    %esi,%eax
Modules:
Module    Address            Debug info    Name (160 modules)
PE      340000-  382000    Deferred        remoterendererclient
PE      390000-  3e1000    Deferred        speedtreert
PE      400000- 1f13fb5    Export          swtor
PE     1f20000- 22e8000    Deferred        d3dx9_38
PE     22f0000- 2317000    Deferred        bugslayerutil
PE     aa90000- aab3000    Deferred        platforminfo
PE     e0a0000- e23c000    Deferred        rzsdkeng
PE     e240000- e3d6000    Deferred        rzsdkmod
PE    10000000-100df000    Deferred        memoryman
PE    4ec50000-4edfb000    Deferred        gdiplus
PE    78520000-785c3000    Deferred        msvcr90
ELF    7b800000-7ba60000    Deferred        kernel32<elf>
  \-PE    7b810000-7ba60000    \               kernel32
ELF    7bc00000-7bce1000    Dwarf           ntdll<elf>
  \-PE    7bc10000-7bce1000    \               ntdll
ELF    7bf00000-7bf03000    Deferred        <wine-loader>
ELF    7d73d000-7d773000    Deferred        uxtheme<elf>
  \-PE    7d740000-7d773000    \               uxtheme
ELF    7d773000-7d779000    Deferred        libxfixes.so.3
ELF    7d779000-7d784000    Deferred        libxcursor.so.1
ELF    7d784000-7d795000    Deferred        libxi.so.6
ELF    7d795000-7d799000    Deferred        libxcomposite.so.1
ELF    7d799000-7d7a2000    Deferred        libxrandr.so.2
ELF    7d7a2000-7d7ac000    Deferred        libxrender.so.1
ELF    7d7ac000-7d7b2000    Deferred        libxxf86vm.so.1
ELF    7d7b2000-7d7b6000    Deferred        libxinerama.so.1
ELF    7d7b6000-7d7bd000    Deferred        libxdmcp.so.6
ELF    7d7bd000-7d7c1000    Deferred        libxau.so.6
ELF    7d7c1000-7d7e2000    Deferred        libxcb.so.1
ELF    7d7e2000-7d916000    Deferred        libx11.so.6
ELF    7d916000-7d928000    Deferred        libxext.so.6
ELF    7d942000-7d9d5000    Deferred        winex11<elf>
  \-PE    7d950000-7d9d5000    \               winex11
ELF    7da04000-7da2e000    Deferred        libexpat.so.1
ELF    7da2e000-7da62000    Deferred        libfontconfig.so.1
ELF    7da62000-7dafc000    Deferred        libfreetype.so.6
ELF    7db16000-7db7d000    Deferred        dbghelp<elf>
  \-PE    7db20000-7db7d000    \               dbghelp
ELF    7db7d000-7dba4000    Deferred        mpr<elf>
  \-PE    7db80000-7dba4000    \               mpr
ELF    7dba4000-7dbbd000    Deferred        libz.so.1
ELF    7dbbd000-7dc3a000    Deferred        wininet<elf>
  \-PE    7dbd0000-7dc3a000    \               wininet
ELF    7dc3a000-7dd86000    Deferred        msvcp80<elf>
  \-PE    7dc80000-7dd86000    \               msvcp80
ELF    7dd86000-7de42000    Deferred        msvcr80<elf>
  \-PE    7dda0000-7de42000    \               msvcr80
ELF    7de42000-7df4a000    Deferred        comctl32<elf>
  \-PE    7de50000-7df4a000    \               comctl32
ELF    7df4a000-7dffc000    Deferred        msvcrt<elf>
  \-PE    7df60000-7dffc000    \               msvcrt
ELF    7dffc000-7e076000    Deferred        shlwapi<elf>
  \-PE    7e010000-7e076000    \               shlwapi
ELF    7e076000-7e2ad000    Deferred        shell32<elf>
  \-PE    7e080000-7e2ad000    \               shell32
ELF    7e2ad000-7e3f9000    Deferred        msvcp90<elf>
  \-PE    7e2f0000-7e3f9000    \               msvcp90
ELF    7e3f9000-7e423000    Deferred        msacm32<elf>
  \-PE    7e400000-7e423000    \               msacm32
ELF    7e423000-7e4a8000    Deferred        rpcrt4<elf>
  \-PE    7e430000-7e4a8000    \               rpcrt4
ELF    7e4a8000-7e5ea000    Deferred        ole32<elf>
  \-PE    7e4c0000-7e5ea000    \               ole32
ELF    7e5ea000-7e6a2000    Deferred        winmm<elf>
  \-PE    7e5f0000-7e6a2000    \               winmm
ELF    7e6a2000-7e6b6000    Deferred        mswsock<elf>
  \-PE    7e6b0000-7e6b6000    \               mswsock
ELF    7e6b6000-7e6ed000    Deferred        ws2_32<elf>
  \-PE    7e6c0000-7e6ed000    \               ws2_32
ELF    7e6ed000-7e700000    Deferred        psapi<elf>
  \-PE    7e6f0000-7e700000    \               psapi
ELF    7e700000-7e85d000    Deferred        user32<elf>
  \-PE    7e710000-7e85d000    \               user32
ELF    7e85d000-7e8cd000    Deferred        advapi32<elf>
  \-PE    7e870000-7e8cd000    \               advapi32
ELF    7e8cd000-7e9ec000    Deferred        gdi32<elf>
  \-PE    7e8e0000-7e9ec000    \               gdi32
ELF    7e9ec000-7eb07000    Deferred        opengl32<elf>
  \-PE    7ea10000-7eb07000    \               opengl32
ELF    7eb07000-7ec4b000    Deferred        wined3d<elf>
  \-PE    7eb20000-7ec4b000    \               wined3d
ELF    7ec4b000-7ec88000    Deferred        d3d9<elf>
  \-PE    7ec50000-7ec88000    \               d3d9
ELF    7ec88000-7ec91000    Deferred        libnss_compat.so.2
ELF    7ec92000-7ec9f000    Deferred        libnss_files.so.2
ELF    7ec9f000-7ecab000    Deferred        libnss_nis.so.2
ELF    7efdd000-7efe6000    Deferred        librt.so.1
ELF    7efe7000-7f000000    Deferred        version<elf>
  \-PE    7eff0000-7f000000    \               version
ELF    ef02f000-ef100000    Deferred        crypt32<elf>
  \-PE    ef040000-ef100000    \               crypt32
ELF    ef242000-ef284000    Deferred        rsaenh<elf>
  \-PE    ef250000-ef284000    \               rsaenh
ELF    ef284000-ef2a2000    Deferred        libgcc_s.so.1
ELF    ef2a2000-ef2a9000    Deferred        libnss_dns.so.2
ELF    ef2e5000-ef2f7000    Deferred        libp11-kit.so.0
ELF    ef2f7000-ef37c000    Deferred        libgcrypt.so.11
ELF    ef37c000-ef44b000    Deferred        libkrb5.so.3
ELF    ef44b000-ef514000    Deferred        libgnutls.so.26
ELF    ef514000-ef600000    Deferred        comdlg32<elf>
  \-PE    ef520000-ef600000    \               comdlg32
ELF    ef705000-ef72d000    Deferred        libk5crypto.so.3
ELF    ef72d000-ef76b000    Deferred        libgssapi_krb5.so.2
ELF    ef76b000-ef7be000    Deferred        libcups.so.2
ELF    ef7be000-ef800000    Deferred        winspool<elf>
  \-PE    ef7d0000-ef800000    \               winspool
ELF    ef905000-ef917000    Deferred        libtasn1.so.3
ELF    ef917000-ef956000    Deferred        oleacc<elf>
  \-PE    ef920000-ef956000    \               oleacc
ELF    ef956000-ef9c6000    Deferred        setupapi<elf>
  \-PE    ef960000-ef9c6000    \               setupapi
ELF    f41c8000-f4340000    Deferred        libvorbisenc.so.2
ELF    f4340000-f438e000    Deferred        libflac.so.8
ELF    f438e000-f4400000    Deferred        libsndfile.so.1
ELF    f450a000-f451c000    Deferred        libavahi-client.so.3
ELF    f4521000-f4536000    Deferred        dwmapi<elf>
  \-PE    f4530000-f4536000    \               dwmapi
ELF    f4536000-f4580000    Deferred        libdbus-1.so.3
ELF    f460e000-f4700000    Deferred        libasound.so.2
ELF    f490d000-f4972000    Deferred        libpulsecommon-1.1.so
ELF    f4972000-f49c0000    Deferred        libpulse.so.0
ELF    f4b03000-f4b11000    Deferred        libavahi-common.so.3
ELF    f4b11000-f4b3c000    Deferred        libvorbis.so.0
ELF    f4c57000-f4c6a000    Deferred        msimg32<elf>
  \-PE    f4c60000-f4c6a000    \               msimg32
ELF    f4cab000-f4cb0000    Deferred        libgpg-error.so.0
ELF    f4cb0000-f4ce0000    Deferred        winealsa<elf>
  \-PE    f4cc0000-f4ce0000    \               winealsa
ELF    f4ce0000-f4d02000    Deferred        mmdevapi<elf>
  \-PE    f4cf0000-f4d02000    \               mmdevapi
ELF    f513b000-f5144000    Deferred        libkrb5support.so.0
ELF    f5144000-f514c000    Deferred        libogg.so.0
ELF    f516d000-f5172000    Deferred        libcom_err.so.2
ELF    f5172000-f5179000    Deferred        libasyncns.so.0
ELF    f5179000-f5183000    Deferred        libwrap.so.0
ELF    f5183000-f518c000    Deferred        libjson.so.0
ELF    f518c000-f51b0000    Deferred        imm32<elf>
  \-PE    f5190000-f51b0000    \               imm32
ELF    f5294000-f6f9a000    Deferred        libnvidia-glcore.so.304.116
ELF    f6f9a000-f7076000    Deferred        libgl.so.1
ELF    f7076000-f70be000    Deferred        dsound<elf>
  \-PE    f7080000-f70be000    \               dsound
ELF    f70be000-f7200000    Deferred        oleaut32<elf>
  \-PE    f70e0000-f7200000    \               oleaut32
ELF    f7305000-f7309000    Deferred        libkeyutils.so.1
ELF    f7309000-f731e000    Deferred        hid<elf>
  \-PE    f7310000-f731e000    \               hid
ELF    f731e000-f7325000    Deferred        libasound_module_pcm_pulse.so
ELF    f7325000-f7329000    Deferred        libnvidia-tls.so.304.116
ELF    f7329000-f7341000    Deferred        libresolv.so.2
ELF    f735b000-f7380000    Deferred        iphlpapi<elf>
  \-PE    f7360000-f7380000    \               iphlpapi
ELF    f738a000-f73b6000    Deferred        libm.so.6
ELF    f73b6000-f73bb000    Deferred        libdl.so.2
ELF    f73bb000-f7566000    Dwarf           libc.so.6
ELF    f7566000-f7581000    Dwarf           libpthread.so.0
ELF    f7582000-f759c000    Deferred        libnsl.so.1
ELF    f759c000-f7752000    Dwarf           libwine.so.1
ELF    f7754000-f7776000    Deferred        ld-linux.so.2
ELF    f7776000-f7777000    Deferred        [vdso].so
Threads:
process  tid      prio (all id:s are in hex)
0000000e services.exe
    00000031    0
    0000001c    0
    00000014    0
    00000010    0
    0000000f    0
00000012 winedevice.exe
    00000019    0
    00000018    0
    00000017    0
    00000013    0
0000001a plugplay.exe
    0000001f    0
    0000001e    0
    0000001b    0
00000022 explorer.exe
    00000023    0
00000032 swtor_fix.exe
    00000059    0
    0000005a    0
    00000033    0
00000034 wineconsole.exe
    00000035    0
0000000c (D) C:\Program Files\Electronic Arts\BioWare\Star Wars - The Old Republic\swtor\retailclient\swtor.exe
    00000062    0
    00000061    0
    00000027    0
    00000048    1
    00000009   15
    00000021   15
    0000002d    0
    0000002c    0
    0000000b    0
    0000002b    0
    0000002f    0
    0000003f   15
    0000003b    0
    0000003a    0
    00000039    0
    00000038    0
    0000005d    0
    0000005c    0
    0000003c    0
    00000042    0
    0000003e    0
    00000040    0
    00000041    0
    0000001d    0 <==
    00000024    0
    0000002e    0
    0000005b    0
    0000000d    0
System information:
    Wine build: wine-1.7.25
    Platform: i386
    Host system: Linux
    Host version: 3.2.0-67-generic

"

 

Hope it helps!

Greez

Respuestas

Bittersteel Sunday 31 August 2014 at 10:53
Bittersteel Anonymous

Mensajes

what 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 :)

Respuestas

Anonymous
Sunday 31 August 2014 at 14:30
i also change the language from france to english if thats matter.
Anonymous
Monday 1 September 2014 at 2:28
wierd update!
Anonymous
Monday 1 September 2014 at 2:29
oh wrote double reply by mistake, if mod can edit. i was about to say, that i menually set the resolution in the wine configeration and now its working. i set it to my native resolution.
WarfarinKithwood Wednesday 6 August 2014 at 18:42
WarfarinKithwood Anonymous

Mensajes

I 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.

Respuestas

Anonymous
Wednesday 6 August 2014 at 20:51
Ok, I installed gdiplus, but I cannot find comctl32 or ddrawex in the "install components" tab. Could you please explain how I can install those two? Any further help is greatly appreciated!
Anonymous
Wednesday 6 August 2014 at 21:16
Woops, I was looking in the wrong place, adding them now. I'll post back the results!
Anonymous
Wednesday 6 August 2014 at 22:25
Ok, I added those three to the libraries in wine config from the drop down box and unfortunately it did not work, the map freeze bug is still happening. I added the libraries and they're set as "native, builtin" , and there is also no * before the names of three I added, which the rest of the overrides in the library have (if that makes any difference?). Did I do this correctly or did I miss anything? With that said, is there anything at all, even minor things, that you had changed in the PoL and/or wine config from default??? Thanks a lot so far WarfarinKithwood, I really appreciate your help on trying to fix this issue!!!!
Anonymous
Wednesday 6 August 2014 at 23:19
I forgot the library msls31. That said, I did have a map crash for a waypoint directly in the middle of the map. I tested this three times. All the waypoints around the map were okay but the one in the middle (it was a bonus mission) would ALWAYS crash it. Still, it's much more playable for me right now. Also, I am not in a virtual desktop. Running at screen res (1680x1050). No * before the library names. If I think of anything else, I'll let you know.
Anonymous
Wednesday 6 August 2014 at 23:27
Just added msls31. It is still playable for me too, but I just got to avoid the map with the cursor. If I come upon a solution for this elsewhere I will be sure to post it here. Thanks again. =)
Anonymous
Sunday 19 October 2014 at 18:48
@Hermes111 Where did you find comctl32, and ddrawex?
Hermes111 Tuesday 5 August 2014 at 12:40
Hermes111 Anonymous

Mensajes

There 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 

Respuestas

Hermes111 Sunday 3 August 2014 at 14:13
Hermes111 Anonymous

Mensajes

Everything 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 frown

Respuestas

Anonymous
Sunday 3 August 2014 at 14:14
Just to clarify; the video freeze and GUI disappearing happens at the same time, they are not two different issues
Sunday 3 August 2014 at 20:37
fixme:dbghelp:elf_search_auxv can't find symbol in module
That's the integrated debugger trying to output informations about the problem that occurred, if there's any interesting log it is a bit above this line
Anonymous
Monday 4 August 2014 at 6:40
Ok this is the line that is spammed hundreds of times before the freeze occurs:
Anonymous
Monday 4 August 2014 at 6:41
fixme:win:GetWindowPlacement not supported on other process window 0x70034
Monday 4 August 2014 at 8:35
In general fixmes are not a problem
Anonymous
Monday 4 August 2014 at 8:52
Hmmm, Aside from the two lines I've posted there isn't anything else showing up once I'm in the game. I have no idea what to do now other than play around with settings. Any suggestions? Thanks anyhow for your input thus far
Anonymous
Monday 4 August 2014 at 9:57
OK! I think i fixed the freezing problem! What I did was I changed the virtual desktop resolution to 1280x720(same as my actual monitor res) and I changed the ingame resolution to the same. Before my VD res was 1000x615 (as per a youtube suggestion), and my ingame was 800x600. So Im assuming the difference between the two was messing something up. I have a new problem now though. When I first boot the virtual desktop it covers the whole screen, I login and hit play, then wait the ~5 mins for the actual game to boot. Once the actual game boots up though the virtual desktop shifts > and down so my side bar and top bar is displayed. This then moves part of the game display off of the screen (see pic). How do I fix this now?? http://imgur.com/rnvioWx
Anonymous
Monday 4 August 2014 at 13:39
Alright, I jumped the gun, the game is still having the freezing problem. It was running well for a little while there too -_-. I fixed the virtual desktop problem though by not running it in virtual desktop (for whatever reason at first it wasnt booting the game unless in VD, now it does though lol)
Quentin PÂRIS Thursday 31 July 2014 at 13:51
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

- Really improves performances on Mac OS
- No longer use a patched wine version, so we can figure out how to solve this crash problem

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

Respuestas

Anonymous
Thursday 31 July 2014 at 15:05
Can't even get past the launcher. Able to start the launcher, once i enter my username and password it just hangs there with the wheel going around and around
Anonymous
Thursday 31 July 2014 at 15:06
Chat that the line "POL_Wine start /unix swtor_fix.exe "$@"" exists
Anonymous
Thursday 31 July 2014 at 18:34
where do i check that?
Anonymous
Thursday 31 July 2014 at 18:35
~/.PlayOnLinux/Shortcuts/
Anonymous
Thursday 31 July 2014 at 18:35
it goes on for 1-2 minutes then pop ups with: unable to retrieve patch data. please check network. Seems to not be able to download. (it is the swtor launcher that says this, not playonlinux)
Anonymous
Thursday 31 July 2014 at 18:45
That problem does not come from POL. Try again later
Anonymous
Thursday 31 July 2014 at 20:01
tried. keeps coming. at least it seems to be trying. but seems to be missing internet from within POL. I'll try a bit more.. perhaps i just need to reinstall
Anonymous
Thursday 31 July 2014 at 23:46
WORKS! :)

Editado por: Tinou

Quentin PÂRIS Thursday 31 July 2014 at 13:36
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Anonymous
Sunday 3 August 2014 at 14:10
Tried this to see if it would fix my problem (posted above) but it doesn't as I can't even load the launcher with this wine version. The launcher (where you enter your account) appears but then crashes right away. This is the debug output
Anonymous
Sunday 3 August 2014 at 14:10
fixme:win:EnumDisplayDevicesW ((null),0,0x326908,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3244f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3248c8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3268f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3268f8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x326938,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x3268d8,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x57fa338,0x00000000), stub!
fixme:wbemprox:wbem_services_CreateInstanceEnum unsupported flags 0x00000030
fixme:wbemprox:enum_class_object_Next timeout not supported
fixme:win:EnumDisplayDevicesW ((null),0,0x57f9308,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),0,0x57f9108,0x00000000), stub!
fixme:ddraw:ddraw7_Initialize Ignoring guid {aeb2cdd4-6e41-43ea-941c-8361cc760781}.
fixme:winhttp:get_system_proxy_autoconfig_url no support on this platform
fixme:winhttp:WinHttpDetectAutoProxyConfigUrl discovery via DHCP not supported
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
squeenix Thursday 31 July 2014 at 0:06
squeenix

Mensajes

I 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. :)

Respuestas

Anonymous
Thursday 31 July 2014 at 2:05
I'm currently building wine 1.7.19 with SWTOR patch. Can you try when it's done?
squeenix Wednesday 30 July 2014 at 1:18
squeenix

Mensajes

So 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.

Respuestas

Masmarino Saturday 26 July 2014 at 11:01
Masmarino Anonymous

Mensajes

This 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 :

Respuestas

Anonymous
Thursday 17 March 2016 at 13:54
I have the exact same issue.
timorlee Sunday 6 July 2014 at 19:07
timorlee Anonymous

Mensajes

The 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

Respuestas

Anonymous
Sunday 6 July 2014 at 19:16
Can you send a screenshot please?
Anonymous
Sunday 6 July 2014 at 19:22
There isn't anything to be seen, the launcher window cleses, and nothing else happens. (Except several lines of fixmes appearing for a while, but after the last posted line, nothing happens at all).
Anonymous
Sunday 6 July 2014 at 19:22
That is, if I run with the debugger of course.
Anonymous
Sunday 6 July 2014 at 19:43
Als, I've tried the wine 1.51-the old republic version, and it stops at the same point...
I'm guesing it has something to do with:
[0706/185916:ERROR:network_change_notifier_win.cc(111)] WSALookupServiceBegin failed with: 8
But I can't find any info to fix that...
Anonymous
Sunday 6 July 2014 at 21:21
Can you run this please? http://www.playonlinux.com/en/app-2141-Diagnostic_Tools.html
Anonymous
Monday 7 July 2014 at 11:17
I think that your videocard is not supported
Anonymous
Monday 7 July 2014 at 21:33
Damn...
Well, anyway, worth a try. Thanks for the help anyways!
Anonymous
Tuesday 8 July 2014 at 23:17
Oh, yeah, in this case, can a Mod remove the negativ Feedback? Cause its clearly not the scripts fault! I can't change that :(
Anonymous
Tuesday 8 July 2014 at 23:18
It does not matter ;-)
Anonymous
Saturday 12 July 2014 at 1:32
I have the same problem potentially. When I hit play it goes blank but it still running. Technically if I alt tabe or find my programs running I can find it and evetnually get it to come up but it's at the splash screen with a stuck rotating thing in the corner. This is how the wine version went exactly. I have had it working through the one guys script. I forget the full reason for the stuck splash but the other problem was something to do with how swtor client goes directly to their server and the exact server adress has to be accessed directly or something... I don't know if that helps or if you don't already know that. But I had it working and played besides the horrendous performance in normal wine.
Anonymous
Saturday 12 July 2014 at 1:34
The actual login screens works wonderfly though.

Editado por: Tinou

Quentin PÂRIS Sunday 6 July 2014 at 13:54
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Quentin PÂRIS Sunday 6 July 2014 at 13:44
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

Mensajes

Fixes 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

Respuestas

Editado por: Tinou

wil_sly Sunday 6 July 2014 at 1:10
wil_sly Anonymous

Mensajes

After 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 wink

Wil

Respuestas

Anonymous
Sunday 6 July 2014 at 1:25
the right error message was "You did not install the program to the default location!" ;-)
Anonymous
Sunday 6 July 2014 at 1:40
Well, you might have not installed the program correctly. I'll retry tomorrow to be sure
Anonymous
Sunday 6 July 2014 at 9:26
I just install the game with the default parameters...
Anonymous
Sunday 6 July 2014 at 14:59
It should be fixed!
Anonymous
Monday 7 July 2014 at 11:53
Anyway, after long hours of download, the game starts this morning without errors, thank you again for the job ;-)
Quentin PÂRIS Saturday 5 July 2014 at 21:31
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Quentin PÂRIS Saturday 5 July 2014 at 20:45
Quentin PÂRIS Anonymous

Warning

This update has not been approved yet by the team.
Use it at your own risk

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

Respuestas

Anonymous
Saturday 12 July 2014 at 1:36
When we click try this update what do we tell it to access? The exec of the program or playonlinux?! Mine is looking for an application.
Saturday 12 July 2014 at 11:14
Select playonlinux-url_handler
Not sure if there's a requirement on PlayOnLinux/PlayOnMac version too
Anonymous
Sunday 10 January 2016 at 16:47
Guys, my game freezing!
Anonymous
Sunday 10 January 2016 at 16:49
This is the error

Editado por: Tinou