[PQR] Nova Team Profiles menu

Shout-Out

User Tag List

Page 73 of 157 FirstFirst ... 23697071727374757677123 ... LastLast
Results 1,081 to 1,095 of 2342
  1. #1081
    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 g1teglover View Post
    Bu_Ba, just updated via the SVN and everytime I enable the resto profile, I get this error:
    Code:
    message = string "if not FirstRun  ...:15: Couldn't find CVar named 'Nova_WildGrowth,
    count = 2,
    locals = "(*temporary) = "Nova_WildGrowth" (*temporary) = 92",
    timestamp = "2013-01-11 23:28:58",
    context = "Global",
    stack = "[C]: in function `SetCVar' "if not FirstRun  ...:15: in function `?' 
              "if PQR_Addon_Loaded == nil then...:760: in function `PQR_NextAbility' 
              "if PQR_Addon_Loaded == nil then...":533: in function `PQR_ExecuteRotation'
              "if PQR_Addon_Loaded == nil then...":289: in function <"if PQR_Addon_Loaded == nil then...":214>
    As soon as I revert back to the version that you posted (not the one listed on the svn), the error goes away. Any ideas?
    a couple, ill need to look into it tomorrow tho, gotta head to bed right now....

    probably has to do with the code mentally injected into it, but ill test things out tomorrow lol

    use the working code ofr now, nothing functionality wise changed from that one till this one
    ^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. #1082
    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)
    Trying to learn how the Nova Frame works internally, and update it and such. =P So I made a lot of changes to how it handles CVars. Basically my idea was to make everyone able to create tables with spaces in them, and the frame would automatically convert those spaces to underscores when you run the profile (and properly look for them!)

    I'll try and fix the Nova Frame on the SVN though quickly.

    Edit: I've made a quick change to Resto Druids, which should fix the stupid CVar problem you guys were experiencing. Please update!
    Last edited by Kinky; 01-13-2013 at 09:52 AM.

  3. #1083
    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)
    Sweet Mentally, nice to have you back! Went resto on my druid from boomkin and loving it so far with Nova's profile!

  4. #1084
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello everibody.

    I also switched my guardian spec to resto to try the profile and its incredible.

    but i noted doing some dungeons that natures cure dont work

    I was looking at the code and i tried to use /disablecleanse to check

    and it gave me the error below

    Code:
    Date: 2013-01-13 14:02:50
    ID: 1
    Error occured in: Global
    Count: 1
    Message: [string "if PQR_RotationStarted == true then ..."] line 425:
       Couldn't find CVar named 'Nova_DisableCleanse'
    Debug:
       [C]: SetCVar()
       [string "if PQR_RotationStarted == true then ..."]:425: ?()
       ..\FrameXML\ChatFrame.lua:4388:
          ..\FrameXML\ChatFrame.lua:4334
       [C]: ChatEdit_ParseText()
       ..\FrameXML\ChatFrame.lua:4082: ChatEdit_SendText()
       ..\FrameXML\ChatFrame.lua:4121: ChatEdit_OnEnterPressed()
       [string "*:OnEnterPressed"]:1:
          [string "*:OnEnterPressed"]:1
    Locals:
    (*temporary) = "Nova_DisableCleanse"
    (*temporary) = 1

    what could it be?

  5. #1085
    Aleksonfire's Avatar Master Sergeant
    Reputation
    25
    Join Date
    Nov 2012
    Posts
    132
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    ah, its the damn exhilaration code in the setup ability, just remove it and try again.
    Yup. I finally found it and came back to update you and you had the answer lol. Seems you had ( ) around the hp check function. So I just removed those and removed the pet hp part (since im a heartless jerk who doesnt care about my pet ) Testing now to see if indeed the exhil will pop.

    Edit: Test was succesful. It now works as intended.

    --Exhilaration
    if IsPlayerSpell(109304)
    and PlayerCombat
    and PQR_SpellAvailable(109304)
    and PlayerHP < 50
    then
    CastSpellByName(GetSpellInfo(109304))
    end
    Last edited by Aleksonfire; 01-13-2013 at 12:15 PM.

  6. #1086
    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 cassrgs View Post
    Hello everibody.

    I also switched my guardian spec to resto to try the profile and its incredible.

    but i noted doing some dungeons that natures cure dont work

    I was looking at the code and i tried to use /disablecleanse to check

    and it gave me the error below

    Code:
    Date: 2013-01-13 14:02:50
    ID: 1
    Error occured in: Global
    Count: 1
    Message: [string "if PQR_RotationStarted == true then ..."] line 425:
       Couldn't find CVar named 'Nova_DisableCleanse'
    Debug:
       [C]: SetCVar()
       [string "if PQR_RotationStarted == true then ..."]:425: ?()
       ..\FrameXML\ChatFrame.lua:4388:
          ..\FrameXML\ChatFrame.lua:4334
       [C]: ChatEdit_ParseText()
       ..\FrameXML\ChatFrame.lua:4082: ChatEdit_SendText()
       ..\FrameXML\ChatFrame.lua:4121: ChatEdit_OnEnterPressed()
       [string "*:OnEnterPressed"]:1:
          [string "*:OnEnterPressed"]:1
    Locals:
    (*temporary) = "Nova_DisableCleanse"
    (*temporary) = 1

    what could it be?
    ahh that explains it.... i removed that to make way for a different CVar

    forgot to update which one Nova_Cleanse was looking at
    ^0^Team Nova's PQR NCC ^0^

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

  7. #1087
    spawnpl's Avatar Member
    Reputation
    3
    Join Date
    Apr 2009
    Posts
    61
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The shadowpriest profile doesn't seem to cast mind flay for some reason.

  8. #1088
    freaki's Avatar Member
    Reputation
    12
    Join Date
    Dec 2008
    Posts
    85
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i would sell my grandmother for the new sp pvp profile mentally:-)

  9. #1089
    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)
    ^ Best grandson ever

  10. #1090
    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)
    Found a couple errors in Frame and Druid.... Frame mostly from some of the tweaks thrown in, Druid from incomplete code that i missed

    Releasing a new Frame and Druid shortly.... just running last checks...

    And it's updated now. Check it out

    Frame now has an enable/disable ability for each value we can check.... Also WildGrowth CVar missing is fixed... Natures Cure should work.... lots of goodies

    Still working on Tsulong Logic....
    Last edited by bu_ba_911; 01-13-2013 at 05:43 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  11. #1091
    brutus2105's Avatar Member
    Reputation
    1
    Join Date
    Jun 2008
    Posts
    15
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Comes a Elemental Shaman Profile in the next time?

  12. #1092
    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 Aleksonfire View Post
    Yup. I finally found it and came back to update you and you had the answer lol. Seems you had ( ) around the hp check function. So I just removed those and removed the pet hp part (since im a heartless jerk who doesnt care about my pet ) Testing now to see if indeed the exhil will pop.

    Edit: Test was succesful. It now works as intended.
    glad its working for ya.

    Please if someone helped you donate rep to them.

  13. #1093
    Envision's Avatar Active Member Authenticator enabled
    Reputation
    20
    Join Date
    May 2009
    Posts
    78
    Thanks G/R
    18/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems your Blood Tanking profile has stopped working while in combat. It Buffs and will cast DnD but will do nothing else in combat. Switched to Rubim's Blood Profile and it works fine. Well, that's it. Thanks for all your hard work! +rep
    Last edited by Envision; 01-13-2013 at 09:08 PM.
    Never mind what haters say, ignore them 'til they fade away.

  14. #1094
    saintsrlfc's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,

    Does anyone else get massive LAG when using Disc nova Profile? I have tried everything to stop this all other profiles work fine

    Thanks

  15. #1095
    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 saintsrlfc View Post
    Hello,

    Does anyone else get massive LAG when using Disc nova Profile? I have tried everything to stop this all other profiles work fine

    Thanks
    it hasn't been updated since Cata....

    thinking about leveling a priest and paladin using RAF and a couple friends to relevel all of my alts we'll see what the future brings
    ^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 02:23 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