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

User Tag List

Page 496 of 731 FirstFirst ... 396446492493494495496497498499500546596 ... LastLast
Results 7,426 to 7,440 of 10955
  1. #7426
    Gorthok's Avatar Active Member
    Reputation
    18
    Join Date
    Aug 2011
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm still around guys, I made a boomkin profile and an ele shaman profile i'll upload later this week.


    I like the new forum format -_-
    If you find someone's post helpful make sure you +rep them!
    The Wiki: https://pqrotation.wikia.com/wiki/PQRotation_Wiki

    [BETA] PQRotation - an automated ability priority queue.
  2. #7427
    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 hbkx1 View Post
    Anyone figure out why it keeps casting felguard over and over and over until u attack something for Valma's profile?
    This is a part of code that handles FG summoning:
    Code:
    		--SUMMON FELGUARD
    		if not PQ_InCombat then
    			if PQ_PetID ~= 37481 and PQ_SwapPets then
    				return 30146, nil
    			end
    		end
    		--SUMMON FELGUARD
    As you can see it will cast it ONLY if NOT in combat,if SwapPets flag is set to true(it is false by default,auto sets to true when you select bossmob,autosets to false when you select not bossmob,can be switched manually to true/false by pressing RCTRL(will provide notify on screen)) and if pet's npcid is NOT 37481(which is felguard actually).

    The only thing that can really broke this code is that in your locale FG's npcid is somehow different while spellid for FG is the same.You can check it easilly - start wow,log on your lock,start pqr 2.0,press button to start rotation and then press it again to stop it.Now print /pqd and mouseover on your pets frame while FG is active.

    Remember the number you got after all checks for buffs/debuffs that Debug window will print and post this number here.

    EDIT: There are 40 downloads of last version package and only 3 people posted problems with felguard loopcasting.So most likelly its something wrong on your side.What else you can do is install PQR 2.0 in some different test folder,redownload package (not SVN),extract it into this folder,start wow and ensure that you are loading exactly THIS new clean PQR.
    Last edited by Valma; 03-13-2012 at 01:26 AM.
    MEDVED+VODKA+BALALAYKA

  3. #7428
    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)
    Code:
    if not PQ_InCombat then
    i thought that mean if not in combat? but i could be wrong

  4. #7429
    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 Noelpqr View Post
    Code:
    if not PQ_InCombat then
    i thought that mean if not in combat? but i could be wrong
    Ye,just woke up,and misstyped a bit
    MEDVED+VODKA+BALALAYKA

  5. #7430
    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 Valma View Post
    The only thing that can really broke this code is that in your locale FG's npcid is somehow different while spellid for FG is the same.You can check it easilly - start wow,log on your lock,start pqr 2.0,press button to start rotation and then press it again to stop it.Now print /pqd and mouseover on your pets frame while FG is active.

    Remember the number you got after all checks for buffs/debuffs that Debug window will print and post this number here.

    EDIT: There are 40 downloads of last version package and only 3 people posted problems with felguard loopcasting.So most likelly its something wrong on your side.What else you can do is install PQR 2.0 in some different test folder,redownload package (not SVN),extract it into this folder,start wow and ensure that you are loading exactly THIS new clean PQR.
    Yea the npcid for pet are different from chr to chr and even time if i am not mistaken it gave me headache to find away to replace the pet till i found that u can check this spell the pet used
    so i made this code to do it

    Code:
    local SB = UnitPower("player", 7)
    local SBcd =GetSpellCooldown(74434)
    local felg = IsSpellKnown(89751, true)
    if ( UnitExists("pet") == nil  and SB >=1 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
    I know that this code need some work but heck i stopped playing my lock longtime ago

  6. #7431
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ fIREPONG ANY NEWS FOR THE bOOmkin Profil?

  7. #7432
    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)
    @Sheuron

    The counterspell ability is used on melee such as warriors and rogues.
    Pretty embarassing, if you can think of a way to solve that let me know.
    Been called out on it and recently took notice.

  8. #7433
    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 Noelpqr View Post
    Yea the npcid for pet are different from chr to chr and even time if i am not mistaken it gave me headache to find away to replace the pet till i found that u can check this spell the pet used
    so i made this code to do it

    Code:
    local SB = UnitPower("player", 7)
    local SBcd =GetSpellCooldown(74434)
    local felg = IsSpellKnown(89751, true)
    if ( UnitExists("pet") == nil  and SB >=1 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
    I know that this code need some work but heck i stopped playing my lock longtime ago
    Actually npcids are always the same for different pets.GUID changes,not npcid which is -12 to -9 symbol of GUID.
    MEDVED+VODKA+BALALAYKA

  9. #7434
    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 fluxflux View Post
    @ fIREPONG ANY NEWS FOR THE bOOmkin Profil?
    Yeah, the focus is mostly done, but I've hit a roadblock on moonfire/sunfire. Jus't haven't gotten it to work the way I want it to yet.

    @ Xelper

    With the release of v2.0.x, I've noticed that every now and then, when I'm running a profile, it suddenly freezes up and won't let me cast a spell, even when I try to do it manually. When I exit PQR, I can cast my spells again. But when I start PQR and the rotation starts running again, it seems to lock up randomly. A few times were just on a dummy trying to get my Moonkin profile done, then when I was on my warlock using Valma's profile, it locked up then as well. Like I said, I can exit PQR, don't even have to do a reload, then load it back and it runs smoothly again till it suddenly locks back up.

    Any ideas on why it's doing this. Like I said, with PQR still open when it locks up, I can't even cast a spell manually, but when I exit out of it, WoW goes back to normal and I can cast again.

    Think it might be a safety measure Blizzard has added in somewhere? There is no LUA errors, so I can't figure out what is causing it.

  10. #7435
    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)
    firepong,have you tried Demo spec with my rotation?Do you got FG loopcasting out of combat too?
    MEDVED+VODKA+BALALAYKA

  11. #7436
    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 Valma View Post
    firepong,have you tried Demo spec with my rotation?Do you got FG loopcasting out of combat too?
    I actually haven't tried Demo yet. My specs are Destro/Afflic for the simple fact that I don't have to reforge every time I change specs . I'll have to try Demo tomorrow lol.

  12. #7437
    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 firepong View Post
    I actually haven't tried Demo yet. My specs are Destro/Afflic for the simple fact that I don't have to reforge every time I change specs . I'll have to try Demo tomorrow lol.
    Dunno I use reforge haste to 2681 then go for mastery.So it is good for demo too,more better on multitarget.
    MEDVED+VODKA+BALALAYKA

  13. #7438
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how can i do this in a script?

    #showtooltip
    /castsequence [nomod] reset=10 Wild Mushroom, Wild Mushroom, Wild Mushroom, Wild Mushroom: detonate and if starfall ready starfall

    i want this as separat script but i dont no^^ i want the perfect aoe with firebongs single rotation

    we dont have a perfect moonkin script pls works for this^^

  14. #7439
    LtButterman's Avatar Member
    Reputation
    4
    Join Date
    Jan 2012
    Posts
    80
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Boss

    Hey just noticed you had SD7.3 and SMF4.4 out.. Are they the most recent? Since I thought SD7.1 was the most reliable so far :s and haven't noticed another release.

  15. #7440
    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 LtButterman View Post
    @Boss

    Hey just noticed you had SD7.3 and SMF4.4 out.. Are they the most recent? Since I thought SD7.1 was the most reliable so far :s and haven't noticed another release.
    Yup, they are.

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