[PQR] Nova Team Profiles menu

Shout-Out

User Tag List

Page 7 of 157 FirstFirst ... 3456789101157107 ... LastLast
Results 91 to 105 of 2342
  1. #91
    evlow's Avatar Contributor
    Reputation
    171
    Join Date
    Sep 2007
    Posts
    233
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by magenpriest View Post
    Temp fixing for Advanced SP profile. In data file (PQR_Nova_Data.lua) just add new line below
    Code:
    PQ_UsableUnits = {Burning Tendons, Mutated Corruption}
    like this
    Code:
    -------------------------------------------------------------------------------
    -- Target & Environmental Globals and Tables
    -------------------------------------------------------------------------------
    PQ_Immunity = {
        642,45438,31224,23920,33786,19263,97417,97977,105256,105409,
        105465,108568,109552,109553,109554,109560,109561,109562,110892,110893
    }
    PQ_FL = {110070, 105925, 109075, 110079, 110069, 110070, 110080, 110068, 110078}
    PQ_SN = {110139,110140,110141,106791,109599,106794,109597,109598}
    PQ_HOT = {109417,109416,109415,106371}
    PQ_SP = {105479, 109364, 109362}
    PQ_UsableUnits = {Burning Tendons, Mutated Corruption}
    I believe it would actually be like

    Code:
    PQ_UsableUnits = {"Burning Tendons", "Mutated Corruption"}

    [PQR] Nova Team Profiles
  2. #92
    magenpriest's Avatar Banned
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by evlow View Post
    I believe it would actually be like

    Code:
    PQ_UsableUnits = {"Burning Tendons", "Mutated Corruption"}
    Yes, Data file was already fixed by Bubba. Plz update with SVN.

  3. #93
    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)
    This doesnt fix my issue - it still casts 2 mind flays then a mind blast then halts, with bloodlust or without.
    I suspect its an addon conflict and i'll try to get some time to go through them and disable to try and work out which one.

  4. #94
    magenpriest's Avatar Banned
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bbenhell4 View Post
    This doesnt fix my issue - it still casts 2 mind flays then a mind blast then halts, with bloodlust or without.
    I suspect its an addon conflict and i'll try to get some time to go through them and disable to try and work out which one.
    Standard or Advance Rotation?

  5. #95
    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)
    advanced - standard works fine. It used to throw up a random addon error but now just hangs.

  6. #96
    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)
    Seeing as the priest beast wasn't my work it takes me longer to sort through it. So please just keep sending me as much info as you can so I can try and track it down faster while I'm still working on my other projects :-)

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

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

  7. #97
    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)
    I've been trying to tweak the Holy Pala profile recently, I still cant it is already how I wanted it.

    I wanted to create a formula that would make Holy Radiance be cast more efficiently, for example my holy radiance heals for a X ammount (lets imagine 18k counting on dot) lets multiply that for my crit chance which is 20% so 18 *1.2 = which makes 21.6k, the average HP of a raid member is 160k so if I want to heal him for the exact HP I would want him to be at 86.5%

    Since the targets might have dots or other healers are casting aswell lets multiply that by 0.9 which equals 77.85%

    77.85% is the value for 6 people

    Formula : (160000-AH*critchance)/1600 * 0.9 = Percentage needed for 6 people, where AH stands for amount healed.

    But what I want to make is it to be equally good for 7 people, 8, 9 or 10,

    So back to this value 21.6k, if I want to make it good for 10 people the amount healed per player would be 21.6k * 6/10 = 12.96k which equals 91.9% multiplying that for 0.9 again for the same reason as before, makes it 82.71%

    All the values are
    6: 77.85%
    7: 79.6% -> factor 1.022
    8: 80.88% -> factor 1.039
    9: 81.9% -> factor 1.052
    10: 82.71% -> factor 1.062

    So basically you can the value for 6 people and multiply for the factor to get the other values

    Example: The total healing of my HR is 15000, using this formula :

    (160000-AH*critchance)/1600 * 0.9 -> I get the best % to use for healing 6 people,
    To heal 10 people I should multiply that value for 1.062.


    ----------------------------------------------------------------------


    Another thing I would like to add is, instead of checking if 6 people are within those conditions (under a certain HP), it would be a mean of % between 6-10 people, for example having 3 people at 50% and 3 people at 80%, the bot wouldn't heal them because the settings were set for 77%, but I dont want bot to use holy radiance on a group of people where 3 have 20% hp and other 3 have 95%, so to make this decently we would have something that would ignore this setting if any unit of the group had a % hp greater than defined % + 10% or so.




    Sorry for the big wall of text, I hope it makes this profile better

    EDIT: Another thing I would like to edit is the Light of Dawn, tweaking the value hp needed of targets in order to make PQR cast it.
    Last edited by tozededao; 05-07-2012 at 08:47 PM.

  8. #98
    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)
    @tozededao, I like where you were going with the Holy Radiance.... I'll have to play around with the idea and see what I come up with

    for LoD i've already considered that posibility. I just need to figure out what the best way to implement it is, I'm pretty sure I know, so i'll probably try something in an upcoming build

    and don't ever apologize for giving ideas there's always the chance u bring something up that I haven't considered

    taking average of the health of everyone around, and then determining by the number of people around them who the best candidate is.... I like that a lot.... I'll def consider that

    *edit*
    just to clarify.... somebody with 8 people around them will almost always win out against somebody with 6, unless the somebody with 6 has people around him that are really low health.... that type of thing
    ^0^Team Nova's PQR NCC ^0^

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

  9. #99
    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)
    I tried to look into the code but its a bit extensive and I don't really know the API of PQR since I started using it a few days ago,

    I used to use Honorbuddy and edit CC's but know I see that the problem wasn't in CC's at all but actually in the Honorbuddy itself which isnt really made for Max DPS/Healing or tanking, so I gave this a try, to be honest I've seen it here for a long time in ownedcore but I kinda understimated this tool maybe because it was free, now I see what I've been missing.

    It is really hard to get to know all the profiles since the only place to get them is a 800 post topic, wish there was some kind of forum with sections to make it easy

  10. #100
    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 it was just closed automatically by the system for being to large btw XD

    I have been using PQR since before it was out of Beta XD it's awesome

    I already have an idea on how to do it, it's just simple math with a little logic behind it, shouldn't be to hard with loops and tables to find the best person.... It will just take some time figuring out the best way to approach it XD
    ^0^Team Nova's PQR NCC ^0^

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

  11. #101
    bestdamnwarrior's Avatar Master Sergeant
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    110
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bu_ba just wanted to see where you were at with a working DPS Warrior Profile for MoP. Be happy to help in testing it and working with you to get it going. Let me know.

  12. #102
    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)
    I haven't signed onto the beta in about a 2 weeks now honestly haha. Live servers have been keeping me preoccupied with new ideas and such (which will of course carry into MoP )

    So even tho it doesn't look like much is getting done on Beta side, I'm just toying with new ideas on Live first (well since in my mind Live has priority haha, and a stable API)
    ^0^Team Nova's PQR NCC ^0^

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

  13. #103
    mrkebo's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Feb 2012
    Posts
    78
    Thanks G/R
    0/2
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What do I need to post to help figure out why the holy raid just stops healing periodically?

  14. #104
    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)
    anything u can. how many people are low health. around what percentages?

    if it's Infusion of Light... and everyone is around 85+% health, it's because it doesn't want to waste Infusion on a Holy Light and is saving it from something more worthwhile that would normally take a while to cast
    ^0^Team Nova's PQR NCC ^0^

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

  15. #105
    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)
    Alright, just made a change to the Custom Table in my Holy Paladin!!!

    Please Update both Data File (where the error occurred) and Rotation (Added some error tolerance )
    ^0^Team Nova's PQR NCC ^0^

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

Page 7 of 157 FirstFirst ... 3456789101157107 ... LastLast

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:34 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