[BETA] PQRotation - an automated ability priority queue. menu

Shout-Out

User Tag List

Page 706 of 731 FirstFirst ... 206606656702703704705706707708709710 ... LastLast
Results 10,576 to 10,590 of 10955
  1. #10576
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sheuron

    Thanks, that fixed my problem too.
    Last edited by FrostDKsFTW; 04-30-2012 at 05:44 PM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #10577
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Holobyte View Post
    Hey guys, I decided that my profiles are mature enough to be released.
    Keep in mind that's the first release and it might have some bugs, altough I have been using them for a while and I'm pretty much satisfied.

    The profiles contains rotations for:
    - Deathknight MasterFrost PvE
    - Paladin Retribution PvE

    Notes:
    - Future releases will include AoE versions aswell.
    - The ret pally rotation is optimized for toons with 2pT13 bonus and it's not based on EJ's since I find EJ's retri rotation not to be optimal.

    Can't seem to find how to edit/create my signature so here's the link:
    holobyte-pqr-profiles - Profiles for PQR Rotation Helper - Google Project Hosting

    Credits go out to every PQR profile maker, they inspired me to create my profiles and their codes helped me figuring out how to create them.

    If you like my profiles please give rep as it will encourage me to continue working on them.
    Yay more DK profiles Just wondering if you could tell me what spec you have for masterfrost, reforging, ect. to get the most out of this. Thanks for releasing this. Rep+

  3. #10578
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Done some cleanup on the healing engine and have new functionality

    Code:
    function CalculateHP(t)
      incomingheals = UnitGetIncomingHeals(t) and UnitGetIncomingHeals(t) or 0
      return 100 * ( UnitHealth(t) + incomingheals ) / UnitHealthMax(t)
    end
    
    function CanHeal(t)
      if UnitInRange(t) and UnitCanCooperate("player",t) and not UnitIsEnemy("player",t) 
      and not UnitIsCharmed(t) and not UnitIsDeadOrGhost(t) and not PQR_IsOutOfSight(t) 
      then return true end 
    end
    
    function HealEngine()
      members, group = { { Unit = "player", HP = CalculateHP("player") } }, { low = 0, tanks = { } } 
      group.type = GetNumRaidMembers() > 0 and "raid" or "party" 
      group.number = group.type == "raid" and GetNumRaidMembers() or GetNumPartyMembers() 
      for i=1,group.number do if CanHeal(group.type..i) then 
        local unit, hp = group.type..i, CalculateHP(group.type..i) 
        table.insert( members,{ Unit = unit, HP = hp } ) 
        if hp < 90 then group.low = group.low + 1 end 
        if UnitGroupRolesAssigned(unit) == "TANK" then table.insert(group.tanks,unit) end 
      end end 
      if group.type == "raid" and #members > 1 then table.remove(members,1) end 
      table.sort(members, function(x,y) return x.HP < y.HP end)
      local customtarget = CanHeal("target") and "target" or CanHeal("mouseover") and GetMouseFocus() ~= WorldFrame and "mouseover" 
      if customtarget then table.sort(members, function(x) return UnitIsUnit(customtarget,x.Unit) end) end 
    end
    
    HealEngine()
    How to use this?

    Paste on a new ability at top of your rotation,

    What i get?

    Now every time rotation loops you get 2 updated tables with group information.

    "members" table contain all players in range ordered by lowest hp to top
    example: members[1].Unit is the player on your group with lowest hp and members[1].HP is his current HP percentage

    "group" table contain some useful information

    group.low return number of players in range below 90% hp
    If group.low > 5 then (use the healing aoe spell) end

    group.type return if you are in a raid or party group

    group.number return the size of your group

    group.tanks is a table of players which role is set to tank
    example:
    #group.tanks return the number of tanks in range on your group
    for i=1,#group.tanks do (if group.tanks[i] dont have renew buff do it) end
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  4. #10579
    derfred's Avatar Member
    Reputation
    2
    Join Date
    Oct 2007
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys, I decided that my profiles are mature enough to be released.Keep in mind that's the first release and it might have some bugs, altough I have been using them for a while and I'm pretty much satisfied.


    The profiles contains rotations for:
    - Deathknight MasterFrost PvE
    - Paladin Retribution PvE


    Notes:
    - Future releases will include AoE versions aswell.
    - The ret pally rotation is optimized for toons with 2pT13 bonus and it's not based on EJ's since I find EJ's retri rotation not to be optimal.


    Can't seem to find how to edit/create my signature so here's the link:
    holobyte-pqr-profiles - Profiles for PQR Rotation Helper - Google Project Hosting


    Credits go out to every PQR profile maker, they inspired me to create my profiles and their codes helped me figuring out how to create them.


    If you like my profiles please give rep as it will encourage me to continue working on them.
    Just tried it on dummy, doesnt attack at all, only pop pillar of frost

  5. #10580
    Chicotheman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You guys have convinced me to take up profile creation. This will be a fun side project! Any profiles that are in dire need? Plan on making some boss specific changes to the existing warlock profile, but other then that, not sure what to start with.

  6. #10581
    5pArxz's Avatar Private
    Reputation
    3
    Join Date
    Jan 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chicotheman View Post
    You guys have convinced me to take up profile creation. This will be a fun side project! Any profiles that are in dire need? Plan on making some boss specific changes to the existing warlock profile, but other then that, not sure what to start with.
    Some Sub Rogue Rotations ( pvp ) and Elemental and Resto Shaman ( pvp )

    I'm unsure of exactly what can be done dev side with PQR but i for damn sure know 1 thing if we can get awesome pvp rotations it would be epic!

    it's one thing killing a boss and following a rotation, it's another keeping your cool and focus in pvp

    Is it possible to make a complete pvp profile, based on basic scenarios ? for instance if you get total CC lockout cast pvp trink or when you get warrior spinning the crap out of you dismantle ?

    Is this possible ?

  7. #10582
    Chicotheman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 5pArxz View Post
    Some Sub Rogue Rotations ( pvp ) and Elemental and Resto Shaman ( pvp )

    I'm unsure of exactly what can be done dev side with PQR but i for damn sure know 1 thing if we can get awesome pvp rotations it would be epic!

    it's one thing killing a boss and following a rotation, it's another keeping your cool and focus in pvp

    Is it possible to make a complete pvp profile, based on basic scenarios ? for instance if you get total CC lockout cast pvp trink or when you get warrior spinning the crap out of you dismantle ?

    Is this possible ?
    Will have to do some research on this, since things like bladestorm don't get you a debuff, however neither does ultraxion hour of twilight, so it may be possible, or I could check if anyone in the arena frames has the bladestorm buff, and you are in melee range, I'll do some research on it and get started, I'll start with sub rogue. I'm sorta new to LUA, but not coding, and it seems simple enough to catch on to, once I get familiar with all the different things I should be able to really get into making a good profile.

  8. #10583
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PQR 2.1.3 BETA - PROFILE DEVELOPERS ONLY
    http://dl.dropbox.com/u/39925787/PQR...R213_BETAg.zip
    If using a previous 213 beta you must restart your WoW

    Removed PQR_BehindTarget, PQR_FacingTarget and replaced them with something better.

    PQR_UnitInfo(unitID or GUID) - Returns the following: X,Y,Z,R,Type (3 = Unit, 4 = Player), and TargetGUID of the specified unit/GUID.
    PQR_UnitFacing(unitCheck, unitTarget, degrees) - Is the check unit facing the target unit? Returns true or false. If degrees is set to true this function will return the number of degrees the unit is compared to the facing of the other unit. You can also set degrees to a number for a smaller or larger 'cone' in front of the unitCheck unit. Default is 180.
    PQR_UnitDistance(unit1, unit2) - Returns the distance in yards from unit1 center to the center of the unit2's hitbox. A players hitbox is about 3 yards, so a 40 yard spell can actually be cast when this returns 43... I am looking into taking this into consideration somehow. Accepts both GUID and unitID
    Examples:

    PQR_UnitFacing("player", "target") - Is the player facing the target?
    PQR_UnitFacing("target", "player") - Is the player behind the target?
    PQR_UnitFacing("player", "boss1") - Is the player facing the boss1 unit?
    It also accepts GUIDs, so:
    PQR_UnitFacing("target", UnitGUID("player")) - Same as above "behind" example.

    Yes, this works for all unit IDs and known GUIDs and is 'instant' unlike previous iterations.
    Last edited by Xelper; 04-30-2012 at 07:15 PM.

  9. #10584
    lawlmoto's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2008
    Posts
    122
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All that is very easy to do. Just make a table of what you'd like to trinket, and check for trinket cd. For blade storm just check for the buff.

  10. #10585
    5pArxz's Avatar Private
    Reputation
    3
    Join Date
    Jan 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Chicotheman View Post
    Will have to do some research on this, since things like bladestorm don't get you a debuff, however neither does ultraxion hour of twilight, so it may be possible, or I could check if anyone in the arena frames has the bladestorm buff, and you are in melee range, I'll do some research on it and get started, I'll start with sub rogue.
    It would be Much appreciated for sub rouge willing to pay for decent Arena profile :P i'm currently using PQR in raids just cuz i'm lazy and don't wanne spam buttons just wanne get stuffz lolz, but i was thinking about this during an arena match today, most of the time i have a healer or caster on focus and it he would cast i would use my focus blind or cb transfer shadow step kidney shot macro, things like that would be awesome if the bot can pickup that the focus target is casting then blind him for instance or if blind is on cd shadow step kidney him, just this alone will have a huge advantage over other players because you won't need to focus on your focused target as well as what you are doing

    I wish i knew how to make profiles in such complex ways i would take the time to do so :P

    Looking forward to what you can come up with

  11. #10586
    5pArxz's Avatar Private
    Reputation
    3
    Join Date
    Jan 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lawlmoto View Post
    All that is very easy to do. Just make a table of what you'd like to trinket, and check for trinket cd. For blade storm just check for the buff.
    Is it possible to detect what an enemy player is doing ? like casting a heal ? i see on ultraxion that it detects when boss starts cast ( from my understanding then press "specific button" )\\

  12. #10587
    5pArxz's Avatar Private
    Reputation
    3
    Join Date
    Jan 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 5pArxz View Post
    Is it possible to detect what an enemy player is doing ? like casting a heal ? i see on ultraxion that it detects when boss starts cast ( from my understanding then press "specific button" )\\
    Apologies for my stupidity i forgot to add detect what a focused target is doing not an targeted target ( so if i have a target on focus ) and busy nuking another target

  13. #10588
    Chicotheman's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    39
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lawlmoto View Post
    All that is very easy to do. Just make a table of what you'd like to trinket, and check for trinket cd. For blade storm just check for the buff.
    Yeah, I figured it had to be.

  14. #10589
    Holobyte's Avatar Sergeant
    Reputation
    43
    Join Date
    Apr 2012
    Posts
    56
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by FrostDKsFTW View Post
    Yay more DK profiles Just wondering if you could tell me what spec you have for masterfrost, reforging, ect. to get the most out of this. Thanks for releasing this. Rep+
    The spec is the same as the one EJ's recomends for masterfrost. My personal spec is a variant of that one, tho. Since I only do Heroic DS on my DK and theres nothing to interrupt in there but the "eyes" on zon'ozz encounter, I skip Endless Winter and put 1 more point on both Runic Power Mastery and Icy Reach.
    Stat weights are the same as of EJ's: "Strength > Expertise to cap > Hit to soft cap > Mastery > Haste > Crit.
    My DK is ranked in the top100 of most DS heroic parses on WoL, always using this rotation and spec.

    Originally Posted by derfred View Post
    Just tried it on dummy, doesnt attack at all, only pop pillar of frost
    I think i know why... after PoF I cast Blood Fury, an Orc racial. Your toon is probably not an Orc so the rotation hangs. Gotta check if the spell is known before cast it.
    Will fix and update it on google code.
    Same goes to blood tap... some builds do not have it (altough it's not recomended not having it).
    Last edited by Holobyte; 04-30-2012 at 07:57 PM.

  15. #10590
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Reposting on this page so it isn't missed.

    PQR 2.1.3 BETA - PROFILE DEVELOPERS ONLY

    http://dl.dropbox.com/u/39925787/PQR...R213_BETAg.zip
    If using a previous 213 beta you must restart your WoW

    Removed PQR_BehindTarget, PQR_FacingTarget and replaced them with something better.

    PQR_UnitInfo(unitID or GUID) - Returns the following: X,Y,Z,R,Type (3 = Unit, 4 = Player), and TargetGUID of the specified unit/GUID.
    PQR_UnitFacing(unitCheck, unitTarget, degrees) - Is the check unit facing the target unit? Returns true or false. If degrees is set to true this function will return the number of degrees the unit is compared to the facing of the other unit. You can also set degrees to a number for a smaller or larger 'cone' in front of the unitCheck unit. Default is 180.
    PQR_UnitDistance(unit1, unit2) - Returns the distance in yards from unit1 center to the center of the unit2's hitbox. A players hitbox is about 3 yards, so a 40 yard spell can actually be cast when this returns 43... I am looking into taking this into consideration somehow. Accepts both GUID and unitID
    Examples:

    PQR_UnitFacing("player", "target") - Is the player facing the target?
    PQR_UnitFacing("target", "player") - Is the player behind the target?
    PQR_UnitFacing("player", "boss1") - Is the player facing the boss1 unit?
    It also accepts GUIDs, so:
    PQR_UnitFacing("target", UnitGUID("player")) - Same as above "behind" example.

    Yes, this works for all unit IDs and known GUIDs and is 'instant' unlike previous iterations.

    If there are no bugs ill post this on the updater.

Similar Threads

  1. [Buying] Planetside 2 Priority Beta Key
    By isit123 in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-21-2012, 06:34 AM
  2. [Selling] PLANETSIDE 2 Priority/Early Access Beta Account
    By Kabraxiss in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 07-18-2012, 10:20 AM
  3. [Selling] Planetside 2 Priority/Early access Beta Keys
    By mrsluf in forum General MMO Buy Sell Trade
    Replies: 3
    Last Post: 07-17-2012, 04:45 AM
  4. [Selling] Planetside 2 Priority Access beta key codes
    By fatalefout in forum General MMO Buy Sell Trade
    Replies: 1
    Last Post: 06-26-2012, 04:08 PM
  5. [Bot] Automated dungeon queue / Justice Point leecher(Auto-it source)
    By s_e_a_n_66 in forum World of Warcraft Bots and Programs
    Replies: 36
    Last Post: 01-17-2011, 11:50 AM
All times are GMT -5. The time now is 01: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