^ Did you check the Bot Maps Profiles-forum?
http://www.ownedcore.com/forums/worl...t-profile.html (Avery Ret Profile)
^ Did you check the Bot Maps Profiles-forum?
http://www.ownedcore.com/forums/worl...t-profile.html (Avery Ret Profile)
I believe it's mental's and crystals rotations for the demo warlock but since the link was down I can't update from program.
Yeah, they changed site to Assembla instead of their old one.
Make a new folder somewhere, and use this svn to get all the profiles:
https://subversion.assembla.com/svn/nova-project/
ty Ninjaderp it works perfectly
Releasing Fire Mage once I wake up! Need a good night's rest. I managed to simplify a lot of the profiles, effectively merging them into 2 profiles rather than 4. Single-Target - Automatic and Single-Target Manual. Difference is that it will still use Scorch/PoM whenever the best situation for them are (Moving or Proc dependant), personally I managed to get a good crit streak once and averaged 74.4k DPS for a long while with automatic Invocation usage (I forgot to add some checks to it, so it kept using it no matter what I had active!) so I'm only going to fix that in the morning.
Expect an update to Shadow Priest as well in a couple of hours!
Teh stress!
Can anyone check this code for me?
I want to stop casting arcane shot when murder of crow is almost off cooldown, i got something like this, but this seems to give insane amount of lua error.Code:if UnitLevel("target") == -1 then if not UnitDebuffID("target", 131894, "PLAYER") and select(2,GetSpellCooldown("player", 131894)) < 2 then return false end else if UnitPower("player") >= 40 then return true end end
Also is there a way to simplifies this code? or use CastSpellByName function.
Last edited by darksahde; 11-21-2012 at 03:55 AM.
Probably what I would do. Or something Like that. I haven't coded for hunter's in a while.PHP Code:
local mcStart, mcDuration = GetSpellCooldown(131894)
local mcCD = mcStart + mcDuration - GetTime()
local someDebuff = UnitDebuffID("Target", 131894, "PLAYER")
local Focus = UnitPower("Player")
if UnitLevel("Target") == -1 then
if not someDebuff and mcCD < 2 then
return false
elseif Focus >= 40 then
return true
end
end
Last edited by firepong; 11-21-2012 at 04:00 AM.
Nope.
Usually pqr starts the rotation after klicking on a mob and being in combat.
There are modifier keys implemented by the individual profile author to switch f.e. between aoe and single target modes. Or a pause key
These keys are often mentioned in the yellow triangle shown on ur pqr main frame.
If a profile dont work, it is likely not designed for leveling, it is old(cata profiles) or u missed f.e. the data file while downloading.
Hope this helps a bit
I need some help...
Based on Sheurons Heal Engine, how can I set a priority for my heals in a group or party?
4 example if I would prioritize tanks, healer and at the end the dd´s...
Is there a possibility to query a focus target?Code:if members[1].HP < 70 and not PQR_IsMoving(1) then PQR_CustomTarget = members[1].Unit return true end
What means the 1 in members[1].HP?
Hey mentally I'll be home all day today. Think I got the 24hr bug. Would your profile work on a 85 Mage?
I just came back to WoW since MoP release, In cata i used Simcraft Arms/fury for my warrior. Is that profile still around for MoP?
If not, what are the best DPS profiles at this moment for warrior. Looked through many pages but didn't find anything except for the paying one.
Failroad has a really good Arms/Fury profile you should use, its his PVP-version that you pay to get.
If I could get someones assistance with a profile that I'm in the works of, that would be great. I've noticed around that there is no real mistweaver, so earlier today I started to work on mine again. I've completed a work in progress one but am not satisfied with it at all... I mean it'll heal but certain things that I like are not working. In LFR I was atleast top 3 heals each encounter, 1 was top heals (460 ilvl mistweaver and was also wearing an agi chest, hah)
Anyway, the part that I'm stuck on is with canceling the current cast. I have it working to a certain extent...
Thats what I'm using at the moment, but its not working to cancel the channel unless I physically have the target targeted. After seeing this I've tested with other things like Dispells when targets have certain buffs, they too will not dispell unless actually targeting. I know the members[1].Unit part is working or the members[1].HP because the healing spells are working no issue.Code:if UnitBuffID(members[1].Unit, 115175, "PLAYER") then if members[1].HP >= 95 then if UnitChannelInfo("player") then if UnitChannelInfo("player") == GetSpellInfo(115175) then PQR_CustomTarget = members[1].Unit SpellStopCasting() return true end end end end
@Nerder: Make sure "Cancel Channel" is set to True not False.
Fire Mage profile and Shadow Priest will be uploaded/updated once I get home from school in a couple of hours!