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

Shout-Out

User Tag List

Page 87 of 731 FirstFirst ... 37838485868788899091137187587 ... LastLast
Results 1,291 to 1,305 of 10955
  1. #1291
    paveley's Avatar Member
    Reputation
    4
    Join Date
    May 2010
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sheuron your holy profile is godlike, i have a question tho...how do you do at Chimearon ? =P

    [BETA] PQRotation - an automated ability priority queue.
  2. #1292
    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 i just had to restart wow

  3. #1293
    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)
    Originally Posted by paveley View Post
    Sheuron your holy profile is godlike, i have a question tho...how do you do at Chimearon ? =P
    I usualy disable rotation on trash before chimaeron to warm up.

    I think i found the way to save some mana on raids. replace Holy: Renew with this code:

    Code:
    local mytarget = 100 * UnitHealth("target") / UnitHealthMax("target")
    
    if mytarget < 95 
    and UnitBuffID("target", 139) == nil 
    and (UnitGroupRolesAssigned("target") == "TANK" or UnitBuffID("player", 81206))
    then return true end
    Will only use renew if target is tank or Chakra Sanctuary is active

  4. #1294
    snippetsr's Avatar Member
    Reputation
    1
    Join Date
    Aug 2011
    Posts
    71
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Lofty View Post
    Does anyone have a PVP rotation for feral they wouldn't mind sharing?

    Gave the PVE one a go, and altho it works, would love one targeted for just PVP.
    Would be lovely if anyone could share

  5. #1295
    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)
    If only there was a way to cast Hunters mark on targets that have been switched to itll cast it on the first target you select but when you select another it just keeps on with the rotation not casting it again.

  6. #1296
    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 trulygangster View Post
    If only there was a way to cast Hunters mark on targets that have been switched to itll cast it on the first target you select but when you select another it just keeps on with the rotation not casting it again.
    That's odd mine will cast upon changing targets. Check teh hunter's mark "delay".

  7. #1297
    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)
    Huh..The delay is 0 idk..But when i switch targets it starts as if hunters mark isnt even there and goes on casting everysingle other spell lol

  8. #1298
    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 CrysisMK2 View Post
    Using
    Code:
    /startattack
    in the macro section of your scripts is crude and causes the player to automatically target and start attacking the next nearest creature, meaning you have to constantly disable and re-enable. Better form would be to use this:
    Code:
    if (Conditions for an attack) then
         RunMacroText("/startattack")
         return true
    end
    Please take this into consideration. I use it in all my profiles.
    The actions section is only executed if the code does return true and all conditions for casting the ability are met. It is executed via RunMacroText... Am I missing something?

  9. #1299
    frII's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    86
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sheuron
    The bot still useing by it self the trinket.
    In last update u added it the rotation editor,i've removed it but PRQ still useing it.Tell me please,how to disable it?

  10. #1300
    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)
    Originally Posted by frII View Post
    sheuron
    The bot still useing by it self the trinket.
    In last update u added it the rotation editor,i've removed it but PRQ still useing it.Tell me please,how to disable it?
    Which rotation?

  11. #1301
    CryptoCombat's Avatar Contributor #define ME 0x1337 CoreCoins Purchaser
    Reputation
    194
    Join Date
    Jan 2009
    Posts
    473
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    The actions section is only executed if the code does return true and all conditions for casting the ability are met. It is executed via RunMacroText... Am I missing something?
    I'm aware. The reason I say that is: when you use
    Code:
    /startattack
    in an always true ability, it causes you to spam attack everything in sight, which defeats the purpose of a rotation bot, and is highly annoying. Using it inside a conditional means it's not going to go 'rambo'. So while the actions in essence does the same thing, that trick keeps people's minds on putting it in abilities with conditionals. Savvy?

  12. #1302
    Luciferozzy's Avatar Member
    Reputation
    2
    Join Date
    Apr 2011
    Posts
    81
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    For druids

    Is it posible to cast Lifebloom on focus and recast it if its not 3 stack or 3 sec left on it.
    and when you are in treeoflife form it should cast on every body ?

  13. #1303
    KuRIoS's Avatar Admin
    Authenticator enabled
    Reputation
    2984
    Join Date
    Apr 2006
    Posts
    9,811
    Thanks G/R
    353/298
    Trade Feedback
    9 (100%)
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)
    Originally Posted by Ninjaderp View Post
    Why is r.u.n.e censored here?
    Sorry this was my bad - some people were trying to do some stuff that we didn't want and I had to censor some stuff, unfortunately I messed up and censored rune instead of the sentence that should have been censored - in which rune was part of.
    It should be fixed now, sorry for ANY INCONVENIENCE THIS HAVE CAUSED... PURELY MY FAULT

    ON TOPIC: THIS thread is awesome - The members from the OwnedCore community is really working together and helping eachother out. I have gone through some of the last pages and added rep to some of you that are helping as that is what we really want to see and I hope we will see you in the shoutbawx soon. Great tool xelper 35 rep from me.

  14. #1304
    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 trulygangster View Post
    Huh..The delay is 0 idk..But when i switch targets it starts as if hunters mark isnt even there and goes on casting everysingle other spell lol
    Is hunter's mark high up in the rotation list? Are you MM with marked for death, because it will not put up hunters mark if marked for death procs.

    ---------- Post added at 12:03 PM ---------- Previous post was at 12:00 PM ----------

    Any suggestion on how to code a range check for pets. Basically I want to bot to skip using kill command if the pet is not in range of a target. When I use the current BM rotation in pvp, it someone sticks and just attempts to use kill command while the pet is chasing a target, but the pet is not in range so kill command doesn't go off.
    Xelper do you have any ideas on this one?

  15. #1305
    CrazyCactuaR's Avatar Contributor
    Reputation
    84
    Join Date
    Sep 2008
    Posts
    201
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Is hunter's mark high up in the rotation list? Are you MM with marked for death, because it will not put up hunters mark if marked for death procs.

    ---------- Post added at 12:03 PM ---------- Previous post was at 12:00 PM ----------



    Xelper do you have any ideas on this one?
    If you can, do a range check of Growl, Kill Command does not have a check. So if Growl is in range, do kc.
    (╯°□°)╯︵┻━┻ ლ(ಠ益ಠლ

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 01:33 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