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

Shout-Out

User Tag List

Page 623 of 731 FirstFirst ... 123523573619620621622623624625626627673723 ... LastLast
Results 9,331 to 9,345 of 10955
  1. #9331
    AtomX's Avatar Active Member
    Reputation
    19
    Join Date
    Nov 2007
    Posts
    196
    Thanks G/R
    2/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SysMunky View Post
    I too would love to see how the whole Noblegarden rotation would work. I thought perhaps simply inserting
    Code:
    local gotloot = GetNumLootItems()
    local herb = { "Whiptail", "HeartBlossom", "Twilight Jasmine", "Brightly Colored Egg", "Azshara's Veil",  "Cinderbloom", "Stormvine" }
    
    if GetUnitSpeed("player") == 0  
    and not UnitCastingInfo("player") 
    and gotloot == 0
    then for _,v in ipairs(herb) do InteractUnit(v) end end
    
    if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end
    and
    Code:
    local egg = GetItemInfo(45072)
    local gotloot = GetNumLootItems()
    
    -- Auto open eggs
    if GetItemCount(45072) > 0 then UseItemByName(egg) end
    
    -- Auto use basket for extra run speed
    --if GetInventoryItemCooldown("player",17) == 0 then UseInventoryItem(17) end
    
    -- Auto pick closer eggs
    if GetUnitSpeed("player") == 0 and not UnitCastingInfo("player") and gotloot == 0
    then InteractUnit(egg) end
    
    -- Auto loot
    if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end
    as abilities and then setting up a rotation including both would be what I need, but i am most definately misssing something, and I have not come to understand how to make this work properly as of yet. I am slowly working my way through all the pages to find Sheuron's herbalism profile, which I suspect might be the key to my issue. If there is someone that can help me figure it out, or post one, I will be forever thankful!
    Go into the ability editor, and open the correct rotation, then just add that code to the first ability in that rotation as it would appear in your rotation editor.

    [BETA] PQRotation - an automated ability priority queue.
  2. #9332
    SysMunky's Avatar Member
    Reputation
    2
    Join Date
    Mar 2011
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I think I got something that works. And, simply doing that bit has made the way this functions a bit easier to understand what is going into making profiles (definitely rep people that make awesome combat profiles, because its no cakewalk from what i can tell). Massive thanks to everyone, and for those who look at my rotation (that is to say, the one I set up for people using Sheuron's generously shared code) send some rep to him, since I jsut pasted it in. be sure to runa round and stop near any eggs. Happy Noblegarden!

  3. #9333
    sportplayer2k's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there anyway to add delay on the auto interrupter, seems kicking at 0.1 is to obvious

  4. #9334
    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 sportplayer2k View Post
    is there anyway to add delay on the auto interrupter, seems kicking at 0.1 is to obvious
    Ability Editor -> Class: Interrupt -> Profile: Xelper -> 'Variables: Interrupt'

    Change PQR_InterruptPercent to a higher number.

    Profit.

  5. #9335
    sportplayer2k's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thx alto kaolla, also i love your profile!!!

  6. #9336
    sportplayer2k's Avatar Master Sergeant
    Reputation
    8
    Join Date
    Feb 2012
    Posts
    75
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Ability Editor -> Class: Interrupt -> Profile: Xelper -> 'Variables: Interrupt'

    Change PQR_InterruptPercent to a higher number.

    Profit.
    +rep for great dk profile and fast help
    Last edited by sportplayer2k; 04-09-2012 at 03:53 AM.

  7. #9337
    FrostDKsFTW's Avatar Sergeant Major
    Reputation
    20
    Join Date
    Nov 2011
    Posts
    169
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Dispel was bug, was trying to dispel same target again and again, thats the reason everybody dieing. Was fixied already.

    Changed greater healing value, added cancel lightning bolt on lowhp and fixed a weird bug happend when trying to calculate chain heal distance and players leave party or raid.
    I love you! Check your paypal for my long overdue donation It's not much but I hope it helps.

  8. #9338
    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)
    Guys, you who are raiding HCmode DS and do it as a bear-tank. What profile here do you use? I just got my computer back and installed PQR and I miss some druidprofiles like Xelpers Xeurons Googlebee's. Using Gabbz now which works awesome, but Im just curious of what other people use ^^

  9. #9339
    Dominium's Avatar Contributor
    Reputation
    124
    Join Date
    Dec 2011
    Posts
    389
    Thanks G/R
    0/1
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Help! Mentally's shadow rotations aren't working on my level 82 spriest. I put all the stuff into the data/profile folders, everything seems to load nicely but then it doesn't cast anything! Doesn't matter if I am in combat or out of combat.

    Thanks in advance

  10. #9340
    Familiar's Avatar Member
    Reputation
    1
    Join Date
    Mar 2011
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What Resto Shaman's profile is the best?

  11. #9341
    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 Familiar View Post
    What Resto Shaman's profile is the best?
    Personally i still think onya's resto shaman profile is great
    I use all the tiem for raids still works like a charm.

  12. #9342
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by saga3180 View Post
    Personally i still think onya's resto shaman profile is great
    I use all the tiem for raids still works like a charm.
    Same here, I plan to try Sheuron's some more, but currently only been using Onya

    Sugestion for Sheuron, for your resto shaman. I saw on your druid one there is an option to target or mouse over a player and it will focus heals on that person and ignore others.

    Would it be possible to add that into the Shaman, to be able to be a tank healer.

    Thanks

  13. #9343
    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)
    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())
    Last edited by sheuron; 04-09-2012 at 10:24 AM.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  14. #9344
    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 abndrew82 View Post
    Same here, I plan to try Sheuron's some more, but currently only been using Onya

    Sugestion for Sheuron, for your resto shaman. I saw on your druid one there is an option to target or mouse over a player and it will focus heals on that person and ignore others.

    Would it be possible to add that into the Shaman, to be able to be a tank healer.

    Thanks
    you should try the profile before requesting things, what you talking about is coded on the healing engine and works on all healing profiles.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  15. #9345
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    you should try the profile before requesting things, what you talking about is coded on the healing engine and works on all healing profiles.
    Ahh ok, I had tried it, but didnt get in depth as I saw it in the notes of the druid one but not in the notes of the shaman one.

    Kinda glad I didnt just jump in though, as that may have hurt if I targeted someone and stopped healing my group as I didnt know it was coded that way.

    Will download and give the shaman one another go tonight in a HoT, before guild raids this week.

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 03:14 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