Hello, i'm playing Holy Pal hast optimisation.
I'm looking for someone to share his rotation setting please.
Hello, i'm playing Holy Pal hast optimisation.
I'm looking for someone to share his rotation setting please.
I know this is no longer supported but just seeing if someone knows.
I think the resto shaman and resto druid are great. I started with my disc priest and i feel like it lags a bit trying to decide what to do after moving then coming to a stop.
wonder if that has to do with the bubble movement thing, its bubbling you so that you can move and waiting for bubble to come off CD?
try disabling the talent in the rotation, but heads up, i have no idea if it will work, have no clue on coding either, just i used this on my priest when i was low gear and wanted quick LFR ques. worked great, didnt pay attention to if it hung up on anything cause i was just doing LFRs. if it works, let me know. my shadow set is pretty much all set and now im starting to build a disc set. and if thats the case, i will just bubble myself manually for speed increase and avoid lag issues
I cant get the resto shaman profile to do...well...anything. Is it simply not supported anymore or what? My other profiles for other classes run without a hitch.
Yeah but I've already used older profiles before and figured they simply weren't being improved. Oh well. Any other resto shaman profiles anywhere? A search turned up nothing but old profiles thus far (I used to use Onya's back in the day and ****in LOVED his raid healing profile)
Yeah I downloaded it too since most of the profiles I use are old, some from 5.0. The profile should still work, if he put some thing in it to deactivate it then why even have this thread? Why even have them available to download? Remove the links from the OP...
So after updating offsets for 5.4.2.. trying to run Vash healing Paly profile it is tell me. PQR Error > Please download the latest version of PQI. Rotation has been stopped.
Would there be a way to delete the code that checks for update of PQI? and force it to run anyway?
Last edited by Chaban416; 12-10-2013 at 02:35 PM.
same error "<PQR Error> Please download the latest version of PQI. Rotation has been stopped."
will miss this profile =/
blah use the normal keys
That's the check that's throwing the error you're getting. I haven't had time to check why it's happening since I'm dealing with exams, but hopefully someone can do something with that info. Could probably just remove the check.Code:--Begin PQI if (IsAddOnLoaded(&quot;PQInterface&quot;)) == 1 then PQInterfaceLoaded = true PQInterfaceVersion = (tonumber(GetAddOnMetadata(&quot;PQInterface&quot;, &quot;Version&quot;))) if PQInterfaceVersion &gt;= 2.22 then PQInterfaceUpdated = true else PQInterfaceUpdated = nil PQR_WriteToChat(&quot;Your PQI is not up to date. Rotation has been stopped.&quot;, &quot;Error&quot;) PQR_StopRotation() return true end else PQInterfaceLoaded = nil PQR_WriteToChat(&quot;Please download the latest version of PQI. Rotation has been stopped.&quot;, &quot;Error&quot;) PQR_StopRotation() return true end
Former PQR Developer
Ya i cant figure it out good luck all
Last edited by JoeCHabs; 12-11-2013 at 03:50 PM.
FIX FOR VACHIUSA'S HEALER PROFILES
Ok I fixed it... well.. rigged it guys. Here's what happens. Under each of Vachiusa's Profiles.
Go to Ability Editor > -- Init --
In that ability there is a Section labeled "--Begin PQI"
Comment out (add "--" to the start of each line) everything BUT
PQInterfaceLoaded = true
and
PQInterfaceUpdated = true
In the end it should look like this.
Code:--Begin PQI -- if (IsAddOnLoaded("PQInterface")) == 1 then PQInterfaceLoaded = true -- PQInterfaceVersion = (2.22) -- if PQInterfaceVersion >= 2.22 then PQInterfaceUpdated = true -- else -- PQInterfaceUpdated = nil -- PQR_WriteToChat("Your PQI is not up to date. Rotation has been stopped.", "Error") -- PQR_StopRotation() -- return true -- end -- else -- PQInterfaceLoaded = nil -- PQR_WriteToChat("Please download the latest version of PQI. Rotation has been stopped.", "Error") -- PQR_StopRotation() -- return true -- end -- Load Data File