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

Shout-Out

User Tag List

Page 391 of 731 FirstFirst ... 291341387388389390391392393394395441491 ... LastLast
Results 5,851 to 5,865 of 10955
  1. #5851
    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 outoforder View Post
    what have u eve done besides make dk profiles, that need major editing?


    (pvp, feral, disc, dk, hunter, shaman), and pve disc

    and your svn doeesnt work
    1.) Pally, Boomkin... Helped people.... Haven't been an insufferable asshat, but I'll let you have that one, you're doing so well already.

    2.) Still I have no idea what that list is, which is what the original question was.

    3.) Yes it does... you just can't figure it out apparently.
    ^0^Team Nova's PQR NCC ^0^

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

    [BETA] PQRotation - an automated ability priority queue.
  2. #5852
    outoforder's Avatar Sergeant
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Command: Checkout from bubba-pqr-profiles - My Profiles for PQR - Google Project Hosting, revision HEAD, Fully recursive, Externals included
    Error: Server sent unexpected return value (405 Method Not Allowed) in response to
    Error: OPTIONS request for 'http://code.google.com/p/bubba-pqr-profiles'
    Finished!:

    your svn i s broke

    nm i got it but your loike is wrong
    Last edited by outoforder; 02-14-2012 at 12:33 PM. Reason: update

  3. #5853
    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)
    Originally Posted by outoforder View Post
    Command: Checkout from bubba-pqr-profiles - My Profiles for PQR - Google Project Hosting, revision HEAD, Fully recursive, Externals included
    Error: Server sent unexpected return value (405 Method Not Allowed) in response to
    Error: OPTIONS request for 'http://code.google.com/p/bubba-pqr-profiles'
    Finished!:

    your svn i s broke

    nm i got it but your loike is wrong
    Then how come its working perfectly fine for me?

  4. #5854
    WTFever's Avatar Corporal
    Reputation
    2
    Join Date
    Dec 2011
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I get the same error from Bu_bba's and Valmas =-(
    fixed em .
    Last edited by WTFever; 02-14-2012 at 01:14 PM.

  5. #5855
    outoforder's Avatar Sergeant
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    u gotta clickon link, and there is directions to get the svn code.... bubba-pqr-profiles - My Profiles for PQR - Google Project Hosting

    svn checkout http://bubba-pqr-profiles.googlecode.com/svn/trunk/

  6. #5856
    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 saga3180 View Post
    Then how come its working perfectly fine for me?
    He mistook my link to my Google code page as the svn check out link. Instead of actually watching my setup tutorial video where I show exactly where to go for the checkout link.
    ^0^Team Nova's PQR NCC ^0^

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

  7. #5857
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Valma,

    I really like the debug thing that you have added It would be more usefull with some timestamp is front of the lines you are writting so you could have a wrapper that will automoatically add a timestamp.

    Furthermore, 28K on dummy with the new version. Good job.

    I have just add the Use:Glove ability to your rotation but in the old way (not using all your framework)

  8. #5858
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    Figure I'll ask one more time since I had no luck before. Does anyone have any idea how I might track swing timers? Would really appreciate it if someone could help me out with that. I tried looking at a couple swing timer addons (quartz, ld50_abar) but I don't really understand enough about lua / coding in general for it to have actually helped me any. I need to know how close both MH and OH are swing are to actually firing basically.
    Code:
    function events:COMBAT_LOG_EVENT_UNFILTERED(...)
    if (select(3, ...) == "SWING_DAMAGE" or select(3, ...) == "SWING_MISSED") and (bit.band(select(5, ...), COMBATLOG_OBJECT_AFFILIATION_MASK) == COMBATLOG_OBJECT_AFFILIATION_MINE) then
    	swingTime = UnitAttackSpeed("player")
    	swingEnd = GetTime() + swingTime
    end
    You welcome,friend. All you need is create frame and register this event to it(check it in my code,its easy)
    Last edited by Valma; 02-14-2012 at 02:03 PM.
    MEDVED+VODKA+BALALAYKA

  9. #5859
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    Code:
    function events:COMBAT_LOG_EVENT_UNFILTERED(...)
    if (select(3, ...) == "SWING_DAMAGE" or select(3, ...) == "SWING_MISSED") and (bit.band(select(5, ...), COMBATLOG_OBJECT_AFFILIATION_MASK) == COMBATLOG_OBJECT_AFFILIATION_MINE) then
        swingTime = UnitAttackSpeed("player")
        swingEnd = GetTime() + swingTime
    end
    You welcome,friend. All you need is create frame and register this event to it(check it in my code,its easy)
    Thanks! I'll give that a shot. Can't give you any more rep yet, need to spread it around first.

  10. #5860
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    Thanks! I'll give that a shot. Can't give you any more rep yet, need to spread it around first.
    Not a problem (: My sig is for thoose people who is just leaching profiles even without registering at forums and spending a bit time to contribute or say thanks atleast

    Will look at your problem a bit closer tomorrow from work,going to sleep soon >.<
    MEDVED+VODKA+BALALAYKA

  11. #5861
    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)
    Originally Posted by averykey View Post
    I don't really know Lua so there isn't any updates, just a re-post saw some people asking.

    Here are the ones I'm am using right now.

    When using them for max dps pop guardian yourself, after 10 seconds pop both wings and zealotry, Been bursting 60-70k in my gear.

    Link - Download Avery.PVE.Ret.Profiles.rar @ UppIT
    Backup Link - Avery-PVE-Ret-Profiles.rar
    Backup2 Link - Download Avery-PVE-Ret-Profiles.rar for free on uploading.com

    My profile Avery is still better right now for going through the rotation, but I believe the other one "PVE" has better single/aoe switching, so I use them together.


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

    Any of the pro lua coders want to pick up on my profile, that would be awesome, again I don't know Lua so the ret profiles are not as good as they could be.

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

    If this goes down again just post something in the thread and send me a private message, I will re-upload it.

    Is there adiffrence in Ret UL and Ret Ul trash?

  12. #5862
    larrybyrdy's Avatar Member
    Reputation
    2
    Join Date
    Mar 2011
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ignore the haters and just keep doing amazing work guys. Dont let the haters slow down progress. PQR is such an amazing tool and you profile writers have made it 10x better. We all greatly appreciate the hard work that goes in to these profiles.

  13. #5863
    andryshka's Avatar Corporal
    Reputation
    11
    Join Date
    May 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2Valma
    Big thanks for profile. Can't wait and made some changes
    -Add abilities and rotation for demo lock
    -fixed rotation for destro (Conflagate before Immolate caused error in some fights)
    -add use gloves

    ModValma_Warlock.rar

  14. #5864
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by andryshka View Post
    2Valma
    Big thanks for profile. Can't wait and made some changes
    -Add abilities and rotation for demo lock
    -fixed rotation for destro (Conflagate before Immolate caused error in some fights)
    -add use gloves

    ModValma_Warlock.rar
    I will check about conf error tomorrow.As for about demo and affli - I'm not adding this to rotation coz mainly my goal is autoboss logic and I can't code it in 1 profile,coz different specs have different boss logic.
    MEDVED+VODKA+BALALAYKA

  15. #5865
    andryshka's Avatar Corporal
    Reputation
    11
    Join Date
    May 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    I will check about conf error tomorrow.
    It's on low health target, about below 15-20%. "Can't use on target". Something like that (sorry, I play on RU). Ultraxion , for example. Not always, but often.

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 07:40 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