fwiw, my cuteone feral profile seems to be working just fine. dps seems to be a tad lower than normal, but that could just be rng
fwiw, my cuteone feral profile seems to be working just fine. dps seems to be a tad lower than normal, but that could just be rng
same here for me-telling me that i need to update PQI even tho i have the latest version of PQI for 5.4
also i noticed that all of my character movement logic is not working properly-as soon as i load my previously working profile my character just spins around endlessly
Can someone check the offsets that were provided earlier in the thread to see if maybe one of them is incorrect hence the the erratic movements. Other than those 2 bugs my custom dk rotations are working as intended
Note currently posted offsets will not work for profiles that use unit position information. I will have the new offsets up in the next 30 mins or so that will work.
Figured out the problem with PQI, looks like Blizzard made a stealth change to the API, IsAddOnLoaded() now returns true as opposed to 1 if the addon is loaded. Profiles need to be updated if they are specifically checking for an integer.
In the case of Vachiusa's code, you would change:
To:Code:--Begin PQI if (IsAddOnLoaded("PQInterface")) == 1 then
I got someone to confirm this for me as I'm EU so don't have the patch yet, but should work.Code:--Begin PQI if IsAddOnLoaded("PQInterface") then
thanks Xelper youre one great dude-can you chect to see if the PQI needs to be updated pqr spam is related to the offsets or does PQR need to be updated thx again
Since I use several of his profiles I tried to do a global find/replace and didn't get any results. Then I realized that my editor was plain text so I had to do some conversion.
Code:if (IsAddOnLoaded("PQInterface")) == 1 thenCode:if IsAddOnLoaded("PQInterface") then
the abilities .xml file-for me it was under/profiles/interrupt/Alpha Utilities_INTERRUPT_Abilities.xml
So what we need to get it working again? New offset and PQI update?
New offsets are on the updater, click Download Offsets. If you installed the released offsets manually, do it anyway as a few of them are off. Blizzard made some minor changes to the object manager, which only happens in major patches usually.
Last edited by Xelper; 12-10-2013 at 05:13 PM.