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

User Tag List

Page 210 of 731 FirstFirst ... 110160206207208209210211212213214260310710 ... LastLast
Results 3,136 to 3,150 of 10955
  1. #3136
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @bu_ba_911

    HR works now that it's casted on someone instead of being casted on your self. So as long as there are people near the person it's being casted on it's good.. I would think right?

    [BETA] PQRotation - an automated ability priority queue.
  2. #3137
    SpyroPT's Avatar Active Member
    Reputation
    15
    Join Date
    Aug 2011
    Posts
    121
    Thanks G/R
    3/7
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @bu_ba_911
    I'd love if it had a Light of Dawn spell created To be cast on 3 HP only, as less it would be a waste of HP.

  3. #3138
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I love the dk profiles on this no one can touch my dps :-)

    Can anyone tell me another great one like this that has a great single target and aoe profiles?

    I have a level 85 rogue but the profile for it does not seem to work as good?

    Thanks

    Techz

  4. #3139
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PRQ-PU (PQR-PU (PQR-Profile Updater)) UPDATED

    Check Change log on first page to know what changed!

    Profiles Added:
    -Hunter's - by sheuron and crystal_tech
    -Resto druid - by ash
    -Warrior's - By sheuron

    Soon will be added bubba profiles for Hpally and dk's!

  5. #3140
    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)
    Code:
    local InParty = GetNumPartyMembers()
    if InParty > 0 and UnitInRaid("player") == nil then
      for i = 1, InParty, 1 do
      local member = "party"..tostring(i)
      if UnitGroupRolesAssigned(member) == "TANK" and  UnitBuffID("target", 974) == nil then 
     CastSpellByName("Earth shield")
        SpellTargetUnit(member)
        end
      end
    end
    What i did wrong? :confused:

  6. #3141
    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)
    Too many pqr pseudo projects. Is easier to check for 3 forums and svn than one single forum thread?

  7. #3142
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Too many pqr pseudo projects. Is easier to check for 3 forums and svn than one single forum thread?
    with 211 pages? hard to look for profiles! You just use the pseudo projects if you want, no 1 makes you do nothing you dont want.

  8. #3143
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by leetspeaker View Post
    Code:
    local InParty = GetNumPartyMembers()
    if InParty > 0 and UnitInRaid("player") == nil then
      for i = 1, InParty, 1 do
      local member = "party"..tostring(i)
      if UnitGroupRolesAssigned(member) == "TANK" and  UnitBuffID("target", 974) == nil then 
     CastSpellByName("Earth shield")
        SpellTargetUnit(member)
        end
      end
    end
    What i did wrong? :confused:
    try this:
    Code:
    local InParty = GetNumPartyMembers()
    if InParty > 0 then
      for i = 1, InParty, 1 do
      local member = "party"..tostring(i)
        if UnitGroupRolesAssigned(member) == "TANK" and UnitIsDead(member) == nil then
          if UnitInRange(member) and UnitBuffID("member", 974) == nil then
    		CastSpellByID(974,member)
    	  end
        end
      end
    end

  9. #3144
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    with 211 pages? hard to look for profiles! You just use the pseudo projects if you want, no 1 makes you do nothing you dont want.
    I just became a SVN fan myself.

  10. #3145
    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 GRB View Post
    with 211 pages? hard to look for profiles! You just use the pseudo projects if you want, no 1 makes you do nothing you dont want.
    The thing is, could be tons of pqr related projects, but you ll continue checking this megathread every day ^^

  11. #3146
    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 crystal_tech View Post
    try this:
    Code:
    local InParty = GetNumPartyMembers()
    if InParty > 0 then
      for i = 1, InParty, 1 do
      local member = "party"..tostring(i)
        if UnitGroupRolesAssigned(member) == "TANK" and UnitIsDead(member) == nil then
          if UnitInRange(member) and UnitBuffID("member", 974) == nil then
    		CastSpellByID(974,member)
    	  end
        end
      end
    end
    Isnt workin for me, no errors, but not casted.

  12. #3147
    Ralphiuss's Avatar Active Member
    Reputation
    44
    Join Date
    Sep 2011
    Posts
    230
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To what I understand of bots and Light of Dawn...I don't think it would really work.

    Light of dawn really isn't on a targeting system. So it would only cast if it had 3 HP no matter which way you were facing.

  13. #3148
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ralphiuss View Post
    To what I understand of bots and Light of Dawn...I don't think it would really work.

    Light of dawn really isn't on a targeting system. So it would only cast if it had 3 HP no matter which way you were facing.
    That is why I suggest having a hot key to use when needed. It may just be me but my healing for raids is way under the other Holy Pallies because they spam HR and LoD. I am not real worried about it though because I do PvP/Arena for the majority but I do pop into LFR.

  14. #3149
    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 crystal_tech View Post
    try this:
    Code:
    local InParty = GetNumPartyMembers()
    if InParty > 0 then
      for i = 1, InParty, 1 do
      local member = "party"..tostring(i)
        if UnitGroupRolesAssigned(member) == "TANK" and UnitIsDead(member) == nil then
          if UnitInRange(member) and UnitBuffID("member", 974) == nil then
    		CastSpellByID(974,member)
    	  end
        end
      end
    end
    for now pqr is casting nothing except earth shield

  15. #3150
    Elokaynu's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ash your Resto Druid build is bugged, Tranq stops time to time when holdign down the button, also, the Lifebloom doesnt smart cast to threat, or someitmes falls off

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 04:31 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search