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

Shout-Out

User Tag List

Page 351 of 731 FirstFirst ... 251301347348349350351352353354355401451 ... LastLast
Results 5,251 to 5,265 of 10955
  1. #5251
    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)
    TO Xelper, I request to add to the title of the thread "32-Bit Only" or "x86 Only" to cure the problem of people asking why this isn't working with the x64 client.

    Also, hows the updated Firekitteh profile treating you guys? Good DPS coming out of it?

    [BETA] PQRotation - an automated ability priority queue.
  2. #5252
    ace99ro's Avatar Sergeant Major
    Reputation
    9
    Join Date
    Dec 2011
    Posts
    173
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    Hmmm ... i will rework it for tomorrow :/

    working good now ... reason it did not work for me : i was using Call of the Elements , and in your rotation was Call of Spirits just switched and works fine , tq

  3. #5253
    ishtro's Avatar Master Sergeant
    Reputation
    36
    Join Date
    Jul 2010
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ace99ro View Post
    not working for me ... it just stands there doing melee atacks and keeps putting down healing stream + windfury totem
    try removing blood fury ;]

  4. #5254
    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)
    Hey blinded, I made a few modifications to your code.

    On Blood Fury, this is what I did:

    Name: Blood Fury
    SpellID: 33697
    Delay: 0

    Code:
    local race, filename = UnitRace("Player")
    
    if race ~= Orc then
    	return false
    end
    The above checks to see if your race is Orc, if so, it will cast it as normal.

    And on Potion of the Tol'vir:

    Name Potion of the Tol'Vir
    SpellID: 0
    Delay: 0

    Code:
    local Pot = GetItemCount(58145)
    local BL = UnitBuffID("player", 2825)
    
    if Pot == nil then
    	return false
    	else
    		if BL ~= nil then
    			RunMacroText("/use Potion of the Tol'Vir") 
    	end
    end
    The above, instead of just returning true to use when Lust is active, it also checks to make sure if you have the potions in your bag. If you do not have potions in your bag, it will disregard this and just return false to not use.

    P.S. The reason for the above changes is I didn't feel like taking anything out of the rotation, just wanted to leave as is
    Last edited by firepong; 02-02-2012 at 05:56 PM.

  5. #5255
    [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 just wanted to push this profile out as soon as possible so some checks like race or if bl or tw is on are missing in this version. I had begun to add these things and if im have enough time it will be updated tomorrow, if there are any major changes that i should do pls tell me.

    Gesendet von meinem GT-I9001 mit Tapatalk

  6. #5256
    Testy9's Avatar Member
    Reputation
    2
    Join Date
    Apr 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Weird, I start to get this error alot since the WoW patch.

    Code:
    Message: [string " function pqrFunc0() local Aura = GetShapes..."]:20: attempt to compare number with nil
    Time: 02/02/12 20:03:45
    Count: 3996
    Stack: [C]: ?
    [string " function pqrFunc0() local Aura = GetShapes..."]:20: in function `?'
    [string "..."]:267: in function `PQR_NextAbility'
    [string "..."]:161: in function `PQR_CastNext'
    [string "..."]:150: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>
    
    Locals:
    This error is coming from bu-bu hpally profile. Hmmm

  7. #5257
    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 Testy9 View Post
    Weird, I start to get this error alot since the WoW patch.

    Code:
    Message: [string " function pqrFunc0() local Aura = GetShapes..."]:20: attempt to compare number with nil
    Time: 02/02/12 20:03:45
    Count: 3996
    Stack: [C]: ?
    [string " function pqrFunc0() local Aura = GetShapes..."]:20: in function `?'
    [string "..."]:267: in function `PQR_NextAbility'
    [string "..."]:161: in function `PQR_CastNext'
    [string "..."]:150: in function `PQR_ExecuteBot'
    [string "..."]:40: in function <[string "..."]:23>
    
    Locals:
    This error is coming from bu-bu hpally profile. Hmmm
    just select another aura, it means that it didn't get saved properly and you are probably in crusader aura right? if u select something else it should be fine
    ^0^Team Nova's PQR NCC ^0^

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

  8. #5258
    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 firepong View Post
    Hey blinded, I made a few modifications to your code.

    On Blood Fury, this is what I did:

    Name: Blood Fury
    SpellID: 33697
    Delay: 0

    Code:
    local race, filename = UnitRace("Player")
    
    if race ~= Orc then
    	return false
    end
    The above checks to see if your race is Orc, if so, it will cast it as normal.

    And on Potion of the Tol'vir:

    Name Potion of the Tol'Vir
    SpellID: 0
    Delay: 0

    Code:
    local Pot = GetItemCount(58145)
    local BL = UnitBuffID("player", 2825)
    
    if Pot == nil then
    	return false
    	else
    		if BL ~= nil then
    			RunMacroText("/use Potion of the Tol'Vir") 
    	end
    end
    The above, instead of just returning true to use when Lust is active, it also checks to make sure if you have the potions in your bag. If you do not have potions in your bag, it will disregard this and just return false to not use.

    P.S. The reason for the above changes is I didn't feel like taking anything out of the rotation, just wanted to leave as is
    I thought about doing something like this for potions for a while, then I thought about it and I decided I didnt want my potions used up in 5 mans.

  9. #5259
    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 kickmydog View Post
    I thought about doing something like this for potions for a while, then I thought about it and I decided I didnt want my potions used up in 5 mans.
    Can always put the Pots in the bank. No way to use them if you don't physically have them on you

  10. #5260
    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 firepong View Post
    Can always put the Pots in the bank. No way to use them if you don't physically have them on you
    You are probably better off putting a boss level check in there.

  11. #5261
    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)
    Buba, Is beacon still a work in progress?

    I updated to you're newest profile but the beacon code does nothing (Beacon - Valma Edit). I hold down alt but it never casts beacon...any ideas?

  12. #5262
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ticklets View Post
    Buba, Is beacon still a work in progress?

    I updated to you're newest profile but the beacon code does nothing (Beacon - Valma Edit). I hold down alt but it never casts beacon...any ideas?
    I think his alt modifiers are broken atm, that and denounce spam in the arena profile doesn't work. but i can't complain to much lol don't want to make buba mad now =P

  13. #5263
    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)
    Ya he is getting overloaded with questions lol, it's a great profile though, regardless of beacon issues.

  14. #5264
    lulwut's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Blinded] View Post
    So it's done, my Enhancement-Profile is almost complete.

    Changes :
    + Searing Totem has now a mod key to set a new Searing Totem even if the old one is up, so if you switch your current target replace the Searing Totem to make sure that this ( shity ) Totem will always target your target ( Mod Key : Control, CTRL )
    + No more Lua errors

    Prio for AoE


    NOTE: This AoE rotation will be an increase of your DPS when there are more then three targets around ( ADDCount > 3 ), if there are only two your DPS will decrease
    Thanks a lot for this Will be testing it out!

  15. #5265
    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 ticklets View Post
    Buba, Is beacon still a work in progress?

    I updated to you're newest profile but the beacon code does nothing (Beacon - Valma Edit). I hold down alt but it never casts beacon...any ideas?
    yea i broke it somewhere along the lines between SVN updates.... Might revert it back to Valma's original code and rebuilt it all back up.... It may have something to do with the range checks i implemented... going to have to test it. a simple fix is just putting the Beacon left alt code back in urself until i can track the problem down and update the SVN

    Originally Posted by travis2861 View Post
    I think his alt modifiers are broken atm, that and denounce spam in the arena profile doesn't work. but i can't complain to much lol don't want to make buba mad now =P
    lol have u tried adding it into the rotation? i think by default i have that out (for whatever reason i can't remember why)
    ^0^Team Nova's PQR NCC ^0^

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

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 05:09 PM. 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