[PQR] Nova Team Profiles menu

User Tag List

Page 63 of 157 FirstFirst ... 13596061626364656667113 ... LastLast
Results 931 to 945 of 2342
  1. #931
    TehVoyager's Avatar I just love KuRIoS
    Reputation
    1282
    Join Date
    Nov 2010
    Posts
    2,733
    Thanks G/R
    85/470
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sdjfbiusdhfi View Post
    hi buddy
    im not your buddy, friend


    (don't post things I post to Patreon.)

    [PQR] Nova Team Profiles
  2. #932
    Frissle's Avatar Member The Pope of Darkness CoreCoins Purchaser
    Reputation
    9
    Join Date
    May 2007
    Posts
    110
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can we expect any affliction updates soon?

  3. #933
    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)
    Hahahahaha i have NO idea how it got there....

    but there was a random 9 floating around in that Data File update removed it and all is right and well in this world again
    ^0^Team Nova's PQR NCC ^0^

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

  4. #934
    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)
    Originally Posted by bu_ba_911 View Post
    Hahahahaha i have NO idea how it got there....

    but there was a random 9 floating around in that Data File update removed it and all is right and well in this world again
    I thought that nine wasn't supposed to be there....lol. Didn't want to delete it just in the off chance it was ment to be there.

  5. #935
    KleskReaver's Avatar Sergeant
    Reputation
    9
    Join Date
    Jul 2012
    Posts
    39
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TehVoyager View Post
    im not your buddy, friend
    I'm not your friend, Guy

  6. #936
    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 KleskReaver View Post
    I'm not your friend, Guy
    Don't call me guy, pal.

    So I'm going to start taking pictures of y notepad and taking small clips of me coding. Might do just a little mini series on it and break it up instead of a long video

    I'll be doing this for Frost DK that might spilll over into updating Blood

    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!

  7. #937
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bu_ba, could you explain "custom tables" a little? I just recenly went resto on my druid and have been using the M.A.D Honorbuddy CR, but I want to try out your resto-profile but I also want to understand how and when to best use its abilities.

    It says "Right control - Add to Custom Table, Right Alt - Remove from Custom Table" as well as console commands on how to wipe off CT's/enable them.

    Also there's 3 rotations, Master Dungeon and Raid. The two latter are obvious, but whats special about Master-rotation?

    Cheers and merry christmas
    Last edited by Ninjaderp; 12-23-2012 at 08:31 PM.

  8. #938
    dubdee's Avatar Active Member
    Reputation
    28
    Join Date
    Jan 2008
    Posts
    24
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    this shit da bomb
    Last edited by dubdee; 12-25-2012 at 12:05 AM.

  9. #939
    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 Ninjaderp View Post
    Bu_ba, could you explain "custom tables" a little? I just recenly went resto on my druid and have been using the M.A.D Honorbuddy CR, but I want to try out your resto-profile but I also want to understand how and when to best use its abilities.

    It says "Right control - Add to Custom Table, Right Alt - Remove from Custom Table" as well as console commands on how to wipe off CT's/enable them.

    Also there's 3 rotations, Master Dungeon and Raid. The two latter are obvious, but whats special about Master-rotation?

    Cheers and merry christmas
    Ok so dont know if it is good understanding of CT,s but.. CT (never used it) is for healing dedicate players. Default u have table built from whole raid members and sorted at first place with lowest hp to last place with highest hp. It is updating every second ( exactly when all abilites are "scaned" in rotation builder then it starts again from first). So if u turn CT u add manualy (with mouseover) to CT players who would like to heal. Hmm have to check if it works with Tsulong.
    However if u wanna use this rotation keep eye on 5th and 6th bosses in HoF, cuz of parasitic growth, reshapelife (it will try to spam heal at enemy target ( in raid frames target isnt enemy but ingame it is) and that heals will hit u, doing nothing with rest of raid) and disonance field.
    So to get it works how it should work go to abilities editor -> open LUA file editor -> chose PQR_NOVA_DATA and find line:
    Code:
    function CanHeal(t)
    then in that function add debuffs which has players and u dont want to heal them, so it should look like this:
    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
    		then return true else return false end 
    end
    Bolded lines is that what u need, i got somewhere moded version but cant find it. U just add line under line "and UnitDebuffID(t,DEBUFF_ID_HERE) == nil -- description of debuff", save and from now u will not heal "bad" ppl.

    About master, dungeon and raid.
    He made it to easier optimize %% when to heal with each spells. Master is used everywhere, in dungeons it use dungeon, in raids it use raid. It will auto switch when u join specific instance. So now go to abilities editor and chose "party settings". Now on right u can change %% of spells when to use it. For parties u need use faster healing than in raids, so as u see u dont need to change over and over when u switch from raid to dungeon or another bg/arena.
    Dont know if Buba updated resto past last 2-3 weeks cuz dispell too not working. For me orginal code doesnt work. There is need one more line in dispell code (it is in --init ability):
    Code:
      -- Checking if there's a dangerous Debuff we shouldn't Cleanse  
      function DontDispel(t)
          local buff  = { 30108, 34914 }
          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 in Natures Cure ability i need to remove one thing so it looks like this:
    Code:
    if PQR_SpellAvailable(88423) 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
    For now for me when i use tree form it stops to work, Buba said for him all is ok so no idea, if u can check tree form and write if it works.
    Iam after half of first year of programming studies so will start more care about profiles ( it is good and pleasure place to learn and practice) since Buba said about lower prio for resto druid. But not eralier then in new year.

    @Buba
    Will it work?:
    Code:
     if CanHeal(member,memberhp)...blablabla
    
    function CanHeal(t,tHP)
    	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 (not UnitDebuffID(t,DEBUFF_ID_HERE) or tHP<20)
    		then return true else return false end 
    end
    Cant check cuz dont have WoW until friday. With my low knowladge of programming i think it should.
    Last edited by vorn10; 12-24-2012 at 11:21 AM.

  10. #940
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    vorn10 thanks and +rep for the highly detailed post, absolutely cleared up most of my questions about CT's and how to use them. I will try to implement some of the things you suggested, have my resto-gear at 478 at the moment so Im definately viable for MSV/HOF-normals. Cheers!

  11. #941
    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)
    Vorn I had already updated the canheal in the data file lol.

    In my new version im working on, dispel is already working and updated.

    I'm going to manually add tsulong into the table. Still working on how I want it handled

    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!

  12. #942
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bu_ba, I'm back and absolutely terrible at my DK. Teach me everything. HALP! ^^

    Also Merry Christmas to all of my old profile buddies.

  13. #943
    Shamrockstar's Avatar Member
    Reputation
    51
    Join Date
    May 2007
    Posts
    108
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Bu_ba, I'm back and absolutely terrible at my DK. Teach me everything. HALP! ^^

    Also Merry Christmas to all of my old profile buddies.
    Kaolla! Welcome back to the fold!

  14. #944
    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 Kaolla View Post
    Bu_ba, I'm back and absolutely terrible at my DK. Teach me everything. HALP! ^^

    Also Merry Christmas to all of my old profile buddies.
    hahaha if you got skype we can go over everything so u can start making master pieces again XD
    ^0^Team Nova's PQR NCC ^0^

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

  15. #945
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    hahaha if you got skype we can go over everything so u can start making master pieces again XD
    I'm gonna spend a week questing to 90 and then we should talk about what I can help with. We moved offices and our new servers basically maintain themselves, so work isn't quite as crazy anymore

    Hi Shamrock!

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 01:12 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