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

User Tag List

Page 396 of 731 FirstFirst ... 296346392393394395396397398399400446496 ... LastLast
Results 5,926 to 5,940 of 10955
  1. #5926
    merrikh's Avatar Master Sergeant
    Reputation
    6
    Join Date
    Dec 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey sheuron or any1 really is there a way to add to ur rogue sub pvp file to use snd and recup when ur stealthed and have a target. because most of the time i have a target and if i can already have them up and running when i get to them be faster to kill them. and also to maintain them with 1 or 2 point when in combat?

    edit: ok so i edited my snd & recup for <= 5 and it seams to be working for when im in combat keeping them up but not wasting eviscerate. but if one of the more experienced coders can help me out on the stealth and have target that be great
    Last edited by merrikh; 02-16-2012 at 12:46 AM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #5927
    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)
    Hoping to see an updated survival hunter pve from someone sooner or later since Kmd isnt so detailed and a bit outdated.

    Not really hitting the numbers that im supposed to be at.
    Last edited by saga3180; 02-16-2012 at 01:18 AM.

  3. #5928
    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 Bossqwerty View Post
    @Valma
    I tried the swing timer code you made me and I didn't have any luck, it's more likely me not understanding enough about coding to use it than your code. I don't need to track swingtimer on screen or anything, I just want some variable in the background so I can make something like this "if TimeUntilHit < .5 then"

    If anyone at all knows how I could accomplish this I'd really appreciate it, this is the one thing I can't figure out
    Code:
    if not PQ_EventHandlerLoaded then
    local PQ_EventHandlerFrame, events = CreateFrame(&amp;quot;Frame&amp;quot;), {};
    
    function events:COMBAT_LOG_EVENT_UNFILTERED(...)
    if (select(3, ...) == "SWING_DAMAGE" or select(3, ...) == "SWING_MISSED") and (bit.band(select(5, ...), COMBATLOG_OBJECT_AFFILIATION_MASK) == COMBATLOG_OBJECT_AFFILIATION_MINE) then
        swingTime = UnitAttackSpeed("player")
        swingEnd = GetTime() + swingTime
    end
    
    PQ_EventHandlerFrame:SetScript(&amp;quot;OnEvent&amp;quot;, function(self, event, ...) events[event](self, ...); end);
    
    for k, v in pairs(events) do
    	PQ_EventHandlerFrame:RegisterEvent(k); -- Register all events for which handlers have been defined
    end
    
    PQ_EventHandlerLoaded = true
    end
    This is the handler you need.Furthermore for what you are trying to do you just need to add check anywhere you want if (swingEnd - GetTime()) &amp;lt; 0.5 then blablabla
    MEDVED+VODKA+BALALAYKA

  4. #5929
    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)
    I think Crystal_Tech had an updated survival hunter rotation here ([BETA] PQRotation - an automated ability priority queue.)

  5. #5930
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    Code:
    if not PQ_EventHandlerLoaded then
    local PQ_EventHandlerFrame, events = CreateFrame(&amp;quot;Frame&amp;quot;), {};
    
    function events:COMBAT_LOG_EVENT_UNFILTERED(...)
    if (select(3, ...) == "SWING_DAMAGE" or select(3, ...) == "SWING_MISSED") and (bit.band(select(5, ...), COMBATLOG_OBJECT_AFFILIATION_MASK) == COMBATLOG_OBJECT_AFFILIATION_MINE) then
        swingTime = UnitAttackSpeed("player")
        swingEnd = GetTime() + swingTime
    end
    
    PQ_EventHandlerFrame:SetScript(&amp;quot;OnEvent&amp;quot;, function(self, event, ...) events[event](self, ...); end);
    
    for k, v in pairs(events) do
        PQ_EventHandlerFrame:RegisterEvent(k); -- Register all events for which handlers have been defined
    end
    
    PQ_EventHandlerLoaded = true
    end
    This is the handler you need.Furthermore for what you are trying to do you just need to add check anywhere you want if (swingEnd - GetTime()) &amp;lt; 0.5 then blablabla
    Tried that one and got the same thing as before, just breaks the rotation and prevents anything from happening. I'm not sure what's wrong

    Edit: It was missing an end I think, but now it just returns "nil" for swingEnd

    Edit 2: nevermind it doesn't seem to be missing an end
    Last edited by Bossqwerty; 02-16-2012 at 02:18 AM.

  6. #5931
    [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)
    My rotation has a logical error and is rly simple if sheurons profile doesn't match the shadowcraft dps i will release it now. If it does the dps it should do i will work on my sub pve profile and an improvement of my current combat profile and THEN i will release it

    Gesendet von meinem GT-I9001 mit Tapatalk

  7. #5932
    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 Bossqwerty View Post
    Tried that one and got the same thing as before, just breaks the rotation and prevents anything from happening. I'm not sure what's wrong

    Edit: It was missing an end I think, but now it just returns "nil" for swingEnd

    Edit 2: nevermind it doesn't seem to be missing an end
    Ye,I'm a moron,sorry mate ... change select(5 to select(6 >.< I need to learn to count LOL Was trying to apply bitmask to name field LOL
    MEDVED+VODKA+BALALAYKA

  8. #5933
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    Ye,I'm a moron,sorry mate ... change select(5 to select(6 >.< I need to learn to count LOL Was trying to apply bitmask to name field LOL
    It's np I'm just glad you're trying to help me out. Still no luck though, just halts the rotation.

  9. #5934
    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 Bossqwerty View Post
    It's np I'm just glad you're trying to help me out. Still no luck though, just halts the rotation.
    And what is swingEnd value?

    EDIT: Got my new rotation ideas almost working,need more tests to it.Here it is http://code.google.com/p/valma-pqr-p...02-16-2012.rar please post your feedback here or via PM.

    P.S. THX for the guys who helped me in previous testing.
    Last edited by Valma; 02-16-2012 at 03:13 AM.
    MEDVED+VODKA+BALALAYKA

  10. #5935
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Valma View Post
    And what is swingEnd value?

    EDIT: Got my new rotation ideas almost working,need more tests to it.Here it is http://code.google.com/p/valma-pqr-profiles/downloads/detail?name=ValmaWarlock 02-16-2012.rar please post your feedback here or via PM.

    P.S. THX for the guys who helped me in previous testing.
    It doesn't even run so I can't check

  11. #5936
    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 Bossqwerty View Post
    It doesn't even run so I can't check
    Can you PM me your development code and the error you got?WIll try to fix it(have a bit free time,coz until I will have feedback about my new release I can't modify my profile).
    Last edited by Valma; 02-16-2012 at 03:25 AM.
    MEDVED+VODKA+BALALAYKA

  12. #5937
    Palach's Avatar Member
    Reputation
    1
    Join Date
    Nov 2007
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anybody help me out with a ret pally pvp code for word of glory below 36%?
    The code that I've got seems to continue to try to heal anytime the player is below 100%

    local unithealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    local sDivinePurpose = UnitBuffID("player", 90174)

    if unithealth <= 36 and UnitPower("player", 9) == 3 or sDivinePurpose ~= nil then
    return true
    end

    I want it to use word of glory any time my character is below 36%, there're 3 holy power available or Divine Purpose is up.
    Anyone able to give me a hand?

  13. #5938
    Bossqwerty's Avatar Legendary
    Reputation
    713
    Join Date
    Nov 2006
    Posts
    693
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Palach View Post
    Can anybody help me out with a ret pally pvp code for word of glory below 36%?
    The code that I've got seems to continue to try to heal anytime the player is below 100%

    local unithealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    local sDivinePurpose = UnitBuffID("player", 90174)

    if unithealth <= 36 and UnitPower("player", 9) == 3 or sDivinePurpose ~= nil then
    return true
    end

    I want it to use word of glory any time my character is below 36%, there're 3 holy power available or Divine Purpose is up.
    Anyone able to give me a hand?
    I think you just need to add parenthesis, if I'm understanding you correctly. As it is now it'll use word of glory any time sDivinePurpose is true, regardless of your hp. try it like this

    Code:
    local unithealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    local sDivinePurpose = UnitBuffID("player", 90174) 
            
    if unithealth <= 36 and (UnitPower("player", 9) == 3 or sDivinePurpose ~= nil) then
        return true
    end

  14. #5939
    barandeniz's Avatar Member
    Reputation
    4
    Join Date
    Nov 2006
    Posts
    133
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does any1 willing to improve Holy Priest rotation ? as i tried so far it is so much overhealing and burns mana so quickly. and in AoE healing chakra its spamming holy word:serenity... anyway if some1 wanna improve it , i can give a lot feedback about the profile.

  15. #5940
    andryshka's Avatar Corporal
    Reputation
    11
    Join Date
    May 2011
    Posts
    32
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    2Valma
    Not work. Only spam Bane of Havoc. On dummy and raid.
    Rotation in one ability - bad idea, IMHO
    Last edited by andryshka; 02-16-2012 at 05:38 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 11:41 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