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

User Tag List

Page 142 of 731 FirstFirst ... 4292138139140141142143144145146192242642 ... LastLast
Results 2,116 to 2,130 of 10955
  1. #2116
    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)

    [BETA] PQRotation - an automated ability priority queue.
  2. #2117
    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)
    Works for me when I just add Bubba_ in front of the file names.

    EDIT: Oh btw Bubba (if you read this), You should delete the Ret and Prot abilities and rotations since I have them included by default... I think you merged your profile with mine when making it. If you think the profile works well enough I will include them in the next version.

  3. #2118
    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)
    Ill give it another try then

  4. #2119
    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)
    Before Perform / After Perform?

  5. #2120
    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)
    Oh yeah, thats a last minute addition...

    Basically:
    Any Lua code under Before Perform will be performed BEFORE the actions/castspell if it that ability is going to cast.
    Any Lua code under After Perform will be performed AFTER the actions/castspell have been sent.. this is not after a cast has been completed or after a channel... this is just directly after the CastSpellByID() / actions.

    Small distinction, but there are times when you want to use an item or cast an ability after something else (assuming they dont share a GCD)

    EDIT: Also note that the 3 tabs do not share local variables. Im trying to come up with a solution to this to simplify things.

    My intention is to eventually make an optional "Timeline" type ingame GUI that shows the next 3 spells that will be cast. To do this I would need to "test" 3 abilities instead of just the next one to be cast then stop. This presents an issue when profiles execute actions inside of the "test" code... so for example:
    Ability One - Chimera Shot - Returns true
    Ability Two - Trap Launcher (Freezing Trap) - Returns true

    the code for Trap Launcher might look like this:
    if whatever then CastTrapLauncher, ClickScreen, return true end

    Even though we wouldn't want to cast it yet, the simple testing of the function would cause it to cast.
    Last edited by Xelper; 10-12-2011 at 07:35 PM.

  6. #2121
    Tankall's Avatar Active Member
    Reputation
    21
    Join Date
    Jun 2009
    Posts
    45
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wow updates on this are fast and furious - I just got v1.013 configured to my liking last night and now 1.1 is out. Gonna have to go through and see about swapping those old profiles into the new version.

    Love this program - keep up the great work Xelper!

  7. #2122
    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 fenetic View Post
    How is baba's PVE Holy Paladin profile?
    First his name is buba
    Second his profiles are great they work perfectly fine for me in raids

  8. #2123
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Xelper, Is there a way for the user to switch which button toggles between two rotations? IE, on the warrior profile you have Right Control for tobbling between single and aoe. I prefer left Control.

    Love this!

  9. #2124
    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)
    Huh, ermmm, mmmHhhmmm, well, i ll wait till you use it on a live profile to figure how can i use this feature.

    ---------- Post added at 08:26 PM ---------- Previous post was at 08:20 PM ----------

    Originally Posted by amustrami View Post
    Xelper, Is there a way for the user to switch which button toggles between two rotations? IE, on the warrior profile you have Right Control for tobbling between single and aoe. I prefer left Control.

    Love this!
    1. Open Ability Editor
    2. Choose profile
    3. click on "--- defensive spells ---"
    4. On second line change the text "IsRightControlKeyDown()" with "IsLeftControlKeyDown()"

  10. #2125
    grayyman's Avatar Corporal
    Reputation
    4
    Join Date
    Sep 2011
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    if IsLeftShiftKeyDown() and GetCurrentKeyBoardFocus() == nil then
      return true
    end
    set the target to click and spell id to 43265 andn ow u have a death n decay tht is cast where ur mouse is with shift held down

  11. #2126
    tatakau's Avatar Member
    Reputation
    2
    Join Date
    Mar 2008
    Posts
    93
    Thanks G/R
    10/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    I don't play a Shaman, but give this a shot. I'm pretty puzzled by the original code you linked, though.

    Code:
    local inRange = IsSpellInRange("Hex","focus")
    local _,_,_,MaelstromStacks = UnitBuffID("player", 53817)
    
    if UnitExists("focus") and UnitIsVisible("focus") and MaelstromStacks == 5 then
        if inRange == 1 and GetSpellCooldown(51514) == 0 and IsMounted() == nil then
            return true
        end
    end
    I have taken the hex code by onya I want to hex focus when maelstrom is 5

    can anyone help?


    most of the time ignores the skill and continues with the rotation
    Last edited by tatakau; 10-12-2011 at 08:54 PM.

  12. #2127
    amustrami's Avatar Member
    Reputation
    1
    Join Date
    Oct 2006
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Huh, ermmm, mmmHhhmmm, well, i ll wait till you use it on a live profile to figure how can i use this feature.

    ---------- Post added at 08:26 PM ---------- Previous post was at 08:20 PM ----------



    1. Open Ability Editor
    2. Choose profile
    3. click on "--- defensive spells ---"
    4. On second line change the text "IsRightControlKeyDown()" with "IsLeftControlKeyDown()"
    Thanks Sheuron!

  13. #2128
    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)
    Does anyone have a leveling dk frost porfile?
    Last edited by saga3180; 10-13-2011 at 12:18 AM.

  14. #2129
    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 Xelper View Post
    Works for me when I just add Bubba_ in front of the file names.

    EDIT: Oh btw Bubba (if you read this), You should delete the Ret and Prot abilities and rotations since I have them included by default... I think you merged your profile with mine when making it. If you think the profile works well enough I will include them in the next version.
    whoops my bad haha ill double check and make sure it's removed on my next version

    pally is almost finished, got a lot of good responses from people in pms about it, got a couple head scrathers from people as well lol, need to implement about 2-3 more things have them tested then i think it's golden
    ^0^Team Nova's PQR NCC ^0^

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

  15. #2130
    michaelsky's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the new sub rogue profile seems like it's missing way too much and when i shadow dance it just spams cheap shot

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:55 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