[ 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]
When can we expect new offsets for BETA 15589 ?
Xelper;
Any chance of adding in either
- Option to change Title name
- Option to change App icon
Or
- Minimise to tray (So it's never seen again)
Reason i ask is for streaming / video recording.
Currently streaming right now. And having to remember not to ALT-Tab is a pain in the ass![]()
Last edited by Lofty; 04-14-2012 at 06:18 AM.
can someone point me to a guide on how to retrieve offsets yourself?
What will you do about spells that morph, aka change name and spellid based on the weapon you wear or the form /stance you are in like Jab - Spell - World of Warcraft
Does PQR adapt to that or does the rotation author keep it in mind?
Success! I have finally managed to code the Survival Hunter LnL logic correctly! Tests:
Max Focus (somewhere above 66 before LnL)
Minimum Range - 9 ticks, 1 arcane shot. Rotation: Explo (0,1s) Explo Arcane Explo
Max Range - Same (correctly)
Low focus (below 60)
Min Range - 9 ticks, 1 cobra shot. Rotation: Explo (0,1s) Explo Cobra Explo
Max Range - Same (correctly)
Doing some DPS tests with 100mln dmg done, will report back later + the code![]()
any thoughts on the best way to implement use of synapse springs in profiles, can't seem to find any examples
Ok, I have done the testing and all that stuff - my Survival Hunter Lnl logic is ready!
Tests:
Pet - Wind Serpent
No cds used
#1 My 'not-perfect' Lnl code
85mln damage done
28400 DPS
ExS 36,1% dmg ; 40,7% crit
CS 19,7% ; 33,3% crit
Auto Shot 14,3% ; 32,9% crit
Arc 13,9% ; 33,5% crit
Now, the test with my perfect LnL coding. Please note - yes, the DPS difference is pretty small and some of you might say 'ah, maybe you just got more lucky'. No, I didn't! That's why I added the % of crits and % of damage to show you that actually I had LESS luck testing my better code.
#2 Perfect LnL handling
85mln damage done
28750 DPS
ExS 35,6% dmg ; 38,8% crit (less crits and less LnLs then the first test)
Cobra 20,9% dmg ; 33,4% crit
Auto Shot 14,1% dmg ; 32,8% crit
Arc 14% dmg ; 30,9% crit
Also, some tests with only the LnL handling
Max Range, full focus - Explo Explo Arc Explo (9 ticks, perfect)
Max Range, low focus - Explo Explo Cobra Explo (9 ticks, perfect)
Min range, full focus - Explo Explo Arc Explo (9 ticks, perfect)
Min Range, low focus - Explo Explo Cobra Explo (9 ticks, perfect)
Please do note that this works perfect, on my latency! 52ms
How to:
Add 2 new abilities, Explo Lnl and AS lnl.
Explo LnL code:
if not setAoE
and UnitBuffID("player",56453)
then return true end
Recast Delay 1100
ID 53301
AS Lnl:
if select(2,GetSpellCooldown(53301)) == 0
and UnitPower("player") > 60
and not UnitBuffID("player", 56453)
and UnitDebuffID("target",53301,"player") then
return true
end
Recast Delay 2000 (so it doesn't cast 2 arcane shots between the Explosives)
ID 3044
Edit NORMAL Arcane Shot to:
if UnitPower("player") > 60
and not UnitBuffID("player",56453)
and not setAoE
then return true end
and Black Arrow to:
if not setAoE
and not UnitBuffID("player",56453)
then return true end
Also I changed cobra shot code to:
if UnitPower("player") <= 60
and not UnitBuffID("player",56453)
then return true end
Now open up rotation edit and put the Explo Lnl and AS Lnl into the right column. Put Explo right under Serpent Sting and Arcane LnL under the Explo Lnl ability.
Hope it helped!
Last edited by Dominium; 04-14-2012 at 01:10 PM.
LOVE this.
Just one problem, cant get the holy priest healing one loaded. There is nothing in the drop downs for rotation after i attach it to wow. Everything else works (warrior). Anyone have a clue?