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

Shout-Out

User Tag List

Page 624 of 731 FirstFirst ... 124524574620621622623624625626627628674724 ... LastLast
Results 9,346 to 9,360 of 10955
  1. #9346
    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
    Experimental function

    Show the number of enemy targets in front

    Code:
    function TargetsInFront() 
      if not tifTimer or GetTime() - tifTimer > 1 then
        tifTimer = GetTime() 
        if UnitCanAttack("player","target") then 
          local n, mytarget = 0, UnitGUID("target") 
          repeat
          TargetNearestEnemy()
          n = n + 1
          if n > 5 then break end 
          until mytarget == UnitGUID("target") 
          return n
        end
      end
    end
    
    print(TargetsInFront())
    interesting... i was thinking about doing something like this before.... but your way is much cleaner lol....

    i wonder if doing this with target nearest friend would be as accurate >.>
    ^0^Team Nova's PQR NCC ^0^

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

    [BETA] PQRotation - an automated ability priority queue.
  2. #9347
    merrikh's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by gamingjunkie View Post
    Is there anyway to change which chat tab the chat messages display in?

    And bu_ba_911 when I try to download all of your updated profiles inside of PQR, the monk rotation gives me an error and doesn't download.

    One final thing, are there any profiles that can be used for leveling from 1-85. I love the Nova and Sheuron's profiles but I get an error for not being level 85 and they stop working.
    Go into the ability editor and go to each ability. Put each "skip unknown" to false. Ignore the initialize, special event and thinks like that. As well as remove the arcane torrent. Find that messes It up as well. By doing this iv been using sheurons holy priest profile from lvl 20 currently 48

  3. #9348
    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
    Experimental function

    Show the number of enemy targets in front

    Code:
    function TargetsInFront() 
      if not tifTimer or GetTime() - tifTimer > 1 then
        tifTimer = GetTime() 
        if UnitCanAttack("player","target") then 
          local n, mytarget = 0, UnitGUID("target") 
          repeat
          TargetNearestEnemy()
          n = n + 1
          if n > 5 then break end 
          until mytarget == UnitGUID("target") 
          return n
        end
      end
    end
    
    print(TargetsInFront())
    This is a great idea. I can't wait to use it with some of the new hunter abilities in MoP. Do you use code like this for your Word of Glory?
    Last edited by kickmydog; 04-09-2012 at 11:33 AM.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  4. #9349
    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 kickmydog View Post
    This is a great idea. I can't wait to use it with some of the new hunter abilities in MoP.
    yea i'm already thinking of way to incorporating it into auto AoE Mode switching and stuff lol...

    leave it on its 1 seconds timer (not as overkill as i thought it was) to refresh count and target dies/switch

    gonna play around with target nearest player as well

    *edit*
    Moved some things around in SVN, Updated Mass Download Links in the text file in signature, I Recommend using it again lol
    Last edited by bu_ba_911; 04-09-2012 at 12:01 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  5. #9350
    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)
    Anyone know what a good PVP hunter profile is?

  6. #9351
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Anyone know what a good PVP hunter profile is?
    Kickmydog has them all.

    Edit: Also grats KMD on contributor! finally

  7. #9352
    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 Xelper View Post
    Anyone know what a good PVP hunter profile is?
    My pvp profiles are adequate, I just do not PVP enough or have enough coding know how to improve them.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  8. #9353
    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 sheuron View Post
    Experimental function

    Show the number of enemy targets in front

    Code:
    function TargetsInFront() 
      if not tifTimer or GetTime() - tifTimer > 1 then
        tifTimer = GetTime() 
        if UnitCanAttack("player","target") then 
          local n, mytarget = 0, UnitGUID("target") 
          repeat
          TargetNearestEnemy()
          n = n + 1
          if n > 5 then break end 
          until mytarget == UnitGUID("target") 
          return n
        end
      end
    end
    
    print(TargetsInFront())
    thats cool, but targets which are short behind you will also be effected by "targetnearesenemy"

  9. #9354
    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 cokx View Post
    thats cool, but targets which are short behind you will also be effected by "targetnearesenemy"
    I saw that in tests too.... still great for aoe (spinning crane kick) lol

    Sent from my Xoom using Tapatalk
    ^0^Team Nova's PQR NCC ^0^

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

  10. #9355
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Grats Kickmydog on contributor!

  11. #9356
    royoneal213's Avatar Sergeant
    Reputation
    7
    Join Date
    Mar 2012
    Posts
    49
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    So, today during a random Dungeon, MY PQR Randomly quit working. I exited wow, Restarted, tested it on a dummy and it worked. Then, when I zoned into another Dungeon, it quit working again. I tried updating, but to no avail. Anyone else having this issue?

    Edit: Before Updating, it would still say Combat PvE Enabled, but after update, pressing the rotation enabler (Default Alt+X, which is still my binding) no longer shows on my UI as rotation enabled. :/
    Last edited by royoneal213; 04-09-2012 at 03:23 PM.

  12. #9357
    MastaRage's Avatar Sergeant Major
    Reputation
    56
    Join Date
    Dec 2011
    Posts
    170
    Thanks G/R
    4/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by royoneal213 View Post
    So, today during a random Dungeon, MY PQR Randomly quit working. I exited wow, Restarted, tested it on a dummy and it worked. Then, when I zoned into another Dungeon, it quit working again. I tried updating, but to no avail. Anyone else having this issue?
    Who's profile were you using?

  13. #9358
    royoneal213's Avatar Sergeant
    Reputation
    7
    Join Date
    Mar 2012
    Posts
    49
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by MastaRage View Post
    Who's profile were you using?
    Combat PvE [7/31/3] (xmComb). I also tried another combat profile, but it didn't work either.

    Edit:The weird thing is it was working fine for awhile, then it randomly stopped working. I tried my old combat profie, didn't work, tried a sub profile, didn't work. PQR is still attatching though, because when I close out it says PQR Unloaded.

    Edit2: Mmkay, well it's working now, but It doesn't show me when it's enabled / disabled when i turn profiles on or off. It's a bit annoying, but at least it's functional. Please let me know if anyone knows how to solve this. I already made sure the "display messages in chat" checkbox is selected.

    Last Edit! (I Swear!): Okay, so it works on other toons, just not my rogue. Maybe the settings got F'd up some how. I manually opened up the XML and made sure the value for show chat messages was on True, and it was. So maybe I should just delete my rogue folder and re dl the profiles? I can't seem to find a text file with individual settings saved, and idk why else it would mess up on my rogue for all of his profiles but work fine on other characters. Again, thanks for any help in advance.
    Last edited by royoneal213; 04-09-2012 at 04:19 PM.

  14. #9359
    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)
    MKAY..... I need a brave tester to let me know if the new Pally Swap Rotation feature is working for them as well as it's working for me in my small tests

    Here's what's expected to happen:
    1) When you enter a 5 man dungeon, raid, bg or arena, it should automatically switch to the appropriately named Rotation.
    2) Nothing special or different happens after the switch (haven't gotten that far yet)
    3) You should still be able to heal and everything that previous releases have done for you
    4) Make it much easier for the average User to customize once I lay out the ground work from them to use as a template
    --) Use Holy Master as the base Profile. Any of the named rotations (ie Party, Raid, etc) will work, but Master is as it sounds, Master they all point back to it

    Download Links:
    http://dl.dropbox.com/u/31448826/Nov..._Abilities.xml
    http://dl.dropbox.com/u/31448826/Nov..._Rotations.xml

    *side note*
    Also thought about what would be the most useful information I could have PQR_Interface display....
    And decided it was current Beacon Target
    Coded that in, so if you wouldn't mind verifying that is working to that would be swell
    *edit*
    this is NOT on my SVN anywhere so don't bother looking lol... this is a short 1 day event before I remove it from my Public Dropbox folder

    **edit**
    Oh yea... to the one person who appreciated it, here's the finished product of my UI lol (Finished the custom UnitFrame Covering)
    http://i1257.photobucket.com/albums/...shed_DK_UI.jpg
    Last edited by bu_ba_911; 04-09-2012 at 04:39 PM.
    ^0^Team Nova's PQR NCC ^0^

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

  15. #9360
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Throw your custom UI on your dropbox/google code. I'll use it with my HUD and Scrolling text

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 11:30 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