PQR Custom Functions - PQRotation Wiki
you can also google API for an interesting read
anyone have a know a up to date WW pvp prof? will +rep if given good info![]()
I know that this have been asked a lot of times but afaik it was not answered:
Is there a way to fix right alt bind on a non US keyboard layout or only Xelper can hardcode it to PQR?
Hey Folks,
do you pros have a hint how to shield my psyfiend without using macrocasts? =)
using "Psyfiend" as target dont work. Only a macrocast /target Psyfiend works but i want to prevent that.
Last edited by MrHeroe; 10-03-2013 at 10:01 AM.
Oh you are right, then I dont know. Never went on a 3.3.5 serv myself. I already made a paladin profile for it for someone tought. I can confirm it was working for him.
Good luck. PM me if you cant find and ill try to find exactly who it was and probly he will be able to help.
Edit: sorry for repost, not used to iPhone yet lol
Soapbox Rotations Developer
Why not something like this.
Psyfiend is mouse over so all you would have to do is keep your mouse there for another GCD.Code:if UnitExists("mouseover") and UnitName("mouseover") == "Psyfiend" and not UnitDebuffID("mouseover",6788) and not UnitBuffID("mouseover",17)then CastSpellByName(GetSpellInfo(17), "mouseover") end
WoW LUA Script Developer
Need Something Custom? WarmaneScripts.com
Skype - grapejuice111
In the casting of psy use target(psyfiend) castspellbyname(shield, '' target'') targetlasttarget()
Please if someone helped you donate rep to them.
Is it possible to set up a burst mode for a fire mage? Like this rotation:
Get hot streak proc manually.
Presence of Mind - Alter Time - Frostjaw - Deep Freeze - Pyroblast - Alter time (before the first pyro hits) - Pyroblast - Pyroblast(combustion at the same time, no global CD) - Pyroblast - Pyroblast
I want to do everything myself except the burst. I want to be able to click on a button and the bot will execute the burst for me. How hard is it to make a bot that does this?
I pretty much want this burst into a bot that will do the burst for me when i press the button: http://www.youtube.com/watch?v=A6ji8...BBXgpaBP59XmjQ
Last edited by Simber; 10-03-2013 at 07:37 PM.
is it possible to set DoT's on ALL targets in range without mouseover? lets say.. i hit every target in range wich is over 500 max-healt with Shadow Word: Pain
TargetNearestEnemy(true) and check unit health+debuffs
you can hook WorldFrame for count red nameplates (enemy count) and make some automate for aoe dotting
for example:
Code:-- only for enemy nameplates enabled local enemyCount = 0 CreateFrame('frame', nil, UIParent):SetScript('OnUpdate', function(self, elapsed) enemyCount = 0 for index = 1, select('#', WorldFrame:GetChildren()) do local frame = select(index, WorldFrame:GetChildren()) if frame:GetName() and frame:GetName():find('NamePlate%d') then if frame:IsShown() then enemyCount = enemyCount + 1 end end end end)
Last edited by Wildbreath; 10-04-2013 at 05:30 AM.