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

Shout-Out

User Tag List

Page 676 of 731 FirstFirst ... 176576626672673674675676677678679680726 ... LastLast
Results 10,126 to 10,140 of 10955
  1. #10126
    leetspeaker's Avatar Member
    Reputation
    3
    Join Date
    Feb 2009
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm trying to adapt Kezzin autotargetlowhp for MoP beta, due to beta api changes, i replaced GetNumPartyMembers() with GetNumSubgroupMembers(), and GetNumRaidMembers() with GetNumGroupMembers(). It works when i'm alone and not when i'm in party, maybe there is something more than these 2 replacement, or something else.
    This is original kezzin's lowhptarget local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com, and that is what i get after replacement local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com

    [BETA] PQRotation - an automated ability priority queue.
  2. #10127
    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)
    Originally Posted by leetspeaker View Post
    I'm trying to adapt Kezzin autotargetlowhp for MoP beta, due to beta api changes, i replaced GetNumPartyMembers() with GetNumSubgroupMembers(), and GetNumRaidMembers() with GetNumGroupMembers(). It works when i'm alone and not when i'm in party, maybe there is something more than these 2 replacement, or something else.
    This is original kezzin's lowhptarget local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com, and that is what i get after replacement local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com
    Kezzin? …
    [ 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]

  3. #10128
    leetspeaker's Avatar Member
    Reputation
    3
    Join Date
    Feb 2009
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  4. #10129
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if someone check the dps @ beta server look this

    Macro damage meter - Forums - World of Warcraft

  5. #10130
    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 leetspeaker View Post
    I'm trying to adapt Kezzin autotargetlowhp for MoP beta, due to beta api changes, i replaced GetNumPartyMembers() with GetNumSubgroupMembers(), and GetNumRaidMembers() with GetNumGroupMembers(). It works when i'm alone and not when i'm in party, maybe there is something more than these 2 replacement, or something else.
    This is original kezzin's lowhptarget local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com, and that is what i get after replacement local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com
    i already got Sheuron's new Tabled Healing updated, and the old method updated..... try looking at my Beta Profile for paladin... old method is in there

    i'll update svn to also include the Sheuron way
    ^0^Team Nova's PQR NCC ^0^

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

  6. #10131
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by leetspeaker View Post
    I'm trying to adapt Kezzin autotargetlowhp for MoP beta, due to beta api changes, i replaced GetNumPartyMembers() with GetNumSubgroupMembers(), and GetNumRaidMembers() with GetNumGroupMembers(). It works when i'm alone and not when i'm in party, maybe there is something more than these 2 replacement, or something else.
    This is original kezzin's lowhptarget local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com, and that is what i get after replacement local mytarget = "player" local lowest = 100 * UnitHealth(mytarget) / UnitHealt - Pastebin.com

    The way I would use this is just use GetNumGroupMembers() for both party and raid. For party use "GetNumGroupMembers() <= 5 then" and for Raid, use "GetNumGroupMembers() >= 6 then" It's basically what I'm using in my Beta Shaman Profile right now, just not for raid use yet. GetNumSubgroupMembers() sound's useless to me, even though it might have some uses.

  7. #10132
    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 firepong View Post
    The way I would use this is just use GetNumGroupMembers() for both party and raid. For party use "GetNumGroupMembers() <= 5 then" and for Raid, use "GetNumGroupMembers() >= 6 then" It's basically what I'm using in my Beta Shaman Profile right now, just not for raid use yet. GetNumSubgroupMembers() sound's useless to me, even though it might have some uses.
    GetNumSubgroupMembers() would be good for when you're only supposed to be healing your own party/group... Otherwise always use GetNumGroupMembers()

    and in order to get the old target systems working.... you need to Subtract by one. Because in the new method you are also included into the Num.... So when trying to get the index numbers of everyone else, you will always have an extra one and that will error out sometimes... so do this

    GetNumGroupMembers() - 1
    ^0^Team Nova's PQR NCC ^0^

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

  8. #10133
    leetspeaker's Avatar Member
    Reputation
    3
    Join Date
    Feb 2009
    Posts
    70
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Kezzin? …
    Oh, if it was yours i should apologize, anyway that one who made it is my hero :-D.

    i'll update svn to also include the Sheuron way
    Thank you so much for this, but i cant download it , can u replace spaces with _s ? thank you again.

  9. #10134
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    Well i'm still waiting on my Monk to be transferred over.... so i can't really test anymore...

    And Windwalker is the one that I tested into the ground on my end... Honestly I hadn't gotten the freeze bug in a while.... Mostly only when I was on Training Dummy writing the thing did I get the error... (On second thought... same with when I was writing Boomkin profile... I mostly ever saw it on Training Dummy >.<)
    Why don't you use CastSpellByName(tostring(GetSpellInfo(spellID))). I have yet to run into any problems on my boomkin profile using it after switching to it. I had left it running for 50mil damage on the dummies and it didn't skip a beat.

  10. #10135
    hornswoggle's Avatar Member
    Reputation
    4
    Join Date
    Feb 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been using Sheruon's Hunter SV profile for quite a while and I always manually remove that ice trap and replace it with an explosive trap when I shift into AOE mode. However, I would like to know if a certian thing is possible and how I might do it.

    In the Heroic Hagara fight most hunters tend to switch into Aspect of the Pack during the ice phase in order to help their group move faster. Is there a way to change things to switch into Aspect of the Pack for the ice phase and then not have it automatically trying to change back into Aspect of the Dragonhawk? Thanks for your reply in advance.

  11. #10136
    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 hornswoggle View Post
    I've been using Sheruon's Hunter SV profile for quite a while and I always manually remove that ice trap and replace it with an explosive trap when I shift into AOE mode. However, I would like to know if a certian thing is possible and how I might do it.

    In the Heroic Hagara fight most hunters tend to switch into Aspect of the Pack during the ice phase in order to help their group move faster. Is there a way to change things to switch into Aspect of the Pack for the ice phase and then not have it automatically trying to change back into Aspect of the Dragonhawk? Thanks for your reply in advance.
    disable profile and manually play for 30 seconds?
    ^0^Team Nova's PQR NCC ^0^

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

  12. #10137
    hornswoggle's Avatar Member
    Reputation
    4
    Join Date
    Feb 2007
    Posts
    38
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    disable profile and manually play for 30 seconds?
    Come on man, that is 30 whole seconds. ;P

  13. #10138
    Calidris's Avatar Member
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im using boss 7.3 Arms profile, and im trying create a profile that just changes Heroic Strike whit Cleave.

    But i really dont get how this work. Is it possible to do this in any easy way?

  14. #10139
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    can someone name a boss which does not use the boss frame so i can test further?

    the following prints the boss name in the 5mans/raids i've tried so far, but they all also show a blizzard boss frame.

    if UnitExists("boss1") then PQR_DebugP("boss1 "..UnitName("boss1"))end
    Spine of Deathwing: Burning Tendons = boss2

  15. #10140
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hornswoggle View Post
    I've been using Sheruon's Hunter SV profile for quite a while and I always manually remove that ice trap and replace it with an explosive trap when I shift into AOE mode. However, I would like to know if a certian thing is possible and how I might do it.

    In the Heroic Hagara fight most hunters tend to switch into Aspect of the Pack during the ice phase in order to help their group move faster. Is there a way to change things to switch into Aspect of the Pack for the ice phase and then not have it automatically trying to change back into Aspect of the Dragonhawk? Thanks for your reply in advance.
    I've been pondering a way to use pack without a complete re-write which I can't be bothered to do for just one fight. So I do what Bu_Ba suggested.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

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