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

Shout-Out

User Tag List

Page 484 of 731 FirstFirst ... 384434480481482483484485486487488534584 ... LastLast
Results 7,246 to 7,260 of 10955
  1. #7246
    LiquidAtoR's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    62
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Now I used to have a event driven retribution paladin profile (I think it was an avery edit), but I can't seem to find em back anymore in this madness, even with searching in searches and on the alternative sites.
    The only event driven profile I found was a dragonfire one, but that one doesn't split in 2 parts (rotation wise).

    I downloaded a supposedly newer version but I lost the one which I enjoyed very much (my own fault, I forgot to make a backup).
    I've looked trough most of the pages, without result, so here's my request if someone knows the profiles I'm talking about and could relink or post em back.

    The profile splitted in 2 parts in PQR.
    It was 1 for raid bosses (Which used all DPS abilities on Cooldown), and 1 for trash (which didn't use GoAK, Zealotry etc).

    If someone knows what I am talking about, and has these and could link them back (or a better one), would be much appreciated.

    Edit: Found em myself...

    Avery Event Driven Raid Profiles
    Avery Regular Raid + Trash Profiles
    Last edited by LiquidAtoR; 03-10-2012 at 08:37 PM. Reason: Found the links myself

    [BETA] PQRotation - an automated ability priority queue.
  2. #7247
    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.0.0) Release Notes
    NOTE: 2.0.0 will NOT work with any older versions of WoW such as 3.3.5. This functionality will be added at a later point in time once I am sure there are no bugs left in the current version. You can continue using the old version until this has been updated.

    Download here: PQR2.zip

    I wanted to take this time to HIGHLY RECOMMEND that profile developers make a thread on the Bot Maps and Profiles forum and then link to their post on the Wiki. You can still post here on this thread, this would just help make things a bit more searchable.

    NOTE THAT SOME OR ALL OF THE LINKS ON THE WIKI MIGHT BE OUT OF DATE, USE THE LATEST VERSION OF THE PROFILE THAT YOU ALREADY HAVE!
    Death Knight Rotations
    Druid Rotations
    Hunter Rotations
    Mage Rotations
    Paladin Rotations
    Priest Rotations
    Rogue Rotations
    Shaman Rotations
    Warlock Rotations
    Warrior Rotations

    PQR (v2.0.0) is mainly a rewrite of PQR to improve efficency. As such, there aren't many new user features however things should run internally much better and as such use less memory.
    I have switched from the .NET Framework 4.0 client profile to the full framework. If you are having issues try installing: Download: Microsoft .NET Framework 4 (Web Installer) - Microsoft Download Center - Download Details


    IMPORTANT: If you had a profile that used "Perform Before" or "Perform After" this code will no longer function. See my notes below for the reason why I decided to remove them and for a fairly trivial way to reimplement any lost functionality.


    [NEW] Folder layout has been improved. There is now an Offsets folder as well as folders for individual classes.
    [NEW] Monk class support.
    [NEW] Interrupt profile support.
    [NEW] Anti-AFK while the PQR program is running. This can be disabled on the settings page.
    [NEW] Ability editor has had an overhaul. New improved syntax highlighter. Can now be resized/maximized.
    [NEW] Multiple debug levels to make using Debug Mode easier.
    None - Default level. No debug data written to chat.
    Profile - ONLY "Profile" debug commands are written to chat. This should allow profile developers to use PQR_DebugP("Text") or PQR_Debug("Text here!", "Profile") to help test their profiles.
    Basic - Basic workflow of the rotation is written to chat, as well as some other basic information. Also includes Profile data.
    Advanced - All debug information is written to chat.


    The following is for profile writers:
    New Global Variables:
    PQR_RotationStarted - a flag set to true when a rotation has started. This can be used to run code that should only be run once per rotation.
    PQR_InterruptStarted - a flag set to true when an interrupt profile has started. Similiar to PQR_RotationStarted.
    PQR_SpellAvailableTime - Default value is 0.05 (50ms.) If a spell has less than 50ms left on it's cooldown it will be considered available. This can be changed.




    Updated Global Functions:
    PQR_WriteToChat(text[, suffix]) - Will write to chat: <PQR[ suffix]> text.
    PQR_Debug(text[, debugLevel) - Valid debug levels are: none (empty string/nil), "Profile", "Basic," and "Advanced." PQR sends no messages using the "Profile" mode, so you can use this to help in debugging your profiles.
    PQR_DebugP(text) - Same as using PQR_Debug(text, "Profile")


    New Global Functions:
    PQR_DelayRotation(seconds) - Delays the currently running profile for X seconds (default 1).
    Code:
    Example: This can be called from an interrupt profile to allow for the use of abilities that are on GCD such as a Stun.

    PQR_AddToSpellDelayList(spell, item, seconds) - Delays the currently running profile for X seconds (default 1) when a player attempts and fails to use a spell or item. Resumes on sucessful cast.
    Code:
    Example: A player is spamming Divine Shield but it is on GCD, so the bot is preventing the player from doing it. Using an ability that uses PQR_RotationStarted flag, the profile writer can add: 
    "PQR_AddToSpellDelayList(642, 0, 1) --Divine Shield"
    The profile will pause for 1 second after a failed attempt to use Divine Shield, so the player can slightly spam the key, and automatically resume the profile once the cast has been done sucessfully or X seconds have passed.
    It also works for potions:
    PQR_AddToSpellDelayList(79634, 58146, 1) --Golem's Strength (Potion) (spellID, itemID, delay)

    PQR_IsOnInterruptList(spellName) - Is an ability on either the PQR interrupt list or profile created list (PQR_AddInterrupt). Returns true/false.
    PQR_AddInterrupt(spellName) - Adds a spell to the interrupt list, you should use PQR_InterruptStarted flag to only add once.
    PQR_IsInterruptAll() - Is "Interrupt All Spells" checked? Returns true/false.
    --


    Reason for removal of "Perform After" and "Perform Before"
    Perform After/Before was clunky, and did not do anything that you couldn't do in an ability before. There was no simple way of editing the ability and just seeing "oh this is doing something before and after" without going into the tabs for each. If someone used an ability as a template they might never know they also have possibly bad before/after code there. Or if they just copied/pasted an ability to another they might not know they are missing code.


    It should be trivial to fix the affected abilities, just do this where you would 'return true':


    If spell ID is not 0 and only using "Perform Before"
    Code:
    --PERFORM BEFORE CODE HERE
    return true

    If spell ID is not 0 and using "Perform After" OR If spell ID is 0:
    You must change the spell ID to 0.
    Code:
    local spellAvailable = PQR_SpellAvailable(SpellID)
    if spellAvailable then
        --PERFORM BEFORE CODE HERE
        CastSpellByID(SpellID, Target)
        --PERFORM AFTER CODE HERE
        return true
    end
    Oh, you made it to the end of the post. If things work well for you please +rep me as thanks. If you have any issues please post details on how to replicate the issue from a clean install. Many thanks.
    Last edited by Xelper; 03-10-2012 at 11:50 PM.

  3. #7248
    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)
    Ooops- Forgot to include the default Interrupt profile. Reuploaded.

  4. #7249
    LiquidAtoR's Avatar Member
    Reputation
    12
    Join Date
    Mar 2009
    Posts
    62
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the release of PQR2.

    Short question...

    Now that you've separated the folders for each class, does that mean the limit I've seen posted somewhere in this thread is not up to 1024 per folder or still in total for all profiles?
    Just out of curiosity...

  5. #7250
    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)
    Originally Posted by LiquidAtoR View Post
    Thanks for the release of PQR2.

    Short question...

    Now that you've separated the folders for each class, does that mean the limit I've seen posted somewhere in this thread is not up to 1024 per folder or still in total for all profiles?
    Just out of curiosity...
    It has always been per-class. 1024 abilities between all class profiles. I'll get around to that eventually.

    Just to clarify, if you have 800 DK abilities and 900 Hunter abilities, you are still OK.

    If you have one DK profile with 800 abilities, then you make a copy of that profile and have 1600... you are not ok.
    Last edited by Xelper; 03-10-2012 at 09:26 PM.

  6. #7251
    sportplayer2k's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    very nice work xelper

    hopefully we will see an interrupt profile coming out now

  7. #7252
    sportplayer2k's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by imdasandman View Post
    I have blood tap fixed will upload this weekend.

    As far as 5mans are concerned i do not support those it is a raiding rotation.

    Sent from my SAMSUNG-SGH-I717 using Tapatalk
    Also Looking forward to this!

  8. #7253
    expunge's Avatar Knight-Lieutenant
    Reputation
    17
    Join Date
    Nov 2011
    Posts
    226
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @xelper

    It attaches fine, but when I start Bossqwert's war 7.3 profile it doesn't do anything. Not sure why. Going to try and debug a bit.

    HOLY SHIT @ the new ability editor. That's...awesome.

    Looks like just bossqwerty's profile isnt working.
    Last edited by expunge; 03-10-2012 at 09:35 PM.

  9. #7254
    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 sportplayer2k View Post
    very nice work xelper

    hopefully we will see an interrupt profile coming out now
    First one to put out a beast interrupt profile wins!

  10. #7255
    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, to quote Bender from Futurama: "Oh, Chief, you've made me the happiest girl in the world!"

    I can't wait to try everything out. Thank you for all the work you put into PQR.

  11. #7256
    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)
    @Sheuron

    Getting a Lua error for fire pve since pqr2.0? Weird stuff happening, first of all it doesn't show pq execute on and off when alt x'ing and eventualy rotation falls off and spams scorch.

    Code:
    Message: Interface\FrameXML\UnitFrame.lua:218: Usage: GameTooltip:SetUnit("unit"[, hideStatus])
    Time: 03/10/12 22:20:20
    Count: 2
    Stack: [C]: ?
    [C]: in function `SetUnit'
    Interface\FrameXML\UnitFrame.lua:218: in function `UnitFrame_UpdateTooltip'
    Interface\FrameXML\UnitFrame.lua:205: in function <Interface\FrameXML\UnitFrame.lua:192>
    
    Locals:
    
    Message: ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:343: CreateFrame: Can't create protected 'Button' now
    Time: 03/10/12 22:23:58
    Count: 12
    Stack: [C]: ?
    [C]: in function `CreateFrame'
    ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:343: in function `CompactRaidFrameContainer_GetUnitFrame'
    ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:315: in function `CompactRaidFrameContainer_AddUnitFrame'
    ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:297: in function `CompactRaidFrameContainer_AddFlaggedUnits'
    ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:170: in function `CompactRaidFrameContainer_LayoutFrames'
    ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:131: in function `CompactRaidFrameContainer_TryUpdate'
    ...actRaidFrames\Blizzard_CompactRaidFrameContainer.lua:58: in function `CompactRaidFrameContainer_OnEvent'
    [string "*:OnEvent"]:1: in function <[string "*:OnEvent"]:1>
    
    Locals:
    Last edited by Meatglue; 03-10-2012 at 11:35 PM.

  12. #7257
    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)
    All profiles work with new version. If you getting any error follow this steps

    1. CLOSE old pqr
    2. CLOSE game
    3. OPEN game
    4. OPEN new pqr

  13. #7258
    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)
    Been using the new pqr for awhile now. I will try though after this LFR is over though to double check. Really hoping that is the case. I spiked damage on madness at 70k then dropped to 42k. lol

    After trying again..
    On test dummy I get no error.
    But it still only shows your signature and version of profile.
    I can't tell if pqr is activated on or off or if interrupt mode is on or off.
    Does that make sense?
    Last edited by Meatglue; 03-10-2012 at 11:57 PM.

  14. #7259
    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
    First one to put out a beast interrupt profile wins!
    lol the conversion of my Arena: Pummel is halfway complete....... but for the next 5 days im stonewalled due to work XD
    ^0^Team Nova's PQR NCC ^0^

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

  15. #7260
    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)
    Reuploaded PQR v2 with a few minor UI quirks fixed.
    -Ability property descriptions not showing
    -Syntax highlighting not activating until you select an ability.

    http://www.mediafire.com/?27fdylo9noddu0d

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 02:45 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