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

User Tag List

Page 545 of 731 FirstFirst ... 45445495541542543544545546547548549595645 ... LastLast
Results 8,161 to 8,175 of 10955
  1. #8161
    Doughal's Avatar Member
    Reputation
    18
    Join Date
    Apr 2009
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone got a good resto sham profile? Could only find one and it was megaupload ><

    [BETA] PQRotation - an automated ability priority queue.
  2. #8162
    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)
    @Cokx and Bubba

    On the Paladin cleanse abilities you have written, you have it set not to cleanse if UA is up. Problem I am running into I think is that it will not cleanse the UA silence that happens when for example a Priest Mass Dispels it for your RBG team. It is hard to tell since there is always a third healer on top of it usually a Shaman. Just want to be clear if this is possible since it uses the same spell id as UA.

  3. #8163
    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 Meatglue View Post
    @Cokx and Bubba

    On the Paladin cleanse abilities you have written, you have it set not to cleanse if UA is up. Problem I am running into I think is that it will not cleanse the UA silence that happens when for example a Priest Mass Dispels it for your RBG team. It is hard to tell since there is always a third healer on top of it usually a Shaman. Just want to be clear if this is possible since it uses the same spell id as UA.
    its not the same spellid... at least on wow head it isnt. so my most recent version still doesn't do that?

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

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

  4. #8164
    leonel916's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey bubba. I was using your Spriest profile in DS yesterday. It was working perfectly until Warmaster fight. I noticed it only attacks the big adds, but no sapper, drakes. Of crouse drakes are important tast for casters. Even with mouse over it wasent doing anything at all. No cast no nothing, just the big adds and boss.

  5. #8165
    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 sheuron View Post
    I was wondering on a way to improve de UnitBuffID/UnitDebuffID function.

    This is what we doing now

    Code:
          local buff = { 1126, 20217, 90363 } 
          for i=1, #buff do if UnitBuffID("target",buff[i]) then return true end end
    This example launch UnitBuffID api 3 times to check buff we need.

    Code:
          if UnitBuffID("target",1126|20217|90363) then return true end
    This syntax or something similar could be used to check all our buff with only 1 call.
    That's a great idea!
    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

  6. #8166
    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 bu_ba_911 View Post
    its not the same spellid... at least on wow head it isnt. so my most recent version still doesn't do that?

    Sent from my Xoom using Tapatalk
    Not sure if I have your current version but it actually eats UA's don't see the code to prevent cleansing it. Also, the healing mechanics are off does not heal targets in pvp well. I'll talk to you more about it later.

    Is the silence from ua spell id 31117?
    Last edited by Meatglue; 03-22-2012 at 11:36 PM.

  7. #8167
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    210
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Version 2.0.1 of PQInterface released
    Code:
    minor addon engine changes and fixes
    Ive now added a wikia page for the addon with updated information and instructions, the latest version will always be available for download there.
    ** Profile developers be sure to read the wikia for functions usable from your abilities **

    PQInterface wikia entry

  8. #8168
    diesall's Avatar Contributor
    Reputation
    199
    Join Date
    Jul 2011
    Posts
    210
    Thanks G/R
    1/48
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    I was wondering on a way to improve de UnitBuffID/UnitDebuffID function.

    This is what we doing now

    Code:
          local buff = { 1126, 20217, 90363 } 
          for i=1, #buff do if UnitBuffID("target",buff[i]) then return true end end
    This example launch UnitBuffID api 3 times to check buff we need.

    Code:
          if UnitBuffID("target",1126|20217|90363) then return true end
    This syntax or something similar could be used to check all our buff with only 1 call.
    it wouldn't be hard to implement your own version of said functionality, for example add the following function to your PQR_customScript.lua in the data folder

    Code:
    function PQR_UnitBuffCheck(unit,...)
    	for i =1, select('#',...) do
    		if UnitBuffID(unit,select(i,...)) then return true end
    	end	
    end
    to the use it in your ability:

    local hasBuff = PQR_UnitBuffCheck("player",1126,20217,90363)
    or
    if not PQR_UnitBuffCheck("player",1126,20217,90363) then return false end
    Last edited by diesall; 03-23-2012 at 12:07 AM.

  9. #8169
    saga3180's Avatar Knight-Lieutenant
    Reputation
    6
    Join Date
    Sep 2011
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone show me the newest ret paladins rotation?

  10. #8170
    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 diesall View Post
    it wouldn't be hard to implement your own version of said functionality, for example add the following function to your PQR_customScript.lua in the data folder

    Code:
    function PQR_UnitBuffCheck(unit,...)
    	for i =1, select('#',...) do
    		if UnitBuffID(unit,select(i,...)) then return true end
    	end	
    end
    to the use it in your ability:

    local hasBuff = PQR_UnitBuffCheck("player",1126,20217,90363)
    or
    if not PQR_UnitBuffCheck("player",1126,20217,90363) then return false end
    Thats same in other order. The point is... if a player have 10 buffs, we need to use UnitBuff api 10 times to check for an especific buff, The way we doing this now if we need to check for 5 specific buff UnitBuff api is used (5x10) 50 times, the way i proposed Unitbuff is only used for the number for buff player have.

  11. #8171
    Kaolla's Avatar Contributor
    Authenticator enabled
    Reputation
    126
    Join Date
    Apr 2007
    Posts
    341
    Thanks G/R
    2/2
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, as the default Interrupt Profile is dependent on abilities with a 0 SpellID, is it similarly affected by the "Skip Unknown" function added in 2.0.7?

  12. #8172
    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 Meatglue View Post
    Not sure if I have your current version but it actually eats UA's don't see the code to prevent cleansing it. Also, the healing mechanics are off does not heal targets in pvp well. I'll talk to you more about it later.

    Is the silence from ua spell id 31117?

    yes that is the silence that i found on wowhead
    ^0^Team Nova's PQR NCC ^0^

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

  13. #8173
    leonel916's Avatar Member
    Reputation
    1
    Join Date
    Jun 2011
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Update

    Buba , not only problems in the warmaster but also spine and madness. For spine . Burning tendons . No casting being done. Madness . Deathwings legs no casting being done

    I am useing your profile spriest latest

    Sent from my ADR6300 using Tapatalk

  14. #8174
    Luckycharm's Avatar Member
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    15
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Thats weird... Think it has something to do with the program I use to merge the DLL files into a single EXE. I'll reupload shortly once I have it fixed.

    EDIT: Okay fixed, rerun PQRUpdater.exe for the fixed version.
    I rerunned PQRupdate but i still don´t see that " Skip unknown" option, or im a blind?


    *Edit*

    My bad i simply need to open my eyes and refill coffeelvl.
    Last edited by Luckycharm; 03-23-2012 at 01:47 AM.

  15. #8175
    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 leonel916 View Post
    Update

    Buba , not only problems in the warmaster but also spine and madness. For spine . Burning tendons . No casting being done. Madness . Deathwings legs no casting being done

    I am useing your profile spriest latest

    Sent from my ADR6300 using Tapatalk
    It's Mentally's profile.... The work and effort she put in to that is freaking unthinkable.... Give her rep and feedback where you feel it's necessary... She shares my svn??? But all her stuff is ALL her lol. Don't think I did spriest plz that's 100% mentally and i think that she's currently working out the best way to handle the random bug like that, since she personally didn't experience that lol

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

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

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 09:17 AM. 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