Kuukuu will you be adding Elusive Brew to the rotation when you have more than 9 stacks?
Kuukuu will you be adding Elusive Brew to the rotation when you have more than 9 stacks?
10-11 stack will be perfect imo
[ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
If you like this piece of code feel free to invite me a beer making a donation.
My paypal account: [email protected]
ok quick question i'm trying to figure out which is better:
what i'm trying to find out is the best way to convert energy.time_to_max from simcraft to a usable pqr var. so just need some input.Code:local EnergyRegen = select(2, GetPowerRegen("player")) local timetoEnergyCap = (100 - PlayerEnergy) * (1.0 / EnergyRegen) or UnitPower('player") <= (100 - (select(2,GetPowerRegen("player")) * 5))
Please if someone helped you donate rep to them.
Does anyone know if the Interrupt profile has been fixed or not mine does not seem to be working. Or i should say hasn't been working for a while now.. Any help most appreciated![]()
This is what I was using in my rogue profile to pool energy. If I had to re-do it i would set up my own global pause timers that the profile checked.
Code:local e=60 --how much energy you want to pool if UnitPower("player")<e and PQR_SpellAvailable(1856) then local r=GetPowerRegen() local t=((e-r)-UnitPower("player"))/r PQR_DelayRotation(t) end
Do or Die
[PQR] Monk Mistweaver
Anyone else having issues with Decaed's DW frost dk profile not using Soul Reaper? Tried fixing it myself to no avail. Would love an update if possible!
Hey guys,
got a simple update for knightnovas SMF rotation for Warriors.
All credits go to knightnova, I just did some really really small improvements, well for me it were improvements at least ^^
Just modified the single target rotation for my needs...
have fun trying it out.
File-Upload.net - WARRIOR-simcraft-smf.rar
this UnitPower('player") <= (100 - (select(2,GetPowerRegen("player")) * 5))
or
local inactiveRegen, activeRegen = GetPowerRegen("player")
UnitPower("player") <= 100 - (activeRegen * 5) ......
More testing done, If you have the glyph of mass exorcism it doesn't cast exorcism at all but it doesn't skip it either it will just hang up, If you add mass exorcism into being cast in the single rotation that clogs up the rotation as well. I'm going to do some testing with all three talents and see if it's just the Mass Exo glyph causing the hang up as well.