How do you even do that? I'm new to PQR in general. I downloaded PQR and downloaded all of your stuff via SVN. All I can seem to do is copy the profiles from the SVN and slap them in the PQR profile directories. However, I really feel like I'm missing something with all the other files (from your SVN), looks like UI and other stuff? :V
I'm having trouble getting the Survival Profile working. It's getting stuck on the Routine part. I'm playing Alliance atm.
Survival do less dps.. dont use Glaive Toss..and dont see where do AOE abilities.. explosive trap.. multi-shot.
Better question - is the Survival profile Horde only?
If so, how do you fix it for Alliance players?
mk, if its getting stuck on --Routines its prob due to how i handle racial spells.
at the bottom of the list add -- to Nova_Racial() so it looks like this
as for other issuesPHP Code:
--Racials
--Nova_Racial()
you need nova_frame.lua and the nova data file in the Data folder
If it is not casting Glaive Toss check to see if Enable Cleave shots in the frame is checked or unchecked ( if unchecked thats why its not casting )
Default AoE is Left Ctrl, also you must hold the key down until your done AoEing.
Traps are right ctrl and right shift by default. if its not throwing traps but placing them under you turn on trap launcher. ( it should do this by itself ). see note
I've tested it on a horde and ally hunter.
hope this helps.
--update
note: overlooked the auto casting of trap launcher since i just always have it on. the work around is to enable it manually until i post a fix.
Last edited by crystal_tech; 04-19-2013 at 09:29 PM.
Please if someone helped you donate rep to them.
I'm just waiting for a fully automatic arcane mage xD
Hey..
i have 1 question about the novaframe..,iam using the resto druid profile and when i enter the frame it says:
vwildgrowth
vwildgrowthlimit
says the same with some other spells(like swiftmend)...
whats the difference and what do i change when i change the numbers infront of the text?
When is the last time the hunter profiles have been updated? I have switched to Soapbox's BM and surv profiles. Would really like to come back to using these Hunter profiles, since they offer so much more custom features.
This night I tripped over a bug in your Destruction profile. I looked it up on OwnedCore and I found it shocking that it has been reported a few times and is still not fixed.
So I fixed it.
In the --Spell Check--, he made a mistake. Where it tells to stop casting, so it can cast Chaos Bolt, it tells to stop casting when it has more than 3 stacks of Backdraft. That makes it stuck.
I corrected the Backdraft to Burning Embers and it runs smooth.
If you have the same bug, change your hole --Spell Check-- (under Ability Editor) to the following:
PHP Code:
if UnitExists("pet")
and UnitCastingInfo("player") == GetSpellInfo(688) then
SpellStopCasting()
end
if UnitBuffID("player", 117828)
and select(4, UnitBuffID("player", 108647)) >= 3
and IsSpellKnown(123686) then
if UnitCastingInfo("player") == GetSpellInfo(29722) then
SpellStopCasting()
end
end