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

Shout-Out

User Tag List

Page 110 of 731 FirstFirst ... 1060106107108109110111112113114160210610 ... LastLast
Results 1,636 to 1,650 of 10955
  1. #1636
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is fustrating me i cant seem to fix the character stoping auto-attack upon switching targets. Anyone figured it out?

    [BETA] PQRotation - an automated ability priority queue.
  2. #1637
    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 trulygangster View Post
    This is fustrating me i cant seem to fix the character stoping auto-attack upon switching targets. Anyone figured it out?
    like against polymorphed targets? or mobs that aren't in combat?
    ^0^Team Nova's PQR NCC ^0^

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

  3. #1638
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,033
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok, things happened that sucked hard for me. aka my pc crashed and burned and I just got everything back so I'll be posting stuff soon as I have to recode most of it.

  4. #1639
    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
    Code:
    if UnitExists("target") == nil 
    and UnitAffectingCombat("player") 
    then TargetUnit("pettarget") end
    Sometimes I end up targetting dead mobs, any ideas on this?

  5. #1640
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    Code:
    local class, token = UnitClassBase("target")
    local ps = {Druid, Warrior, Death Knight, Hunter, Rogue}
    
    for i,v in ipairs(ps) do
    if UnitBuffID("player", 7302) == nil and UnitAffectingCombat("player") == nil and class == v then
      return true
    end
    end
    alright now i could make this only cast on pally healers, druid casters, any and all other casters and such..... but i want to see if you can edit this to suit your purposes

    it has most of the basic components u'll need


    *edit*
    for the record this is grb's (i think) code for auto cast frost armor depending on who the target is
    A few pages forward were i posted that, theres the proper and working code for that purposes.
    But he will have a problem, couse a pala can be healer, ret, or prot, same goes for druid. To fix it you will need not only to check the class, and also his talent points.

    ---------- Post added at 01:53 AM ---------- Previous post was at 01:49 AM ----------

    Originally Posted by kickmydog View Post
    Sometimes I end up targetting dead mobs, any ideas on this?
    UnitIsDead("unit")
    return: 1 = dead; nil = not dead

    Can help you

    usage:
    UnitIsDead("target") == nil

  6. #1641
    schranzDE's Avatar Private
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Frost - Boss DPS | schranzDE

    Notice:
    - Press (left)Shift = 0.5sec pause | Time to cast "Pestilence" and so on
    - Running "Apparatus of Khaz'goroth" | Trinket must be placed in the first trinket-slot (slot 13)

    Abilities
    0. - Pause - Shift for 0.5 sec
    1. - Blood Tap - dD
    2. - Apparatus of Khaz'goroth - Slot 13
    3. - Outbreak - Boss + Blood Plague < 5 sec + TROG
    4. - Pillar of Frost - Boss
    5. - Raise Dead - Unholy Strength
    6. - Plague Strike - Blood Plague < 4 sec
    7. - Howling Blast - Frost Fever < 4 sec
    8. - Obliterate - UU.FF
    9. - Obliterate - DD
    10. - Obliterate - Killing Machine
    11. - Empower Rune Weapon - dd.uu.ff
    12. - Frost Strike - RP cap
    13. - Howling Blast - Freezing Fog
    14. - Howling Blast - dd.uu + 30%HB
    15. - Obliterate - Filler
    16. - Frost Strike - Filler
    17. - Howling Blast - Filler
    18. - Horn of Winter - Filler

    >>4.2 Frost Death Knight .schranzDE 23 09 2011<<
    Last edited by schranzDE; 09-23-2011 at 08:38 AM.

  7. #1642
    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)
    Found a way to use any ability without need to pause rotation or edit macros. Add this code to top of your rotation list

    Code:
    if IsMouseButtonDown() then
    RunMacroText("/click "..GetMouseFocus():GetName())
    end
    Now you can hold down your mouse button on any ability to use it

  8. #1643
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ^^^ moonfire spam bro

  9. #1644
    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 sheuron View Post
    Found a way to use any ability without need to pause rotation or edit macros. Add this code to top of your rotation list

    Code:
    if IsMouseButtonDown() then
    RunMacroText("/click "..GetMouseFocus():GetName())
    end
    Now you can hold down your mouse button on any ability to use it

    simply fabulous

    *edit*
    great for things like rune tap, or a warlock soul swap.........
    Last edited by bu_ba_911; 09-23-2011 at 12:47 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  10. #1645
    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)
    Originally Posted by trulygangster View Post
    This is fustrating me i cant seem to fix the character stoping auto-attack upon switching targets. Anyone figured it out?
    change your ingame options "stop attack on target switch"

    and to sheuron
    good for clickers :>

    but the best would be if xelper could add an "onpressdown" function, it removes the delay from the macro variant and gives you the most flexibility for fast reactions. 2 years ago i made an autoit rotation bot and it fits best with this function and a thumbsbutton on the mouse.

    and i would appreciate if you could split the abilities.
    like: shadow_priestabilities.xml holy_priestabilities.xml etc etc...
    it kinda sucks if you make your own rotations and abilities and someone update his profile (for another spec) who hasnt your profile, so you have to copy and paste the snips of your code into the new profile.

  11. #1646
    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)
    the problem with Stampede that i've found when trying to get that thing to work is this.....

    The spellid of the Stampede while it's in your buffs id different than the spell id on wowhead.... also when you get stampede you ravage turns into Ravage! with a spell id of 81170......

    i tried just haveing 81170 always return true but not even that worked...... still going to try things, but wondering if anyone else has run into this kinda problem before
    ^0^Team Nova's PQR NCC ^0^

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

  12. #1647
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I've been sitting down for the better part of last weekend/this week trying to come up with ways as to how I can really maximize my Shadowpriest rotation, and there really is no real way to effectively clip a channeled spell unless you manually cast the spell in question. (ie. clipping Mind Flay to cast Mind Blast).

    Would it be possible, Xelper, to implement a function or something that allows us to achieve this? It would really help a lot for Shadowpriests, and I suppose for Warlocks using Drain Soul (or whatever it was called).
    Last edited by Kinky; 09-23-2011 at 05:15 AM.

  13. #1648
    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)
    if you look at the debug mode it says something like "delaying cause spell is casting blablubb..."
    now if you could add a checkbox that defines if we want to check a spell is casting or not ex. for mind blast. then we could easily uncheck the box for mindblast and it skips the part of the code which checks if we cast/channel a spell

  14. #1649
    lostinthewoodslol's Avatar Active Member The Coinmaster CoreCoins Purchaser
    Reputation
    74
    Join Date
    Aug 2011
    Posts
    222
    Thanks G/R
    12/6
    Trade Feedback
    15 (100%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Found a way to use any ability without need to pause rotation or edit macros. Add this code to top of your rotation list

    Code:
    if IsMouseButtonDown() then
    RunMacroText("/click "..GetMouseFocus():GetName())
    end
    Now you can hold down your mouse button on any ability to use it
    omfg awesome. helps me alot. rep+

  15. #1650
    trulygangster's Avatar Sergeant
    Reputation
    1
    Join Date
    Dec 2010
    Posts
    65
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ohhhh i just had a idea guys is there a way to automatically multi-dot each mob in range and make sure each of them has a dot on them? or the basis for a script that can acheive that?

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