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

Shout-Out

User Tag List

Page 158 of 731 FirstFirst ... 58108154155156157158159160161162208258658 ... LastLast
Results 2,356 to 2,370 of 10955
  1. #2356
    diesall's Avatar Contributor
    Reputation
    105
    Join Date
    Jul 2011
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will be posting my addon for PQR soon,which is basically an in game HUD, just cleaning up the code adding settings and tweaking a few animations etc..
    i haven't added localisation yet but if anyone really needs it i can add it with primitive google translations in your required language or you can provide me with translations etc...

    [BETA] PQRotation - an automated ability priority queue.
  2. #2357
    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)
    Originally Posted by cokx View Post
    Why does nobody answer to my dk selfhealing problem? (((
    As Lichborne costs nothing to activate, it's really not an issue to just activate it yourself. Allowing PQR to pop survivability cooldowns can be messy. I manually use Lichborne and PQR takes over with this code:

    Code:
    Name: Death Coil (Self-Heal)
    Spell ID: 47541
    Delay: 0
    Target: Player
    
    local HP = UnitHealth("player") / UnitHealthMax("player") * 100
    local THP = UnitHealth("target") / UnitHealthMax("target") * 100
    local Lichborne = UnitBuffID("player",49039)
    
    
    if HP < 60 and THP > 15 and Lichborne ~= nil and SpellIsTargeting() == nil and IsShiftKeyDown() == nil and IsControlKeyDown() == nil and IsAltKeyDown() == nil then
        return true
    end
    I had some complex rules written out for Icebound Fortitude and my trinket, which looked for certain events (such as a rogue stun in a smokebomb) and used them accordingly, but it really doesn't work very well in 2300+ arena. It's really easier to just make smart decisions about cooldowns and then write things like the above to take advantage of the automation factor. I even had to change the above to take target health into consideration, since there have been games where PQR healed instead of Frost Strikes/Coils that would have killed my target.

    Also: BlizzCon yay!

  3. #2358
    cokx's Avatar Banned
    Reputation
    92
    Join Date
    Dec 2008
    Posts
    896
    Thanks G/R
    0/0
    Trade Feedback
    4 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok many thanks.
    and the thp function is very clever :>
    i just wanted the function for some tunnel vision stupidity

  4. #2359
    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)
    I'd donate if one of the big wigs here can make a Balance Druid profile and resto

  5. #2360
    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 Ralphiuss View Post
    I'd donate if one of the big wigs here can make a Balance Druid profile and resto
    we have some normal users making some resto profiles, i think they're almost ready to release them (idk)

    i would try to make a balance profile, but i only have a level 49 druid haha
    ^0^Team Nova's PQR NCC ^0^

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

  6. #2361
    Erasmus's Avatar Private
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello, are there any up to date enhancement shammy profiles. Ive tried the ones ive found here but they only drop totems and auto attack. It would nice to wind up my shammy in enhancement again

  7. #2362
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Some one released a moonkin rotation like 40 pages back. It works very well.

    Sent from my HTC Glacier using Tapatalk

  8. #2363
    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)
    Tried the balance one. Would be nice to see a AOE rotation.

    As well I'm trying the resto one now. As I read somewhere the rotation likes to keep casting lifebloom on the tank with out letting it drop. Letting it drops gives a big heal plus some mana back.

    Is there anything I read that would tech me how to code for this program?

  9. #2364
    smrdlja's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any profile for Prot Warrior with which is in favour of Devastate over Revange, as for sure for single target raid envoirment its much much better?

  10. #2365
    La_MueRTe's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi, there is some rotation for pvp afi warlock or demon?

  11. #2366
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by smrdlja View Post
    Is there any profile for Prot Warrior with which is in favour of Devastate over Revange, as for sure for single target raid envoirment its much much better?
    That sounds like something you would easily be able to change yourself in the ability editor, or rotation editor? Have you tried so?

  12. #2367
    diesall's Avatar Contributor
    Reputation
    105
    Join Date
    Jul 2011
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @xelper only just got around to updating to the newest version, it seems enabling manual mode has been depreciated as the smart hotkey macro now works without enabling manual mode, however if i attempt to use the hotkey for enabling manual mode it negates my ability to toggle interrupt mode on and off, did you forget to remove the feature from the bot or does it serve another purpose now?

  13. #2368
    smrdlja's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    109
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Ninjaderp View Post
    That sounds like something you would easily be able to change yourself in the ability editor, or rotation editor? Have you tried so?
    Yup... but after that only thing bot is doing is devastate, and in general rotation that is included is bad. It doesn't use demo shout almost at all, and that should have 100% uptime in raids. Doesn't use [Berserker Rage] also, and that is also needed.
    Last edited by smrdlja; 10-22-2011 at 10:37 PM.

  14. #2369
    momo1029's Avatar Sergeant
    Reputation
    2
    Join Date
    Feb 2009
    Posts
    69
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by smrdlja View Post
    Yup... but after that only thing bot is doing is devastate, and in general rotation that is included is bad. It doesn't use demo shout almost at all, and that should have 100% uptime in raids. Doesn't use [Berserker Rage] also, and that is also needed.
    you might have messed up the ability
    the one that comes with the pqr for prot warr is perfect on mine
    100% uptime demo, tc and use berserker rage

  15. #2370
    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)
    well now that blizzcon is over i think i'll get back to coding..... anyone have any requests for changes to the builds i have currently released?
    ^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 07:10 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