any1 got a good warrior tank profile...?
Sheuron's works but just not well imo
any1 got a good warrior tank profile...?
Sheuron's works but just not well imo
well sumthing is wrong with his profile,
it casts thunder clap once.... and thats at the start, when no rend ect is up, and does no aoe : /
or am i doin summat wrong?
i am also useing the build he recommends.
Anyone else having problems with PQR_UnitFacing/PQR_UnitInfo not working?
Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH
So when you start the profile and enter combat you get the FPS loss? does it do the rotation as normal at that point? Then when you pop CDs via the alt modifier. It should switch rotations to something I call Zealot Mode. Then when CDs ware off, it should go back to the normal rotation and now it acts normal?
Yes it works with no problems during normal rotation, its when it switches to zealotry-mode the fpsdrops and freeze starts, and resumes after zealotrymode is ended.
Sent from my GT-I9100 using Tapatalk 2
Only thing I can think of what is messing up is how I'm calling for the switch to Zealot Mode...Kinda ran into this by mistake..but it's working for me on my side. Can someone look at this code and let me know if this is right or maybe a better way of writing it?
In the normal rotation I have a an ability called
--Zealot Mode--
Then I have a ability in Zealot Mode calledCode:local zealotry = PQR_UnitBuffID("player", 85696) if zealotry ~= nil then PQR_SwapRotation("Zealot Mode (Ralphiuss)") return true end
--Zealot Mode Over--
Code:local zealotry = PQR_UnitBuffID("player", 85696) if zealotry == nil then PQR_SwapRotation("PVE Retribution (Ralphiuss)") return true end
Last edited by Ralphiuss; 05-17-2012 at 12:55 PM.
I don't think the return true is needed in either of those is it? Every time I've seen it used, it doesn't have return true in there. For example, this is what I would do:
Then I have a ability in Zealot Mode calledCode:local zealotry = UnitBuffID("Player", 85696) if zealotry ~= nil then PQR_SwapRotation("Zealot Mode (Ralphiuss)") end
--Zealot Mode Over--
Removed the return true's and also went from PQR_UnitBuffID() ----> UnitBuffID(). Have never really had any good success from using it, so I stick with UnitBuffID() & UnitDebuffID().Code:local zealotry = UnitBuffID("Player", 85696) if zealotry == nil then PQR_SwapRotation("PVE Retribution (Ralphiuss)") end
Tell me if that works.
EDIT* I'll just pop on my pally and test it out and let you know what happens. I'll post back in 5-10 minutes tops.
Ok, I ran Ralphiuss' profile both ways, my way and his, and I did not get any FPS drop what-so-ever. How old is your computer for the one that's getting the FPS drop. Might be that it's performing to much calculations on the data and slowing you down.
Other than that, I have over 20 addon's installed and being used, not getting any lag/FPS drops at all. Again, this was my way and his way. I like my way better though![]()
Ah hello Firepong! My laptop is an Asus k52jc intel i5 2.4ghz 3gb ram Geforce 310M 1gb, and I havent encountered this problem on any pqr-profile before so.. Can you upload your edit so I can try that one too?
Sure, here goes my edit. Just don't update it or you will loose the edits. Like I said though, I got no slow-downs. Have you upgraded to the latest PQR? It's at version 2.1.5 right now.
Attachment 7401