Running Advance Combat Tracker

Questions about Wine on Linux
Locked
fennec2000
Newbie
Newbie
Posts: 1
Joined: Wed Jul 31, 2019 9:10 am

Running Advance Combat Tracker

Post by fennec2000 »

I am trying to run a program called Advanced Combat Tracker.
I see it has a few entries but not one for final fantasy XIV.

Currently I have it installed and it runs but I have a few errors preventing it from working.
Currently it can not find the game.
In the terminal i get the following:

Code: Select all

0031:err:ole:CoGetContextToken apartment not initialised
9[e0a1858]: TSF: 0x10905260 TSFStaticSink::Init() FAILED to install ITfInputProcessorProfileActivationSink (0x80004001)
9[e0a1858]: TSF:   TSFTextStore::Initialize() FAILED to initialize TSFStaticSink instance
***** 2019-07-31T15:51:42 - Entering InitACT
***** 2019-07-31T15:51:42 - Entering LoadNewSettings
***** 2019-07-31T15:51:43 - Config loading plugin from: C:\Program Files\Advanced Combat Tracker\FFXIV_ACT_Plugin.dll
***** 2019-07-31T15:51:43 - Enabling plugin: C:\Program Files\Advanced Combat Tracker\FFXIV_ACT_Plugin.dll
0061:err:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE request failed with status 0x2733
0061:err:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE request failed with status 0x2733
0061:err:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE request failed with status 0x2733
0061:err:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE request failed with status 0x2733
***** 2019-07-31T15:51:43 - Exiting LoadNewSettings
***** 2019-07-31T15:51:44 - LogFileChanged: C:\users\fennec\Application Data\Advanced Combat Tracker\FFXIVLogs\Network_20190731.log - 2019-07-31T14:23:47 - 2019-07-31T14:23:47 - 1996
***** 2019-07-31T15:51:44 - Checking for program updates
***** 2019-07-31T15:51:44 - Exiting InitACT: 1630.42
***** 2019-07-31T15:51:55 - Entering SaveNewSettings
***** 2019-07-31T15:51:55 - Exiting SaveNewSettings: 239

so the first error is:

Code: Select all

0031:err:ole:CoGetContextToken apartment not initialised
which seems to be related to this error later on:

Code: Select all

0061:err:winsock:WSAIoctl -> SIO_ADDRESS_LIST_CHANGE request failed with status 0x2733
but i'm not sure what to do about it, i have seen post about it but nothing about fixing it. Any one any ideas?

a little more info to help:
wine-4.0 (Ubuntu 4.0-1)
winetricks 20181203
dotnet472
User avatar
DarkShadow44
Level 8
Level 8
Posts: 1207
Joined: Tue Nov 22, 2016 5:39 pm

Re: Running Advance Combat Tracker

Post by DarkShadow44 »

Error code 0x80004001 means E_NOTIMPL, this would make sense. Can you try with the latest wine version and, if that doesn't help, file a bugreport for that? Please make sure to include full terminal output.
User avatar
Bob Wya
Level 12
Level 12
Posts: 3068
Joined: Sat Oct 16, 2010 7:40 pm

Re: Running Advance Combat Tracker

Post by Bob Wya »

fennec2000 wrote:...
winetricks 20181203
...
You'd also want to update your winetricks version.

The quickest way to do this is (probably):

Code: Select all

sudo apt-get purge winetricks
curl -sL https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \
| sudo install /dev/stdin /usr/bin/winetricks
/usr/bin/winetricks --self-update
To automatically update winetricks (using a weekly Cron job):

Code: Select all

cat <<_EOF_SCRIPT | sudo install /dev/stdin /usr/bin/update_winetricks
#!/bin/sh

/usr/bin/winetricks --self-update
_EOF_SCRIPT
sudo ln -s "/usr/bin/update_winetricks" "/etc/cron.weekly/update_winetricks"
This could also be done by adding a line to main /etc/crontab file (but it's probably best to keep things modular).

Hopefully this method will leave the (necessary) winetricks dependency packages, still installed ! 8)

Bob
Locked