Just got the chance to try out your mistweaver profile bu_bu, its pretty amazing for 5 mans and LFR! Keep up the excellent work, can't wait for more development and implementations!
Nevermind, sorted it. Brilliant work Bu ba +1
How does one fix this
[10:15:10] <PQR Error> You are missing PQR_Nova_Data.lua. Rotation has been stopped.
[10:15:10] <PQR> PvP Disabled
Last edited by nebmyers; 12-03-2012 at 05:16 AM.
Thanks for the info and the fix. I will give a test tonight. Also sent you some rep.
I haven't tested this but just expanded your code to include Nature's swiftness and incarnation. I think it should work .. I'll test it when I get a chance.
Code:if PQR_SpellAvailable(8936) and members[1].HP &lt; Nova_Regrowth and not UnitBuffID(members[1].Unit, 8936) and not Nova_Moving then PQR_CustomTarget = members[1].Unit return true end -- Clear Casting / Incarnation / Nature's Swiftness if members[1].HP &lt; 80 and (UnitBuffID(&quot;player&quot;,16870) or UnitBuffID(&quot;player&quot;, 117679) or UnitBuffID(&quot;player&quot;, 132158)) and not Nova_Moving then PQR_CustomTarget = members[1].Unit return true end
Last edited by Wonderworm; 12-03-2012 at 07:34 AM. Reason: Added Code
U did some kind of changes into Data File. When i change something, like "CanHeal(member)" to "CanHeal(members)" (when i was looking fix for healing issues on 5th and 6th bosses in HoF) i was getting same error as u.
So what did u want to do in Data File?
One more question. Anybody was healing on HC Elegon with any Bubas healing profiles? Asking about out of range thing.
@BuBa
What about Reju in resto druid?
Should it use tanks section? And where is reju active checking? And for multi lines comments use /* ... */ ;pCode:if PQR_SpellAvailable(774) then --[[if #Nova_Tanks > 0 then for y=1, #Nova_Tanks do if members[i].HP < 90 then PQR_CustomTarget = Nova_Tanks[y].Unit return true end end end]]-- for i=1, #members do if members[i].HP < 82 then PQR_CustomTarget = members[i].Unit return true end end end
NVM about buff checking, redownloaded profile and there is checking but what about commented section about tanks?
Last edited by vorn10; 12-03-2012 at 12:12 PM.
@Mentally, I hate to say it lol but your profile does still use Alter Time for me when I am in manual cooldown mode![]()
@kclux: Yeah, I noticed. Updating it now. An and statement went missing. I'm sorry! You should be able to update it directly through the SVN or through PQR's Rotation Manager.
Last edited by Kinky; 12-03-2012 at 05:01 PM.
Busy week at work today, progress in profiles of mine will slow down :-/
I'll be taking note of all Resto Druid ideas people are throwing my way tho.... I don't even use my profile haha, I manually heal and dps for raids(which is why the profile's progress has slowed so much)
Looking forward to a frostmage profile....using mentallys fir profile and its awesome while lvling....but i am missing my little water buddy. Running in the wilderness alone being a little gnome make me looking very sad *sniff*
I would also be happy if there would be a updated version for the Holy Pala from buba using eternal flame. Right now i am burning through mana like hell being oom 2/3 of the fights in lfr.
+rep as soon as i am able again
Noticed that my code was only seeming to work in 5 mans for a short time before breaking (stopping casting any heals other then Nourish and Rejuv). As soon as the servers are back up, I'm going to see if the following code will work to fix the issue in 5 mans (and raids).
The code below is a modification of Eff's Regrowth ability code adapted to work with Bu_Ba's profile.
*EDIT* Seems the above code doesn't doesn't work right, when enabling it will drop from 60 fps to about 4 fps and will not use regrowth at all. Seems that I have to really refresh on my LUA, as I think i've created a loop somewhere...lolCode:-- Check for Clearcasting local Regrowth = UnitBuffID(members[1].Unit, 8936) local Clearcasting = UnitBuffID("player", 16870) -- Check if either Clearcasting is up or target is low -- as well as a basic movement or mana checks if ( Clearcasting ~= nil or members[1].HP < Nova_Regrowth ) and Regrowth == nil and Mana > 10 and --Stop Regrowth casts if less then 10% mana remaining PQR_IsMoving(1) == false and spellCheck(8936, members[1].Unit) == 1 then PQR_CustomTarget = members[1].Unit return true end
Last edited by g1teglover; 12-04-2012 at 06:44 PM. Reason: Add comment on
hey really love all of nova teams profiles.ive used most of them to level or do dungeons and the are amazing. but could you guys do one for resto shaman or any shaman? i cant find one anywhere but i know u guys would be amazing at it. i would do it myself but i dont know how to do coding and stuff like that
Little feedback on the fireprofile. I am using the automated profile with the switch to manual pressing leftshift. after retapping to activate automated mode the profile does not use living bomb anymore.
A reload of the ui fixes the problem. Not sure if this bug is already known, maybe it is of some use to you.
Hope you understand this basic translation of my thoughts^^
U didnt defined "Mana".
And why u not using orginal Buba's code?
This is for regrowth only when clearcasting proced.
Or same as above + regrowth under 30% of hp.Code:if PQR_SpellAvailable(8936) and ( not Nova_Moving or UnitBuffID("player", 117679) ) then if not UnitBuffID(members[1].Unit, 8936) and members[1].HP < Nova_Regrowth and ( UnitBuffID("player", 16870) or UnitBuffID("player", 132158) ) then PQR_CustomTarget = members[1].Unit return true end end
Code:if PQR_SpellAvailable(8936) and ( not Nova_Moving or UnitBuffID("player", 117679) ) then if not UnitBuffID(members[1].Unit, 8936) and ((members[1].HP < Nova_Regrowth and ( UnitBuffID("player", 16870) or UnitBuffID("player", 132158))) or members[1].HP < 30) then PQR_CustomTarget = members[1].Unit return true end end
the monk mistweaver profile is working awesome for me..so far in 5mans. but i guess in raids uplift will be missing. is there a way to add it ?