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

User Tag List

Page 682 of 731 FirstFirst ... 182582632678679680681682683684685686 ... LastLast
Results 10,216 to 10,230 of 10955
  1. #10216
    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)
    Originally Posted by dirtydrunk View Post
    Thank you Firepong! Would it make more sense to just attempt to call Berserk whenever tiger's fury would return true? Though this could lead to Berserk not being used for a max of 30 seconds, I'm not sure how much of a DPS hit you would take. Though in a way this would make the most sense since you would always want to use Berserk immediately after Tiger's Fury.

    Could anything go wrong if you try and pop berserk every time you use Tiger's Fury?

    Obviously you could check to see if Berserk if off cooldown and then [castspellid(berserk), return true] or just [return true] if it's on cooldown. I'm just trying to think of the simplest way, not necessary the most efficient.
    Berserk Already Does that

    [BETA] PQRotation - an automated ability priority queue.
  2. #10217
    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)
    A piece of midnight humor

    Ultimate ragequit macro. Leave group when raid wipe.

    Code:
    for i=1, GetNumRaidMembers() do
      if not UnitIsDeadOrGhost("raid"..i) then break end
      if i == GetNumRaidMembers() then
        SendChatMessage("FUUU NOOBS!!!","RAID") 
        LeaveParty()
      end
    end
    Not tested YET!!
    Last edited by sheuron; 04-22-2012 at 10:04 PM.
    [ 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]

  3. #10218
    yourson's Avatar Member
    Reputation
    4
    Join Date
    Feb 2012
    Posts
    149
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    A piece of midnight humor

    Ultimate ragequit macro. Leave group when raid wipe.

    Code:
    for i=1, GetNumRaidMembers() do
      if not UnitIsDeadOrGhost("raid"..i) then break end
      if i == GetNumRaidMembers() then
        SendChatMessage("FUUU NOOBS!!!","RAID") 
        LeaveParty()
      end
    end
    This just deserved some epic reputation spam

  4. #10219
    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)
    Ok, maybe my above code isn't worth using. I was just on a dummy testing out my DPS with the above code I was using, and it locked my Druid spells up. Same thing that was happening with Monks and Boomkins. So that confirms that it IS a CastSpellByID() error that's locking up the UI, no matter what class is using it.

  5. #10220
    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 firepong View Post
    Ok, maybe my above code isn't worth using. I was just on a dummy testing out my DPS with the above code I was using, and it locked my Druid spells up. Same thing that was happening with Monks and Boomkins. So that confirms that it IS a CastSpellByID() error that's locking up the UI, no matter what class is using it.
    Try this

    Code:
    CastSpell(FindSpellBookSlotBySpellID(????),"SPELL")
    Where ???? is the SpellID you want to cast
    [ 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]

  6. #10221
    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)
    Originally Posted by sheuron View Post
    Try this

    Code:
    CastSpell(FindSpellBookSlotBySpellID(????),"SPELL")
    Where ???? is the SpellID you want to cast
    I had actually started using CastSpell(). But I didn't know about FindSpellBookSlotBySpellID(????). Was actually counting the spaces in my spellbook and using just that number. Kudos and rep to you

  7. #10222
    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)
    Updated my resto shaman healing profile so you can define your own keybinds for healing rain/lightning bolt spam. Also fixed the code so that you add the spellid of ANY spell to the init function and it will create a macro for you to cast it just drag it to a bar in game. The defaults are fire ele/earth ele/bloodlust/spiritwalkers grace/spirit link totem and elemental recall. download here

    Releasing my jewelcrafting/disenchanting profile for the new interupt style. If anyone wants me to add other professions to it let me know. download here
    Shaman resto and elemental profiles for PQRotation can be downloaded from here - https://db.tt/g2pIFrBc
    Tradeskill profile (Jewelcrafting and disenchant) download here - https://db.tt/aPpOTKJH

  8. #10223
    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 firepong View Post
    I had actually started using CastSpell(). But I didn't know about FindSpellBookSlotBySpellID(????). Was actually counting the spaces in my spellbook and using just that number. Kudos and rep to you
    The spell number on book varies every time you learn a new spell or change spec. Anyway CastSpell is not viable as main spell launcher on PQR because only can be used with current target.
    [ 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]

  9. #10224
    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)
    Originally Posted by sheuron View Post
    The spell number on book varies every time you learn a new spell or change spec. Anyway CastSpell is not viable as main spell launcher on PQR because only can be used with current target.
    Ye, that's fine with me. I only need it for Berserk and Incarnation. But trying it on Incarnation, it fails. The spell has 2 different SpellID's, and of course, it doesn't work on either one :confused: Guess I'll just stick with my repetitive spellID function above for Incarnation. Should be fine considering it's only used once every 3 minutes and it doesn't spam it much.

  10. #10225
    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)
    Wohoo, google shortener statistics got a new sexy design: http://goo.gl/rseZ0+
    [ 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]

  11. #10226
    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 sheuron View Post
    A piece of midnight humor

    Ultimate ragequit macro. Leave group when raid wipe.

    Code:
    for i=1, GetNumRaidMembers() do
      if not UnitIsDeadOrGhost("raid"..i) then break end
      if i == GetNumRaidMembers() then
        SendChatMessage("FUUU NOOBS!!!","RAID") 
        LeaveParty()
      end
    end
    Not tested YET!!
    Truly the finest thing ever crafted by human hands.

  12. #10227
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey buba, prolly a dumb question but is there a reason the monk profile (windwalker) always keeps 1 chi up?

  13. #10228
    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)
    Originally Posted by dklcfr View Post
    Hey buba, prolly a dumb question but is there a reason the monk profile (windwalker) always keeps 1 chi up?
    I think it has something to do with going into a fight as a tank and needing it for a taunt spell or something... I think I remember reading something about going into a fight with no Chi is bad for a tank lol

  14. #10229
    dklcfr's Avatar Master Sergeant
    Reputation
    26
    Join Date
    Aug 2010
    Posts
    127
    Thanks G/R
    3/4
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    that would be understandable except windwalker is the dps profile

  15. #10230
    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)
    Originally Posted by dklcfr View Post
    that would be understandable except windwalker is the dps profile
    Same might apply for DPS? More DPS output if you go into a fight with Chi than without? lol I honestly don't know. Have yet to make one and probably won't. I like finding bugs for all other classes and saving the main stuff for when Live comes out. Everyone will find the Panda bugs

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:21 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search