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

Shout-Out

User Tag List

Page 313 of 731 FirstFirst ... 213263309310311312313314315316317363413 ... LastLast
Results 4,681 to 4,695 of 10955
  1. #4681
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Kickmydog your web hosting site is not allowing downloads.

    http://www.filesonic.com/file/ZV45e3...an_21_2012.rar

    Scratch this, I noticed your new sv profile upload on the other site for patch has the pvp profiles I need anyways.
    Last edited by Meatglue; 01-26-2012 at 04:44 AM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #4682
    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 onya View Post
    this works on a radius around the target not jumps like chain heal, it's much simpler than chain heal was :P

    you can configure the hp thresholds for the target and the secondary targets, as well as well as the radius distance and the number of secondary targets that need to be in range via variables at the top of the library code.

    i based my reasoning on the druid spell without actually reading how hr works (d'oh!) the druid spell has a direct heal component so you'd want to cast it on the person with the lowest hp who has enough people in range. i guess for hr you'd want to save the number of people in range for every possible target and then cast it on the person with the highest number of secondaries. anyway hope it gave you something to start with
    Well I guess when I'm done with work tomorrow I get to completely dissect two things of code lol. Thank you, sounds like it should work
    ^0^Team Nova's PQR NCC ^0^

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

  3. #4683
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bu_ba_911 View Post
    Well I guess when I'm done with work tomorrow I get to completely dissect two things of code lol. Thank you, sounds like it should work
    All the more time for prot pvp war and pve/pvp unholy!

  4. #4684
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here's a version of the findGoodTarget function that casts on the person with the most secondary targets in range

    Code:
    function findGoodTarget()
       if table.maxn(hrtargets) ~=0 and table.maxn(hrsecondary) >= hrsecondarytargets then   
          table.sort(hrtargets, sortDefHealth)  
          table.sort(hrsecondary, sortDefHealth)
          local mostsec = -1
          for x = 1, table.maxn(hrtargets) do
              local inrange = 0
              for y = 1, table.maxn(hrsecondary) do
                if IsInRange(hrtargets[x],hrsecondary[y]) and hrtargets[x] ~= hrsecondary[y] then inrange = inrange + 1 end
              end
              if inrange > mostsec then
                 mostsec = inrange
                 local besttarget = member[hrtargets[x]].name 
              end          
          end
          if mostsec > hrsecondarytargets  then return besttarget end
       end
     end 
    end

  5. #4685
    Meatglue's Avatar Active Member
    Reputation
    16
    Join Date
    Aug 2011
    Posts
    248
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Onya any interest in making a pvp resto shammy profile?

  6. #4686
    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 onya View Post
    here's a version of the findGoodTarget function that casts on the person with the most secondary targets in range

    Code:
    function findGoodTarget()
       if table.maxn(hrtargets) ~=0 and table.maxn(hrsecondary) >= hrsecondarytargets then   
          table.sort(hrtargets, sortDefHealth)  
          table.sort(hrsecondary, sortDefHealth)
          local mostsec = -1
          for x = 1, table.maxn(hrtargets) do
              local inrange = 0
              for y = 1, table.maxn(hrsecondary) do
                if IsInRange(hrtargets[x],hrsecondary[y]) and hrtargets[x] ~= hrsecondary[y] then inrange = inrange + 1 end
              end
              if inrange > mostsec then
                 mostsec = inrange
                 local besttarget = member[hrtargets[x]].name 
              end          
          end
          if mostsec > hrsecondarytargets  then return besttarget end
       end
     end 
    end
    Now see that's why the person who creates something always understands it better haha. Would have taken me much longer to figure out where the key part of the code I wanted to change was haha ty :-)
    ^0^Team Nova's PQR NCC ^0^

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

  7. #4687
    [Blinded]'s Avatar Contributor
    Reputation
    88
    Join Date
    Nov 2009
    Posts
    177
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I found an answer for my previous question my self

    So if i use "PQR_WriteToChat( <msg> ) the message will appear two times in my chat, i thing this is a bug and should be reported
    Last edited by [Blinded]; 01-26-2012 at 05:16 AM.

  8. #4688
    onya's Avatar Member
    Reputation
    67
    Join Date
    May 2008
    Posts
    152
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meatglue View Post
    Onya any interest in making a pvp resto shammy profile?
    give me ideas and i can implement them, i don't pvp.

  9. #4689
    Aquaplex's Avatar Member
    Reputation
    1
    Join Date
    May 2007
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is the holy priest profile supposed to spam heal non-stop once in combat? It keeps casting it even when everyone is at full health...

  10. #4690
    Kezzin86's Avatar Member
    Reputation
    2
    Join Date
    Jul 2011
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by onya View Post
    give me ideas and i can implement them, i don't pvp.
    Here's a couple things off the top of my head. Feel free to correct them or add to the list.

    Cleanse specific player debuffs, and ignore others.. like hungering cold and unstable affliction.
    Purge innervate, pally wings, etc.
    Stoneclaw + earth shield self when being focused, earth shield partner when being ignored.
    Interrupt heals.
    Hex focus target if main target is near death.
    Ground certain key abilities like polymorph, cyclone, etc.
    Tremor all applicable types of cc.

  11. #4691
    dookieface's Avatar Member
    Reputation
    1
    Join Date
    Jun 2009
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    first of all i have to say WOW this mod is to insane..always topping dps on my frost dk.pulled 65k on maddness in lfr lastnight.

    rep+5 my friend..

    is there a working/updated unholy spec for pve?
    thanks

  12. #4692
    couky's Avatar Corporal
    Reputation
    2
    Join Date
    Jan 2012
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Meatglue View Post
    Kickmydog your web hosting site is not allowing downloads.

    &#68;ownlo&#97;d&#32;&#32;for&#32;free&#32;on&#32;&#70;ilesoni&#99;&#46;&#99; om

    Scratch this, I noticed your new sv profile upload on the other site for patch has the pvp profiles I need anyways.
    Can't download it
    How can I donwload with sVN please ?

  13. #4693
    Hoblerhans's Avatar Member
    Reputation
    9
    Join Date
    Dec 2010
    Posts
    64
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Sheepmoon View Post
    Thats kinda frustrating to read since I have posted 2 versions of my disc pve profile now. Kinda get the feeling profiles just get lost in the mess here, probably no point uploading them if people don't see them and use them.
    Nooooooo!

    Let me say this: I am using this tool since page 10 (or so...) and i appreciate the hard work and time all the coders and xelper put in this little treasure chest.
    i have to admit I am nothing but a lazy leecher but u guys do an awesome work and resignating in front of us lazy boys will bring this project down (hopefully the sense of this line of words is clear...i am not quite sure about my language qualities^^)

    So PLS upload ur work (maybe write a link in these little lines under ur comments...damn it i don´t find the right word...).

    Btw: is it possible to convert averys ret profile into a prot profile? xelpers one is pretty basic and i would prefer if deff cds would be automated too..

    God...by rereading this stuff I realise how bad my english grammar has become^^

  14. #4694
    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 Hoblerhans View Post
    Nooooooo!

    Let me say this: I am using this tool since page 10 (or so...) and i appreciate the hard work and time all the coders and xelper put in this little treasure chest.
    i have to admit I am nothing but a lazy leecher but u guys do an awesome work and resignating in front of us lazy boys will bring this project down (hopefully the sense of this line of words is clear...i am not quite sure about my language qualities^^)

    So PLS upload ur work (maybe write a link in these little lines under ur comments...damn it i don´t find the right word...).

    Btw: is it possible to convert averys ret profile into a prot profile? xelpers one is pretty basic and i would prefer if deff cds would be automated too..

    God...by rereading this stuff I realise how bad my english grammar has become^^
    Lol yes, if you are s profile writer, maybe add it to your signature :-)
    ^0^Team Nova's PQR NCC ^0^

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

  15. #4695
    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)

    Feral DPS 4.3 Profile

    If anyone wants it, here's my updated FireKitteh profile with 4p T13. If you have a 2p but no 4p, just remove the Ravage! from the rotation.

    Profiles.rar

    It's not perfect. If you feral charge in, the pops Ravage!, and usually, before the rotation ever uses it, it pops Tiger's Fury and it wastes the charge Ravage!. I'll code something in as soon as I figure out how I'm going to do it

    Also, it could possibly be better. I just took FireKitteh's profile and like I said, added in support for 2p and 4p bonuses, and made a couple subtle changes here and there.
    Last edited by firepong; 01-26-2012 at 11:46 AM. Reason: add title

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 © 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