[PQR] Nova Team Profiles menu

User Tag List

Page 52 of 157 FirstFirst ... 2484950515253545556102152 ... LastLast
Results 766 to 780 of 2342
  1. #766
    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 vorn10 View Post
    BuBa so u probably saw issues with healing on 5th and 6th bosses in HoF. If u could code it better /cleaner. For now i think these lines should work (it works in Sheuron shaman rotation when i added some lines). So i copied his "HaveDebuff" code and add lines to ur LUA_data_file. So what i added:
    Code:
    function HaveDebuff(UnitID,SpellID,TimeLeft,Filter) 
      if not TimeLeft then TimeLeft = 0 end
      if type(SpellID) == "number" then SpellID = { SpellID } end 
      for i=1,#SpellID do 
        local spell, rank = GetSpellInfo(SpellID[i])
        if spell then
          local debuff = select(7,UnitDebuff(UnitID,spell,rank,Filter)) 
          if debuff and ( debuff == 0 or debuff - GetTime() > TimeLeft ) then return true end
        end
      end
    end
    then in "CanHeal" section added spells:
    Code:
    function CanHeal(t)
    	if UnitInRange(t) 
    		and UnitCanCooperate("player",t) 
    		and not UnitIsCharmed(t) 
    		and not UnitIsDeadOrGhost(t) 
    		and not PQR_IsOutOfSight(t) 
    		and UnitIsConnected(t)
    		and UnitDebuffID(t,104451) == nil -- Ice Tomb
    		and UnitDebuffID(t,76577) == nil -- Smoke Bomb
    		and HaveDebuff(t,121949) == nil -- Parasitic Growth (Amber-Shaper Un'sok, 5th boss in HOF)
      		and HaveDebuff(t,122784) == nil -- Reshape Life I, spell which changes us into construct (5th boss in HOF)
      		and HaveDebuff(t,122370) == nil -- Reshape Life II, same as above one
      		and HaveDebuff(t,123255) == nil -- Dissonance Field 6th boss
      		and HaveDebuff(t,123184) == nil -- Dissonance Field 6th boss
      		and HaveDebuff(t,123596) == nil -- Dissonance Field 6th boss
      		and HaveDebuff(t,128353) == nil -- Dissonance Field 6th boss
    		then return true else return false end 
    end
    Tried to do table with that debuffs spells id's but i did that before solving problems with UnitDebuffID. Will try to do it but tomorrow when sleep a little.
    But have one more question.
    How "members" table works?
    Is it adding ppl in real time? Mean combat starts, adding ppl over and over for whole fight or just at start?
    Iam asking cuz if it add them only on start, there should be coded remove players with debuff?
    Hmm it is late, my eng is bad so i hope u understand me ; p.
    ill take a look at it

    members is updated every time ShueronEngine is called. so every loop the rotation runs through, it will also update the members table
    ^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. #767
    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 bu_ba_911 View Post
    ill take a look at it

    members is updated every time ShueronEngine is called. so every loop the rotation runs through, it will also update the members table
    Ok so now it is easy. We just need table with ppl not to heal . So much problems for me did, not working "UnitDebuffID(t,debuffID)".
    Oh u are from US so i will have nothing to try with it ;p

  3. #768
    hybredmoon's Avatar Member
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    @hybredmoon: Strange.. I just tried to replicate the problem and I can't really seem to get it to work. It creates the type of Mana gem currently available, (Brilliant or Regular) but never actually using it. As well as not using Mana gems when you're talented into Invocation. Could you try and replicate the problem? What talents are you using? (Spesifically, which level 90 talent)

    @kclux: That is indeed weird! I forgot to add a check to Alter Time, it's getting fixed as we speak, along with the usage of Mana Gems.
    My lvl 90 talent is rune of power, I started the profile and it made my mana gems for me (Brilliant btw) , then it started spamming the message "this item already has 10 charges" infinity and refused to do anything else besides try to create mana gems PQInterface just reports "Standard: [Misc] mana gem" Everything works fine if I take the mana gem ability out of the rotation via rotation editor. CanT offer any input on Alter time, I dont know how to use it well enough to say what it should or shouldn't be doing. I've seen it cast once I get a pyro! proc just before it fires the pyro spell (when I have CD's on automatic)

    Loving the profile, in any case. Mana gems are a non-issue to me since rune of power basically means infinite mana as long as you stand in it.

  4. #769
    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)
    @hybredmoon: Very strange. Has never happened for me. Running WoW now with the profile loaded straight from the SVN (created a new local copy of PQR and downloaded the SVN into it), using Rune of Power with the Brilliant Gem glyph and it's not spamming anything beyond creating the first one..

    I'm still trying to figure out why everything assigned to Left Control is being rerouted to Right Alt. Nonetheless, I moved the AoE profile to it's own rotation list for now, it should solve the problem and reenable the use of level 45 talents again.

    @Everyone: Just ran a quick update to the SVN on the Mage profile, fixing the Mana Gem usage issue and split the AoE abilities away from the regular profile, into it's own profile for now. I'm not sure why PQR is treating Left Control as Right Alt at the moment, but this was the only quick fix I could come up with. I'm sorry for the inconvenience! You should be able to update the profile through the PQR Rotation Editor!
    Last edited by Kinky; 11-30-2012 at 08:28 PM.

  5. #770
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    love you bu_ba, the Mistweave is working good on Heroic right now!

  6. #771
    daveyboyuk's Avatar Active Member
    Reputation
    31
    Join Date
    May 2009
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    will affliction be getting any love would like to see harvest life in the aoe rotation

  7. #772
    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)
    Well from the previous Mistweaver to this Mistweaver I completely recoded everything

    And finally here is the Heroic Dungeon version i'm releasing

    It easily healed a moderately geared tank quick pulling heroics (and mass pulling) with my ilevel at 453 XD

    you will need to update the Data File again, I added in a necessary function to it (I know you just updated it for Mentally, bear with me )

    There is no fistweaving at all included in this, this is pure just straight forward healing XD

    I use Chi Wave, Chi Torpedo (changing Torpedo real soon), Celerity, Ascension, Diffuse Magic and Deadly Reach. I have only coded in Chi Wave

    I plan on adding more as I go, but like I said this is basic and I kept you waiting long enough

    Mistweaver is on the SVN now

    Originally Posted by MastaRage View Post
    love you bu_ba, the Mistweave is working good on Heroic right now!
    lol i have forgot to click post because my raid started on my druid

    im surprised you found it so fast XD +5 Rep for awesomeness!!!!!
    ^0^Team Nova's PQR NCC ^0^

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

  8. #773
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The latest Mistweaver profile works very well in Heroics. For not having Uplift, Life Cocoon, SCK, and Revival in the rotation yet, this is keeping even the bad tanks alive!

  9. #774
    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)
    So i cannot check if dispels work while iam in party and testing. Even when removed some lines still not working.
    Testing on 2 druids, with faire fire. Add it do dangerous magic and still not dispeling, even removed nova_cleanse and hp check.

    blablabla (was wrong)

    EDIT
    Great, still dont know what is wrong but it still not dispeling. Dont know why but for a while it was working.

    So as far as i get with dispel did that things (will mark with red what i added):
    Code:
      -- Checking if there's a dangerous Debuff we shouldn't Cleanse  
      function DontDispel(t)
          local buff  = { 30108, 34914, 770 }
          local DontDispelCheck = false
          for i=1, #buff do
          	if UnitDebuffID(t, buff[i]) then
    			if select(11, UnitDebuff(t, GetSpellInfo(buff[i]))) == 30108 then
    		    	if UnitDebuffID(t, 31117) then
    		    		if select(11, UnitDebuff(t, GetSpellInfo(31117))) == 31117 then
    		    				DontDispelCheck = false
    		    				break
    		    		end
    		    	else
    		    	 		DontDispelCheck = true
    		    	end
    		     	DontDispelCheck = true
    		    end
    		    DontDispelCheck = true
    		end
    	  end
    	  return DontDispelCheck
      end
    And makred in next ability by red what i removed:
    Code:
    if PQR_SpellAvailable(88423) 
    and Nova_Cleanse then
    	if members[1].HP > 60 then
    		for i=1, #members do
    			if ValidDispel(members[i].Unit) and not DontDispel(members[i].Unit) then
    			 	PQR_CustomTarget = members[i].Unit
    			 	return true
    			end
    		end
    	end
    end
    Now it works for me. If not added to DontDispel it dispeling all, when i add to DontDispel it not dispeling.

    When iam trying to type in chat "/disablecleanse" chat doesnt want to eat it after i hit enter.

    To CanHeal function.
    It works but it works in raid (only checked raid, in LFR) when i trying to check it in testing party with added FF debuff it doesnt work and still healing me.
    Doesnt matter (in testing party) if i use UnitDebuffID, select(11,UnitDebuff("player",GetSpellInfo(...))) or HaveDebuff.

    EDIT After more testing CanHeal() it works only in dungeons, raid, bgs, etc. Not working in open world party. Tested with Reju, add it to CanHeal():
    and UnitBuffID(t,774) == nil
    So after player get reju, he wasnt anymore added to table until it gone off.
    Did same in world party and it doesnt work.
    So going to make CanHeal() with types of debuffs which should be healed. Erm previous versions was ok. One that at top of this page (52).
    Last edited by vorn10; 12-01-2012 at 08:13 AM.

  10. #775
    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)
    Lol thank you vorn for all the testing yes by adding all the buffs to can heal and looking if they aren't on you were breaking it when they were. You only want to add the debuffs that make it either impossible to heal. If there's a debuff that should be dispelled then it shouldn't be added into can heal. I'll smooth out canheal soob

    Sent from my ThunderBolt using Tapatalk 2
    ^0^Team Nova's PQR NCC ^0^

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

  11. #776
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ Mentally

    i have a problem with use Mass dispell on Rightshift its do nothing for me

    can you look pls

    thx

  12. #777
    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)
    Fixed. Either update through the PQR Rotation Manager, or fetch an updated version from our SVN.
    Shadow Word: Insanity support coming later today.

  13. #778
    chaisar's Avatar Member
    Reputation
    1
    Join Date
    May 2011
    Posts
    24
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi i am using your Hunter Profile and I really love it (but I removed the cheetah aspect)

    The only problem I have, that the profile doesn't work at Elagon. Every time I stand on the platform, the rotation simply stops, only pet cooldowns are used. (I tried to run debug mode, but there are no messages or other information just Pet abilities)

    How can I solve this problem?

  14. #779
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For most profiles, and I'm assuming Nova's are using them too, it's because Elegon fails a normal range check for abilities. Been trying to make it work myself lately but so far no luck, so hopefully the talented people here can figure it out. hehe
    Former PQR Developer

  15. #780
    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 kuukuu View Post
    For most profiles, and I'm assuming Nova's are using them too, it's because Elegon fails a normal range check for abilities. Been trying to make it work myself lately but so far no luck, so hopefully the talented people here can figure it out. hehe
    me and CT have come up with a couple solutions, the easiest is to add an npc GUID exception for Elegon, so that's probably what we're doing to do
    ^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 09:22 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search