Do or Die
[PQR] Monk Mistweaver
EDIT
nope i didnt solve it. So when i try create and detonate abilities which are the only one in rotation it working well, but when i put this to full rotation it create one mushroom and stop with ...(that thing to select where to cast) on mouse pointer and nothing do.
Tested in combat and nocombat.
EDIT2
deleted from initialize ability:
"IsSpellTargeting()"
and it works now.
Last edited by vorn10; 09-19-2012 at 12:24 PM.
Dom and Averykey, some input on the ret pvp profile. No where near done yet, I know. Can we get the left shift key to do HoJ and the left alt to do HoP on mouse over? During burst I noticed that WoG wouldn't go off on its under percentage life (wings and HA). Other than that if you can get Eman/HoF working and WoG/Selfless Healer workong on party targets, I think you guys are in business.thanks for the effort up to this point. Looking forward to future updates.
I was gonna say since MOP is around the corner, just forget about =) Your profile is spectacular as it is. If anything i can probably just remove doomguard from the rotation and hit it manually for situations like Madness. There is one thing though, looking at simulationcraft's action priority list (in both the 85 and 90 sims), I notice the doomguard is summoned at the start of the fight. I know simc is just a sim but what are your thoughts on this?
Thank you again for the great work!
808
edit* I just noticed you now have a new thread dedicated to your profile =) Thanks to Gabbz for the suggestion and thank you Nilrem for the continued great work.
Last edited by 808; 09-20-2012 at 12:23 AM.
Ty for noticing, I'm also looking at Doomguard and I will try to see what is the best situation for him, but I presume we can put doomguard up either on prepot-pull, bloodlust, or bosshp < 20%.
I'll see what will become of him
Let's continue this in my thread so we don't make useless counts of pages here![]()
Supporter of Frozen.
I don't quite understand what you mean about, returning "focus" or "target".
if not focus(focus doesn't exist? or are you comparing censure stacks.) or target(so if I don't have censure on focus or target) and target>focus then(target has more stacks than focus?)
cast judge on focus
elseif not target or focus(same as above) and target < focus or target == focus(target has less censure stacks than focus or target has the same stacks as focus) then
cast judge on target
end
Since censure never loses stacks it will stop when both targets have 5 and wait for someones stacks to fall off and then just judge the other target, and it won't switch back and forth, if I'm reading this right.
Am I missing something.
edit: re-post from last page.
It keeps judging the focused target, changing ResetTimer >= 7 helped slighty, but then it judged the focus twice, then just the target.
Not sure what to do about this, I have tried many things and it still doesn't want to work.
The only fix I have thought of is, storing the players last casted spell and the target the spell was casted on, then you check it before you casting judgment again.
I have no idea how to go about this though.
again rep+ for any help, willing to try anything.
edit: Thank you very much for the range check function, going to change everything to use it instead of my current code.
Will rep again when it lets me.
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
hi
i have a problem with pqr after login into wow 32 bit pqr can not load any profiles there iss on the top the msg not logging in
net framework i have the newest i have tetset with and without addons
yesterday it was working fine
whaT CAN I DOO?
there iss the newest yesterday it was working
anyone wanna make a quick shadow rotation? $50. upfront.
where the hell did cokx go? lol anyway msg me qt's
oh way, thnx mate
before I start filling out code for my spell is anything wrong with it? rep+ if you see anything I could do better or have messed up.
PHP Code:
i#party
i#partyhealth
if IsSnared(party) or IsRooted(party) and PlayerHp >= 50 and partyHealth >= 50 then
if mana >= 40 and hof notavailable then
if healerisafflicted then
cast empancipate(afflictedpartymember)
elseif not healerisafflicted then
cast empancipate(afflictedpartymember)
end
end
else
if healerisafflicted then
cast hof on healer
elseif not healerisafflicted and
cast hof on party member
end
end
if IsSnared("player") or IsRooted("player") then
if mana >= 40 and hof not available then
cast empancipate
end
else
cast hof on player
end
end
My Svn - https://subversion.assembla.com/svn/averykeys-svn/
alright this is the second time i've seen you do this in about a weekPHP Code:
i#party
i#partyhealth
if IsSnared(party) or IsRooted(party) and PlayerHp >= 50 and partyHealth >= 50 then
if mana >= 40 and hof notavailable then
if healerisafflicted then
cast empancipate(afflictedpartymember)
elseif not healerisafflicted then
cast empancipate(afflictedpartymember)
end
end
else
if healerisafflicted then
cast hof on healer
elseif not healerisafflicted and
cast hof on party member
end
end
if IsSnared("player") or IsRooted("player") then
if mana >= 40 and hof not available then
cast empancipate
end
else
cast hof on player
end
end
When you are using elseif, here is how the code structure should look
if .. then
elseif ... then
elseif ... then
end
how you are coding it
if ... then
elseif .. then
end
end
this will break your entire profile and not just your ability code.
the same coding style applies to
if .. then
else
end
also your first bit of code seems to contradict your second bit of code
I am not comparing stacks, it is the time of censure left and since I am comparing 2 of the same, I don't have to subtract from GetTime()
if target doesn't have censure appliedCode:not target
focus has censure and focus censure time difference than target censure timeCode:focus and target<focus
If your target ever becomes your focus, the code will still runCode:target==focus
Do or Die
[PQR] Monk Mistweaver