[PQR] Nova Team Profiles menu

User Tag List

Page 54 of 157 FirstFirst ... 4505152535455565758104154 ... LastLast
Results 796 to 810 of 2342
  1. #796
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MastaRage View Post
    @mentally, on commit 25 when you removed:
    Code:
    -- GUID Finder
    Nova_GUID = nil
    function Nova_GUID(unit)
        if UnitIsPlayer(unit) then
            targetGUID = UnitGUID(unit)
        else
            targetGUID = tonumber((UnitGUID(unit)):sub(-12, -9), 16)
        end
        
        return targetGUID
    end
    from the lua file it broke the MW profile it seems.
    fixed it, ty for pointing it out
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

    [PQR] Nova Team Profiles
  2. #797
    lantus's Avatar Active Member
    Reputation
    46
    Join Date
    Feb 2012
    Posts
    161
    Thanks G/R
    0/0
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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!

  3. #798
    nebmyers's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Apr 2011
    Posts
    99
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.

  4. #799
    Wonderworm's Avatar Sergeant
    Reputation
    26
    Join Date
    Jul 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by g1teglover View Post
    Sure. Here's what my Raid Settings look like.
    Code:
    if not FirstRun then
    	FirstRun = true
    	SetCVar("Nova_Rejuvenation", 80)  
    	SetCVar("Nova_Regrowth", 70)  
    	SetCVar("Nova_HealingTouch", 50)  
    	SetCVar("Nova_Swiftmend", 85)  
    	SetCVar("Nova_WildGrowth", 90)  
    	SetCVar("Nova_NaturesVigil", 70)  
    	SetCVar("Nova_Innervate", 80)  
    	SetCVar("Nova_Nourish", 80)  
    	SetCVar("Nova_NaturesSwiftness", 40)  
    	SetCVar("Nova_Ironbark", 60)  
    	SetCVar("Nova_NaturesCure", 90)  
    	SetCVar("Nova_Rebirth", 40)
    end
    These seemed to be doing fine on mana for most fights (with a healer that wasn't nearly geared for raids).

    I made some headway on getting regrowth to work during clearcasting, it works somewhat. Ended up doing the following adjustments to the code to get it working.

    Replacing the original Regrowth code with the following:
    Code:
    if members[1].HP < Nova_Regrowth 
    and not HaveBuff(members[1].Unit,8936,0,"PLAYER") 
    and not PQR_IsMoving(1) 
    then
      PQR_CustomTarget = members[1].Unit
      return true
    end
    And adding in a new ability for the clearcasting procs:
    Code:
    if members[1].HP < 80 
    and UnitBuffID("player",16870)
    and not PQR_IsMoving(1) 
    then
      PQR_CustomTarget = members[1].Unit
      return true
    end
    With this it seemed to be using the clearcasting procs, just not as reliably.
    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 &amp;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 &amp;lt; 80 
    and (UnitBuffID(&amp;quot;player&amp;quot;,16870) or UnitBuffID(&amp;quot;player&amp;quot;, 117679) or UnitBuffID(&amp;quot;player&amp;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

  5. #800
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by nebmyers View Post
    Nevermind, sorted it. Brilliant work Bu ba +1

    How does one fix this
    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?
    Code:
    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
    Should it use tanks section? And where is reju active checking? And for multi lines comments use /* ... */ ;p
    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.

  6. #801
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Mentally, I hate to say it lol but your profile does still use Alter Time for me when I am in manual cooldown mode

  7. #802
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @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.

  8. #803
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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)
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  9. #804
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  10. #805
    g1teglover's Avatar Site Donator
    Reputation
    14
    Join Date
    Oct 2008
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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.
    Code:
    -- 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
    *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...lol
    Last edited by g1teglover; 12-04-2012 at 06:44 PM. Reason: Add comment on

  11. #806
    TrippxTrapp's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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

  12. #807
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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^^

  13. #808
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by g1teglover View Post
    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.
    Code:
    -- 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
    *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...lol
    U didnt defined "Mana".
    And why u not using orginal Buba's code?
    This is for regrowth only when clearcasting proced.
    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
    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))) or members[1].HP < 30) then
    	 	PQR_CustomTarget = members[1].Unit
    	 	return true
    	end
    end

  14. #809
    phoenix1403's Avatar Private
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    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 ?

  15. #810
    bu_ba_911's Avatar Elite User
    Reputation
    552
    Join Date
    May 2006
    Posts
    1,638
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by phoenix1403 View Post
    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 ?
    im working on a smart Uplift and Thunder Focus Tea..... I'll probably leave Revival on a Button Down modifier....

    Life Cocoon will work similarly to LoH on my Pally
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

Similar Threads

  1. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  2. Replies: 11
    Last Post: 01-13-2013, 10:56 PM
  3. {PQR} Windwalker Raid Profile - Wanted
    By fish221171 in forum WoW Bot Maps And Profiles
    Replies: 3
    Last Post: 10-18-2012, 02:01 AM
  4. PQR - DK Blood profiles - none of them work :(
    By zambeaux in forum WoW Bot Maps And Profiles
    Replies: 4
    Last Post: 10-09-2012, 07:44 AM
  5. PQR PVP Hunter profile?
    By aLorzy91 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 07-29-2012, 02:32 AM
All times are GMT -5. The time now is 06:20 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search