As soon as the interrupt has started it will use the same value for PQR_InterruptPercent until the global PQR_InterruptStarted is set back to true. If you want random interrupts all the time, you'll need to not use the global, PQR_InterruptStarted.Code:if PQR_InterruptStarted then PQR_InterruptStarted = false --This is the delay before interrupting in seconds. PQR_InterruptDelay = 0.5 --This is the percentage of the cast to wait before interrupting PQR_InterruptPercent = 0 end
Do or Die
[PQR] Monk Mistweaver
My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
https://imdasandmandeathknight.googl...com/svn/trunk/
Is it possible to add Asphyxiate/Strangulate and Arcane Torrent blood elf-racial as interrupts if Mind Freeze is on cooldown? Talking Nova's modded interrupt-profile.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063
@Ninjaderp
try to change in the initalize ability
forPHP Code:
if playerClass == "DEATHKNIGHT" then
return 47528
Try it and say what happens. I have no ideia if it will work XDPHP Code:
if playerClass == "DEATHKNIGHT" then
if PQR_SpellAvailable(47528) then --mind freeze
return 47528
else
if PQR_SpellAvailable(108194) then --asphyxiate
return 108194
elseif PQR_SpellAvailable(28730) then --arcante torrent
return 28730
end
end
The interrupt profile is not constantly checking your CLASS, you could change that, dunno how much that will hit on the performance side.
Make a tabbled list of spells that interrupt?
if playerClass == "DEATHKNIGHT" then
return PQ_InterrruptSpells = {47528,28730}
That wont work out of box you will have to change almost everything point to this function.
==
My bad, it is >.>
local interruptSpell = PQR_InterruptSpell()
Yeah your solution should work.
Last edited by Rubim; 01-17-2013 at 04:14 PM.
https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063
thanks both of you rubim, cassgrs, I will try it in a heroic!
As rubim said, I got severe fps-lag with that coded in. I got no problem using shift (stoprotation in rubims blood dk) and using it manually until there is a way of it working without fps suffering.
Last edited by Ninjaderp; 01-17-2013 at 05:19 PM.
Any chance of getting pqr to work with the ptr tonight? Got some raid testing to do.
^ Yeah thats true as well, I may try remove the arcane torrent-portion and try it again but for now its sleepytime here. Take care!
Fantastic, thanks man. Basically what I was doing was this. I was running Nova's Arms single target profile. Then I'd alt+c to activate interrupts set to everything so it'd interrupt on cooldown (glyphed pummel for dmg). I assume then that I was using the default interrupt built into PQR. If so, I can just go find that code and change the percentage like you listed. Either way, I have a decent idea of where to start hunting so thank you.
Hi, PQR doesn't work on test realm, current build is 16467, do you can tell me how make a new offsets?