the new update makes my wow lag extremely badly
nevermind. sorry. I found my issue. It just happened to be something else i did at the same time i updated. Loving the update now that i know its not causing lag. lol
the new update makes my wow lag extremely badly
nevermind. sorry. I found my issue. It just happened to be something else i did at the same time i updated. Loving the update now that i know its not causing lag. lol
Last edited by 22alec22; 08-09-2011 at 10:12 PM.
I've been trying to get some code together to make the bot use a healthstone when health is at around 10% automatically. Any suggestions on code, my code just doesn't seem to work, and goes off at much much earlier than 10%.
@kickmydog sorry I've worked out a nice way for aspect dancing so stay tuned. as for the healthstone issue is it set to <= or >=. If it where me I'd just cast it when I needed it or add it to an ability that you use when your health is low.
@all, my wife just had our second son so I'll be hit or miss until she comes home.
OK, I am going nuts on this mage build! during the conserve phase i want it to cast Arcane blast 5-6 times. Like R0w4n pointed out i can get about that many blasts in a raid while keeping my mana arount 80-90% with raid buffs. The problem i have seen is that the unitdebuff that display only count 4 blasts. When i set the following ability to 3 it will cast until it hits a stack of 4 and then stop. That is what i want it to do is stop at a specified cast amount. But when i set it to anynumber above 3 it will cast Arcane Blast continuously. Help!
If I can not get this working then i might try another way (more complicated). That would be to have it cast till mana to X% then cast arcane missle to clear count.Code:local _,_,_,ABcount = UnitDebuff("player", "Arcane Blast") local AM = UnitBuffID("player", 5143) if ABcount <= 3 then return true end
If I have not totally confused you all yet i would greatly appreciate the help.
Last edited by kickmydog; 08-10-2011 at 12:12 AM.
The problem is not that my code does not work its just that i cannot get it to go past a count of 4. What i have noticed is if I manually cast Arcane Blast 5-6 times the debuff still only shows 4, so i think that the debuff count cannot register past 4 stacks.
Just wanted to say thanks for all the help from you, xelper (for the app) and others. This app is awesome. I do not tell anyone about this little gold mine!
just logged on my mage to check this out. the thing is AB only stacks to 4. so the way to do it is add a cast counter with a mana check. try this and let me know if its what your looking for.
Code:local timesCast = 0 local myMana = UnitPower("player") / UnitPowerMax("player") * 100 if timesCast <= 5 and myMana >= 80 then timesCast = timesCast + 1 return true elseif timescast == 6 then timesCast = 0 return false end
I need help with a trinket, I need to have the script check to see if the trinket is on Cd. If it is to wait until it is off cd and wait for 5 stacks of Titanic Power before using.
Trinket item=68972
Apparatus of Khaz'goroth Apparatus of Khaz'goroth - Item - World of Warcraft
Needs to wait for 5 stacks of
spell=96923
Titanic Power
Thanks for any help
---------- Post added at 03:18 AM ---------- Previous post was at 03:09 AM ----------
Open Abilities of what ever class you are using and copy/paste at the bottom of the abilities right above the class name, i.e my example "Do NOT use the </DEATHKNIGHT> in yours"
Code:<Ability> <Name>Health Stone</Name> <Default>false</Default> <SpellID>5512</SpellID><Actions/> <Lua>local myhealth = 100 * UnitHealth("player") / UnitHealthMax("player") if myhealth <= 10 then return true end</Lua> <RecastDelay>0</RecastDelay> <Target>Target</Target> </Ability> </DEATHKNIGHT>
Hello, first big thx for author of this amazing rotation bot!
So far im satisfied by affliction rotation, but there is one issue which is probably easily solvable by editing spell.
Its about Soul Swap, Can we set that we cast Bane of Agony when we have smt on focus and Bane of Doom if we don't have anything?
Because when swapping Bane of Doom it cancels the effect on original target, which is loss of dps.
Sorry for my bad English and for my laziness if this matter was discussed here already.
Best Regards.
Kartoniasty
@Gorthok, I was going to try your DK profiles but I think when you pasted them you lost all formatting, they do not work they even make PQR refuse to start, throwing some errors.
@Xelper, I am using Windows 7 64 Bit English with English WoW client. Lowering the Refresh Rate to 300ms works mostly, does sometimes cause the game to lag a lot though and sometimes it also crashes or WoW crashes when I end PQR. I never had any of those problems at all with v1.0.6.
Hmm.. so as part of the next update I am working on a way to load multiple XMLs for each class to simplify sharing. That way someone can name their XML something like crystal_techs_shadowpriest_PRIEST_ABILITIES.xml and it would load with all of the other priest abilities as well.
I am thinking it might also be good to allow _GENERAL_ABILITIES.xml as well for things like PvP Trinket, Healthstone, Volcanic Pot, etc.