[PQR] Nova Team Profiles menu

User Tag List

Page 106 of 157 FirstFirst ... 656102103104105106107108109110156 ... LastLast
Results 1,576 to 1,590 of 2342
  1. #1576
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    did you get the data and frame files in the Data folder?

    Please if someone helped you donate rep to them.

    [PQR] Nova Team Profiles
  2. #1577
    youngbot's Avatar Member
    Reputation
    1
    Join Date
    Mar 2013
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    did you get the data and frame files in the Data folder?
    thank you

    I noticed I had old PQR_Nova_Data.lua and PQR_Nova_Frame.lua (new files were added and didn't replaced old ones)

    now Nova profiles work great :-)

  3. #1578
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I am looking for a top notch Marksman Hunter PVE profile. To be more specific, I am looking for one that is very similar to Nova's Survival profile. I only have to worry about 3 key presses (left alt, ctrl, and shift) to use certain abilities, such as AOE mode, throw a trap, and pause the rotation. Very simple, yet VERY effective. It is a great profile for a Survival hunter. Since the release of 5.2, i am hearing Marksman is the new top spec for a hunter and I would like to give it a shot.

    I have tried a cpl that I have found here and nothing really compares to the Nova Survival profile in "ease of use".

    I would be willing to pay for someone to work with me here. Shoot me a PM.

    Thx ahead of time.

  4. #1579
    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)
    Found a debuff on one of the bosses in the new raid (Throne of Thunder) I would like to implement in the Nova Resto-profile.

    It's called "Beast of Nightmares (Spellid=137341)" and when applied on a raidmember gives shadowdamage to healers who try to heal him.

    Beast of Nightmares - Spell - World of Warcraft


    Any way I could add this to some sort of "do not heal" list within the ability-editor?

    Cheers!

  5. #1580
    T0mm's Avatar Sergeant Major
    Reputation
    73
    Join Date
    Aug 2010
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <Survival hunter profile> Getting this error

    Message: [string "---------- ..."]:151: attempt to call global 'Nova_Racial' (a nil value)
    Time: 03/11/13 18:35:15
    Count: 234
    Stack: [C]: in function `Nova_Racial'
    [string "---------- ..."]:151: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:760: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

  6. #1581
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by T0mm View Post
    <Survival hunter profile> Getting this error
    I get no such error and I use this everyday. What race are you? I am an Orc.

  7. #1582
    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 Ninjaderp View Post
    Found a debuff on one of the bosses in the new raid (Throne of Thunder) I would like to implement in the Nova Resto-profile.

    It's called "Beast of Nightmares (Spellid=137341)" and when applied on a raidmember gives shadowdamage to healers who try to heal him.

    Beast of Nightmares - Spell - World of Warcraft

    Any way I could add this to some sort of "do not heal" list within the ability-editor?

    Cheers!
    Yes you can actually. Open up PQR -> Ability Editor -> Lua File Editor (button towards the top) -> then select the nova data file which is called PQR_Nova_Data.lua. This will enable you to edit the data file. What you want to find is this function.

    function CanHeal(t)

    Here there will be a list of other debuffs just add this one to the list. For example ..

    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
    Change to ..

    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
       and HaveDebuff(t,137341) == nil -- Beast of Nightmares - Throne of Thunder Debuff
      then return true
      else return false end 
    end
    Hope that helps for those that need it right away

    Edit: Also you will need to do a full reload of WoW and restart of PQR for it to take effect
    Last edited by Wonderworm; 03-11-2013 at 01:26 PM.

  8. #1583
    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)
    Thank you Wonderworm, really helpful!

  9. #1584
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by T0mm View Post
    <Survival hunter profile> Getting this error
    so far i only have Arcane Torrent, Berserking, and Blood Fury coded for that function, however, all other classes right now return false so it shouldn't bug out on you. You should update the data file again from the SVN (link in my sig) and restart wow, and prob your pc.

    I'm getting ready to get a marks profile up here in the future. Steady focus is holding me back a bit but i think if I use a combat reader for a SPELL_SUCCESS on a Steady Shot I can get it working right.

    Please if someone helped you donate rep to them.

  10. #1585
    killswitch131's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    They just had mini patch.

  11. #1586
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by killswitch131 View Post
    They just had mini patch.
    Wonder what they changed.....

  12. #1587
    billybuffalo's Avatar Knight-Lieutenant
    Reputation
    4
    Join Date
    Jan 2013
    Posts
    360
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    so far i only have Arcane Torrent, Berserking, and Blood Fury coded for that function, however, all other classes right now return false so it shouldn't bug out on you. You should update the data file again from the SVN (link in my sig) and restart wow, and prob your pc.

    I'm getting ready to get a marks profile up here in the future. Steady focus is holding me back a bit but i think if I use a combat reader for a SPELL_SUCCESS on a Steady Shot I can get it working right.
    Very much waiting for this.

  13. #1588
    killswitch131's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Not sure but pqr isn't working since. wating on offsets update.

  14. #1589
    Aegeus's Avatar Contributor Walter White CoreCoins Purchaser
    Reputation
    134
    Join Date
    Feb 2012
    Posts
    245
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the amazing profiles guys, +2 Rep and 500CC to each of you!


    “If you don’t know who I am, then maybe your best course would be to tread lightly.” - Walter White

  15. #1590
    hbkx1's Avatar Member CoreCoins Purchaser
    Reputation
    2
    Join Date
    Dec 2008
    Posts
    131
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Playing the frost mage now until beter geared but I want to add Incantors Ward to the rotation the level 90 talent I believe overall is a huge dps boost if can keep it on urself,does anyone know an easy way to add it Im kinda bad at making these

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