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

Shout-Out

User Tag List

Page 470 of 731 FirstFirst ... 370420466467468469470471472473474520570 ... LastLast
Results 7,036 to 7,050 of 10955
  1. #7036
    js1974's Avatar Member
    Reputation
    27
    Join Date
    Jan 2008
    Posts
    199
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Well, obviously, you want it to be PQ_HolyPower ~= 3 and not PQ_HolyPower == 3. With the latter set, it will only cast Judgement when he HAS 3 Holy Power. With what I said to change it to, it will then not cast unless the player has LESS than 3 holy power.

    And ye, what Bubba said, you had the Return true and Return false backwards
    I certainly appreciate your help with this however what I'm looking for is a way to make it so when Zealotry is active it does not judge at all, I started out with testing so if you have 3 HoPo or DP it will not judge which is a move in the right direction but what It really needs to do is just not judge if zealotry buff is active so that is what I'm currently working on.


    Also has anyone run into an issue where on one profile focus target attacking will work but others it will not? Using the same exact code?

    Code:
    if IsSpellInRange(GetSpellInfo(20217), "target") == 1 then
      if PQ_HolyPower ~= 3 or PQ_Buffs[PQ_DivinePurpose].hasBuff or PQ_Buffs[PQ_Zealotry].hasBuff then
    	return false
      else
                      return true
      end
    end
    This makes it so it just never fires judgement at all.
    Last edited by js1974; 03-05-2012 at 04:22 AM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #7037
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    BTW do anyone know how could we calculate dot duration with a given haste rating?So we could do more accurate logic of dot casting. I.E. targettimetodie >= dotduration \ 2 -> cast this damn dot it will do enought damage.
    MEDVED+VODKA+BALALAYKA

  3. #7038
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by js1974 View Post
    I certainly appreciate your help with this however what I'm looking for is a way to make it so when Zealotry is active it does not judge at all, I started out with testing so if you have 3 HoPo or DP it will not judge which is a move in the right direction but what It really needs to do is just not judge if zealotry buff is active so that is what I'm currently working on.


    Also has anyone run into an issue where on one profile focus target attacking will work but others it will not? Using the same exact code?

    Code:
    if IsSpellInRange(GetSpellInfo(20217), "target") == 1 then
      if PQ_HolyPower ~= 3 or PQ_Buffs[PQ_DivinePurpose].hasBuff or PQ_Buffs[PQ_Zealotry].hasBuff then
    	return false
      else
                      return true
      end
    end
    This makes it so it just never fires judgement at all.
    Do you know what is funny? This code checks for ... BoK O.o 20217 - BoK's spellid

    And you miss logic.From what you wrote here you will cast spell only if your holypower == 3 and you have no buffs :/ change ~= to == and it will work fine.

    Always yours, David Blaine, and my street magic >.<

    EDIT: Oh,and BTW,this is better:
    Code:
    if not PQ_HolyPower == 3 or not PQ_Buffs[PQ_DivinePurpose].hasBuff or not PQ_Buffs[PQ_Zealotry].hasBuff then
         return true
    end
    Last edited by Valma; 03-05-2012 at 04:38 AM.
    MEDVED+VODKA+BALALAYKA

  4. #7039
    happydado's Avatar Active Member
    Reputation
    20
    Join Date
    Feb 2011
    Posts
    158
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi guys i have 1 question for all.
    There are some way for say to use 1 spell only is in range on 3 and only if the target is in my face and no back to me?
    For ex. i need this for cone of cold and dragon breath.
    Tnx for help.

  5. #7040
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Valma: I've been looking at something like this myself. I have some reasearch on it at home, I'll pass it over to you once I'm back infront of a computer.

    Sent from my Android Phone.

  6. #7041
    ziggar's Avatar Active Member CoreCoins Purchaser
    Reputation
    67
    Join Date
    Jul 2008
    Posts
    324
    Thanks G/R
    51/43
    Trade Feedback
    5 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks hehe was just curious about the possibility , cheers!
    Originally Posted by Valma View Post
    yes,why not?You can add it inside of test() code right before you send return true.Will have the same effect :/

  7. #7042
    bjol's Avatar Corporal
    Reputation
    6
    Join Date
    Jan 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can I tell this program to do Y if X happens? Example: Enemy trinkets, program automatically uses Blind(rogue ability). Is this possible? Is there a hack that can do this?

  8. #7043
    Valma's Avatar Contributor
    Reputation
    152
    Join Date
    Nov 2011
    Posts
    209
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bjol View Post
    Can I tell this program to do Y if X happens? Example: Enemy trinkets, program automatically uses Blind(rogue ability). Is this possible? Is there a hack that can do this?
    Ye,you can for sure.Plug in your mic and shout as loud as you can "OH MAGIC BOX DO WHAT I WANT!!!"

    And now seriosly - yes its possible but you will need to code a bit by yourself to do this.
    MEDVED+VODKA+BALALAYKA

  9. #7044
    Shayden85's Avatar Active Member
    Reputation
    64
    Join Date
    Mar 2008
    Posts
    204
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried 3-4-2012_TEST_Bubba_Warrior_PvP and it seems to spam rend even when the target have a improved rend on him so the cc stops there until it can put rend on again.

  10. #7045
    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 Shayden85 View Post
    I tried 3-4-2012_TEST_Bubba_Warrior_PvP and it seems to spam rend even when the target have a improved rend on him so the cc stops there until it can put rend on again.
    thanks for feedback, i'll look into that..... I didn't even know improved rend existed >.>

    *edit*
    Improved Rend was taken out of the game back in Cataclysm? Is there something I'm missing?
    Last edited by bu_ba_911; 03-05-2012 at 08:54 AM.
    ^0^Team Nova's PQR NCC ^0^

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

  11. #7046
    ticklets's Avatar Member
    Reputation
    51
    Join Date
    Jun 2009
    Posts
    88
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    I think someone else had a similar issue, I'll look into it and see if I can figure out what's going on.
    Hey Boss, i'm experiencing it also.

    I'll look through your code to see if I can find the issue.

    Cheers.

  12. #7047
    fireman605's Avatar Member
    Reputation
    7
    Join Date
    Apr 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by bjol View Post
    Can I tell this program to do Y if X happens? Example: Enemy trinkets, program automatically uses Blind(rogue ability). Is this possible? Is there a hack that can do this?
    you would probably only want it to do it on your focus target or any other arena target would be a waste of a blind if your dps target trinketed your kidney or something and the program blinded him

  13. #7048
    Shayden85's Avatar Active Member
    Reputation
    64
    Join Date
    Mar 2008
    Posts
    204
    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
    thanks for feedback, i'll look into that..... I didn't even know improved rend existed >.>

    *edit*
    Improved Rend was taken out of the game back in Cataclysm? Is there something I'm missing?
    Gonna play some pvp and see whats causing it, thought it was rend, ill be back laters =)

  14. #7049
    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 Shayden85 View Post
    Gonna play some pvp and see whats causing it, thought it was rend, ill be back laters =)
    My notes for the profile are a little outdate, I need to remove all unneeded abilities from the list, and update notes. Did you update the RunMacroText in ability Spell Reflect at the very bottom of the Ability list? I consolidated all 5 spell reflect/disarm spells into 2 abilities and never updated notes telling you where to make the weapon/shield changes again
    ^0^Team Nova's PQR NCC ^0^

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

  15. #7050
    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 cokx View Post
    Ok i have fixed it. here and in the old thread is the new version.
    sry was just one lil mistake by me :>
    Cokx_Pala_PVP_04032012_fixed.rar
    Is there no need to have a seperate arena/bg profile for the spells like LoH in arena? Also, haven't tested or checked the cleanse code but in previous version it did not seem to remove fears very often or at all. It may be that UA is up I would have to keep checking. Maybe you can convince me it's fine so I won't worry.
    Last edited by Meatglue; 03-05-2012 at 11:53 AM.

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 10:57 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