[PQR] Nova Team Profiles menu

Shout-Out

User Tag List

Page 44 of 157 FirstFirst ... 40414243444546474894144 ... LastLast
Results 646 to 660 of 2342
  1. #646
    Bendecks's Avatar Sergeant CoreCoins Purchaser
    Reputation
    5
    Join Date
    Aug 2011
    Posts
    66
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am running the Aff lock rotation, latest update from https://subversion.assembla.com/svn/nova-project/ and I cant seem to get Soul Swap working. HOld control and mouseover target doesnt work for me

    [PQR] Nova Team Profiles
  2. #647
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can team nova lend more help?

    PHP Code:
    if UnitBuffID(members[1].Unit114163) == nil and
    members[1].HP >= Nova_Spell[PQ_WordofGlory].targetHealth
             
    and select(5Nova_UnitInfo("player")) >= or UnitBuffID("player"90174then
                          PQR_CustomTarget 
    members[1].Unit
        CastSpellByName
    (GetSpellInfo(114163), PQR_CustomTarget
        return 
    true
    end 
    Still need more help with this code...Sometimes I sit there at cap of holy power, but when I click a frame it'll cast. Am I stuck like this? Or is there a better targeting system?

  3. #648
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @tozededao:

    I believe this is what you're talking about. These are the changes I made to the nova data file.
    PHP 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 UnitDebuffID(t,122370) == nil -- Reshape Life
       
    and UnitDebuffID(t,123184) == nil -- Dissonance Field
      then 
    return true
      
    else return false end 
    end 

  4. #649
    tozededao's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    166
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    @tozededao:

    I believe this is what you're talking about. These are the changes I made to the nova data file.
    PHP 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 UnitDebuffID(t,122370) == nil -- Reshape Life
       
    and UnitDebuffID(t,123184) == nil -- Dissonance Field
      then 
    return true
      
    else return false end 
    end 
    Yup, silly me not finding it, didn't look with that much of attention, thanks!

  5. #650
    tozededao's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    166
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tozededao View Post
    Yup, silly me not finding it, didn't look with that much of attention, thanks!

    Here's my contribution of some id's:

    and UnitDebuffID(t,123184) == nil -- Dissonance Field1
    and UnitDebuffID(t,123596) == nil -- Dissonance Field2
    and UnitDebuffID(t,128325) == nil -- Dissonance Field3
    and UnitDebuffID(t,123255) == nil -- Dissonance Field4
    and UnitDebuffID(t,122370) == nil -- Reshape Life1
    and UnitDebuffID(t,122784) == nil -- Reshape Life2
    and UnitDebuffID(t,121949) == nil -- Parasitic Growth

  6. #651
    chaos17's Avatar Corporal
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Yes they changed svn, new one is here:
    https://subversion.assembla.com/svn/nova-project/
    Thank you very much.

  7. #652
    tozededao's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    166
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    Can team nova lend more help?

    PHP Code:
    if UnitBuffID(members[1].Unit114163) == nil and
    members[1].HP >= Nova_Spell[PQ_WordofGlory].targetHealth
             
    and select(5Nova_UnitInfo("player")) >= or UnitBuffID("player"90174then
                          PQR_CustomTarget 
    members[1].Unit
        CastSpellByName
    (GetSpellInfo(114163), PQR_CustomTarget
        return 
    true
    end 
    Still need more help with this code...Sometimes I sit there at cap of holy power, but when I click a frame it'll cast. Am I stuck like this? Or is there a better targeting system?
    The code you have is wrong by seing members[1].hp you are just checking the first player I assume, you need to use something like this:

    Code:
    if PQR_SpellAvailable(85673) then
    	for i=1, #members do
    		if not UnitBuffID(members[i].Unit, 114163)
    		and select(5, Nova_UnitInfo("player")) >= 3 
    		 and members[i].HP < 98 then
    		 	PQR_CustomTarget = members[i].Unit
    		 	CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    		 	return true
    		end
    	end
    end
    This is my eternal flame spell, even if I check for 85673 which is word of glory the bot will cast eternal flame dont worry, and even if theres nothing on that code that checks if you have Divine Purpose up I'm pretty sure that "select(5, Nova_UnitInfo("player")) >= 3" also has a check for divine purpose so you dont need to add it.

  8. #653
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tozededao View Post
    The code you have is wrong by seing members[1].hp you are just checking the first player I assume, you need to use something like this:

    Code:
    if PQR_SpellAvailable(85673) then
    	for i=1, #members do
    		if not UnitBuffID(members[i].Unit, 114163)
    		and select(5, Nova_UnitInfo("player")) >= 3 
    		 and members[i].HP < 98 then
    		 	PQR_CustomTarget = members[i].Unit
    		 	CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    		 	return true
    		end
    	end
    end
    This is my eternal flame spell, even if I check for 85673 which is word of glory the bot will cast eternal flame dont worry, and even if theres nothing on that code that checks if you have Divine Purpose up I'm pretty sure that "select(5, Nova_UnitInfo("player")) >= 3" also has a check for divine purpose so you dont need to add it.

    I'll try it out today and report back! Thank you!

  9. #654
    chaos17's Avatar Corporal
    Reputation
    2
    Join Date
    Oct 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Demonology profile doesn't work for me anymore.
    I just updated PQR.
    I tried to delete and copy paste files but stilld doesn't work.
    Playing with english client on a lvl 84 character.

  10. #655
    nvode's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bendecks View Post
    I am running the Aff lock rotation, latest update from https://subversion.assembla.com/svn/nova-project/ and I cant seem to get Soul Swap working. HOld control and mouseover target doesnt work for me
    Does anybody have a link to the latest warlock profiles? I have not been able to get any of the SVNs to work they are all throwing error 500.

    Thanks!

  11. #656
    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)
    Originally Posted by chaos17 View Post
    Demonology profile doesn't work for me anymore.
    I just updated PQR.
    I tried to delete and copy paste files but stilld doesn't work.
    Playing with english client on a lvl 84 character.
    Did you update it through the svn-link I gave you? Because I used it yesterday just fine.

  12. #657
    nvode's Avatar Active Member
    Reputation
    16
    Join Date
    Oct 2007
    Posts
    24
    Thanks G/R
    2/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    Did you update it through the svn-link I gave you? Because I used it yesterday just fine.
    Nevermind.. link is working now, might of just been a server hiccup. Thanks!

  13. #658
    bbenhell4's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does the new svn not support updating through PQR ? I copy and paste the link into the 'Update from URL' box but get a 'URL Invalid@ error message.
    Just been doing them manually at the moment but its a bit of a pita

  14. #659
    tozededao's Avatar Member
    Reputation
    9
    Join Date
    May 2009
    Posts
    166
    Thanks G/R
    3/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lately I've been trying to tweak Holy Paladin and bringing it into the next level, therefore I need some feedback from Nova Team:

    I'm trying to make it smarter, sometimes all the raid is at 40%, theres 1 guy at 30% and it decides to cast a single heal on them instead of continuing to AoE, therefore I was thinking to implement something like this:

    Code:
    if Nova_Spell[PQ_HolyLight].check then
    	if members[1].HP < 90
    	 and Nova_Spell[PQ_HolyLight].manaCost < select(4, Nova_UnitInfo("player")) 
    	 and PQR_SpellAvailable(635)
    	 and AverageHealth(40)>90 then
    		PQR_CustomTarget = members[1].Unit
    		return true
    	end
    end
    I've found that there is an AverageHealth function which receives the range you want to check 40 is the normal range of spells and I assume it returns percentage and not the actual value.

    Would this work?


    Also I've been working on Eternal Flame spam rotation which is considerably superior for AoE healing.

    This is the code I have so far:

    if PQR_SpellAvailable(85673) then
    for i=1, #members do
    if not UnitBuffID(members[i].Unit, 114163)
    and select(5, Nova_UnitInfo("player")) >= 3
    and members[i].HP < 98 then
    PQR_CustomTarget = members[i].Unit
    CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    return true
    end
    end
    end
    But I'm trying to improve it aswell, for these scenarious when HolyPower capped(or Divine Purpose proc less than 3 seconds):

    1 - Theres a few people who are under 80% but they still have Eternal Flame HoT on them and the rest of the raid is full hp, so lets heal use Eternal Flame on them again even if they have HoT ending in less then 5 seconds.

    2 - Theres a few people who are under 80% but they still have Eternal Flame HoT on them and the rest of the raid is full hp, so lets heal use Eternal Flame on them again even if they have HoT.

    3 - Everyone is full hp so lets just start rolling eternal flame on random people, priority on tank if he doesnt have it already or it is ending in less than 5 seconds.

    This is what I've came up with but it isnt working

    Code:
    if PQR_SpellAvailable(85673) then
    	for i=1, #members do
    		if(not UnitBuffID(members[i].Unit, 114163)
    		 and select(5, Nova_UnitInfo("player")) >= 3 
    		 and members[i].HP < 98)then
    		 	PQR_CustomTarget = members[i].Unit
    		 	CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    		 	return true
    		end 	
    		else if select(5, Nova_UnitInfo("player")) >= 3 
    		 and members[i].HP <= 80 then
    		 	PQR_CustomTarget = members[i].Unit
    		 	CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    		 	return true
    		end 	
    		else if not UnitBuffID(members[i].Unit, 114163)
    		and select(5, Nova_UnitInfo("player")) >= 5 
    		 and members[i].HP <= 100 then
    		 	PQR_CustomTarget = members[i].Unit
    		 	CastSpellByName(GetSpellInfo(85673), members[i].Unit)
    		 	return true
    		
    		end
    	end
    end
    I also wanted to add Use trinket support, those who award spirit, does anyone have any idea how to? Thanks in advance.
    Last edited by tozededao; 11-23-2012 at 01:47 PM. Reason: Updating

  15. #660
    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)
    Originally Posted by bbenhell4 View Post
    Does the new svn not support updating through PQR ? I copy and paste the link into the 'Update from URL' box but get a 'URL Invalid@ error message.
    Just been doing them manually at the moment but its a bit of a pita
    Just do as I do, svn-update and copy paste the files into the correct folders ^^

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 04:38 PM. 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