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

User Tag List

Page 169 of 731 FirstFirst ... 69119165166167168169170171172173219269669 ... LastLast
Results 2,521 to 2,535 of 10955
  1. #2521
    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 TiefBlau View Post
    Ah, I see. I was watching an unholy DK video and noticed the GCD ticker was appearing on his pet abilities at the same time as some of his own abilities, if it's off the GCD then manually would be the best choice (unless you want to use ghoul stun to interrupt spells or something).
    I took a page out of your book and added the CC checks you suggested Also, Oreimo is awesome.

    [BETA] PQRotation - an automated ability priority queue.
  2. #2522
    BulletsFly's Avatar Sergeant
    Reputation
    46
    Join Date
    Aug 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lowrida View Post
    Does anyone know how to obtain the offsets from PTR 14911 to make PQR work? I've tried fiddling around with Offset Finder and wasn't able to find the right values. Working with memory dumps is foreign to me. :confused:
    I have found a couple but not them all :/

  3. #2523
    SpyroPT's Avatar Active Member
    Reputation
    15
    Join Date
    Aug 2011
    Posts
    121
    Thanks G/R
    3/7
    Trade Feedback
    8 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by lowrida View Post
    Does anyone know how to obtain the offsets from PTR 14911 to make PQR work? I've tried fiddling around with Offset Finder and wasn't able to find the right values. Working with memory dumps is foreign to me. :confused:
    If anyone can help us with this problem we would be highly appreciated

  4. #2524
    kojaks's Avatar Member
    Reputation
    1
    Join Date
    Mar 2009
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is an amazing program. And I adore the warrior work done by you guys. Is there any chance we could get a revised version for SMF (Single Minded Fury), since slam has a higher priority over raging blow?

  5. #2525
    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)
    Guys,do anyone have any suggestions on code to check what pet active I got atm?

    This is to ensure that I got Felguard when my DS comes out of CD and Felhunter for other situations. smth that will check pet name will be ok,but code that will check the type of summoned demon( eg succubus,felhunter,felguard etc) would be really nice one.

  6. #2526
    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)
    Valma, have you tried UnitCreatureFamily("pet")?

    It seems that this will return the creature family that the queried unit belongs to; I assume that you could write something along the lines of:
    Code:
    if UnitCreatureFamily("pet") == Felguard then
    I may be wrong, but this seems like the most likely candidate for what you want to do

    http://wowprogramming.com/docs/api/UnitCreatureFamily

  7. #2527
    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)
    thx,worked fine for me,but still profile will have localization issues due to returned value is on localized language.Any ideas how to do it obsolete, smth like ID or so on?

  8. #2528
    aylak's Avatar Member
    Reputation
    1
    Join Date
    Aug 2008
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please add a profile for firemage with Fire Blast and Pyroblast procc.
    My profile does not automatically casts of both.
    Thx and sorry for my bad english

  9. #2529
    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)
    Valma, I can't really think of anything, unfortunately. It seems to always return the localized name, so users will have to alter the ability for their locale. I took a quick look and couldn't really find anything that would work universally.

    There is a way to query your pet for its armor value, attack speed or any of its other stats. If these stats are unique enough, and stay relatively constant, I suppose you could use this method to sort out which pet is which, but I don't know if it will work and it sounds like a tough task

    For example:
    Code:
    Name: Summon Felguard
    SpellID: 30146
    
    local BaseArmor, _, _, _, _ = UnitArmor("pet")
    local DSstart, DSduration, enabled1 = GetspellCooldown(77801)
    
    if UnitExists("pet") == 1 and BaseArmor == (Felhunter Base Armor) and ((DSstart + DSduration) - GetTime()) < 10 then
        return true
    end
    Maybe something like that would work, and you could write a similar ability to summon your Felhunter if Demon Soul is on cooldown and BaseArmor returns a Felguard's base armor value? I really don't know warlocks very well, though. Sorry if I'm getting your hopes up, haha.

    EDIT: Or do stats only apply to Hunter pets? I should play more pet classes (゚д゚)
    Last edited by Kaolla; 11-02-2011 at 04:08 AM.

  10. #2530
    Xelper's Avatar ★ Elder ★
    Reputation
    1024
    Join Date
    Mar 2007
    Posts
    860
    Thanks G/R
    0/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    PTR update might be a couple days.. I lost power and internet from the snow storm on Saturday, sorry.

  11. #2531
    Noelpqr's Avatar Member
    Reputation
    3
    Join Date
    Oct 2011
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Valma, I can't really think of anything, unfortunately. It seems to always return the localized name, so users will have to alter the ability for their locale. I took a quick look and couldn't really find anything that would work universally.

    There is a way to query your pet for its armor value, attack speed or any of its other stats. If these stats are unique enough, and stay relatively constant, I suppose you could use this method to sort out which pet is which, but I don't know if it will work and it sounds like a tough task

    For example:
    Code:
    Name: Summon Felguard
    SpellID: 30146
    
    local BaseArmor, _, _, _, _ = UnitArmor("pet")
    local DSstart, DSduration, enabled1 = GetspellCooldown(77801)
    
    if UnitExists("pet") == 1 and BaseArmor == (Felhunter Base Armor) and ((DSstart + DSduration) - GetTime()) < 10 then
        return true
    end
    Maybe something like that would work, and you could write a similar ability to summon your Felhunter if Demon Soul is on cooldown and BaseArmor returns a Felguard's base armor value? I really don't know warlocks very well, though. Sorry if I'm getting your hopes up, haha.

    EDIT: Or do stats only apply to Hunter pets? I should play more pet classes (゚д゚)
    he can check pet ability to check if he has the right pet
    let see u want to make sure that u are using the felguard atm and u want to use Souldburn if it not on cd and u have soul shard

    u can use this code
    Code:
    local SB = UnitPower("player", 7)
    local SBcd =GetSpellCooldown(74434)
    local felg = IsSpellKnown(89751, true)
    if ( UnitExists("pet") == nil  and SB ~=0 and SBcd == 0) or (felg ~= true and SB ~=0 and SBcd == 0) then 
    CastSpellByID(74434)
    return true 
    
    else
    if UnitExists("pet") == nil   or felg ~= true then 
    return true end
    end

  12. #2532
    BulletsFly's Avatar Sergeant
    Reputation
    46
    Join Date
    Aug 2011
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    PTR update might be a couple days.. I lost power and internet from the snow storm on Saturday, sorry.
    If you pm me the patterns for the offsets then I can update them for you when you want me too. Because i use it everyday

  13. #2533
    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 Noelpqr View Post
    he can check pet ability to check if he has the right pet
    Uwaaaaah, so smart ^^

  14. #2534
    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)
    Ye,done this already by myself,but forgot to post about it Anyway thx for response

  15. #2535
    diesall's Avatar Contributor
    Reputation
    197
    Join Date
    Jul 2011
    Posts
    208
    Thanks G/R
    1/46
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    i was going to suggest a method parsing the GUID which is a 64bit integer so it cannot be converted to a number within itself , but you can disect it using bit.band and string.sub to find the pet identifier.

    if your "pet ability check "is running accross errors let me know, im sure i could code something up for you

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 08:40 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