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

Shout-Out

User Tag List

Page 58 of 731 FirstFirst ... 8545556575859606162108158558 ... LastLast
Results 856 to 870 of 10955
  1. #856
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah I know but I never used it cause I didnt know what it was, I will now though.

    [BETA] PQRotation - an automated ability priority queue.
  2. #857
    AdamZZ's Avatar Active Member
    Reputation
    42
    Join Date
    May 2007
    Posts
    139
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mentally View Post
    @sheuron: Awesome man.

    @Xelper: Let me know/sheuron know when the checks for Alysrazor is in (Molten Feather(3) / Wings of Flame) and either of us will update the Holy/Shadow profile. Seeing it as Molten Feather up to 2 stacks allow you to run and cast at the same time, whilst Wings of Flame (Molten Feather - 3 stacks) gives you the ability to fly at the same time, removing the Molten Feather buff. (iirc)

    I haven't really paid any attention to those two buffs since the very beginning of Firelands. :s
    Molten Feather stacks up to 3, increasing your run speed by up to 100%(i think it was) and allowing you to cast while moving, when you get 3 stacks you also get a second buff which lasts for 20 seconds that allows you to fly. The Molten Feathers buff lasts for around 20min or untill the end of burn phase. (the flying buff does not remove molten feathers)

  3. #858
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ha, I figured something out! So yeah, you can just use the actual name of the debuff for the debuff ID, that makes things easier. =)

  4. #859
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    googlebee:

    Heres something you can add to ur abilitys:

    Spell Name: Bear Form
    Spell ID: 5487
    Target: Player

    Lua:
    Code:
    local _, _, _, Br = UnitBuffID("player", 5487)
    local bhealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    
    if Br ~= nil then
    	return false
    end
    
    if bhealth <= 35 then
    	return true
    end
    I use this for pvp purposes, but you can lower the 35% to something lower to be used on raids so u dont die so fast!
    Also you can add more lua code to be used on raids, like checking if tanks are alive, if not turn bear and cast taunt on target.

    Heres other for pvp purposes.

    Spell Name: Maim
    Spell ID: 22570
    Target: target

    Lua:
    Code:
    local mCP = GetComboPoints("player", "target")
    local MMstart, MMduration = GetSpellCooldown(22570)
    local MMcooldown = (MMstart + MMduration - GetTime())
    
    if MMcooldown > 0 then
    	return false
    else
    	if mCP == 5 then
    		return true
    	end
    end
    Enjoy,
    Best regards

  5. #860
    CryptoCombat's Avatar Contributor #define ME 0x1337 CoreCoins Purchaser
    Reputation
    194
    Join Date
    Jan 2009
    Posts
    473
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    googlebee:

    Heres something you can add to ur abilitys:

    Spell Name: Bear Form
    Spell ID: 5487
    Target: Player

    Lua:
    Code:
    local _, _, _, Br = UnitBuffID("player", 5487)
    local bhealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    
    if Br ~= nil then
        return false
    end
    
    if bhealth <= 35 then
        return true
    end
    I use this for pvp purposes, but you can lower the 35% to something lower to be used on raids so u dont die so fast!
    Also you can add more lua code to be used on raids, like checking if tanks are alive, if not turn bear and cast taunt on target.

    Heres other for pvp purposes.

    Spell Name: Maim
    Spell ID: 22570
    Target: target

    Lua:
    Code:
    local mCP = GetComboPoints("player", "target")
    local MMstart, MMduration = GetSpellCooldown(22570)
    local MMcooldown = (MMstart + MMduration - GetTime())
    
    if MMcooldown > 0 then
        return false
    else
        if mCP == 5 then
            return true
        end
    end
    Enjoy,
    Best regards
    I like seeing leechers contributing. +rep

  6. #861
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It took quite a while to write all the code and learn what I needed to get it to work, but I finally did it! I made a profile for my warrior that pauses the bot whenever any modifier is pressed, shift/alt/ctrl, so now I can access my other abilities when I need to in PVP.

  7. #862
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Sheuron, is there an update with your MM hunter rotation that includes code for mouse over traps?
    Done code for hunter trap but have some limitations. The trap ll be launched when mouse is not over any unit, to avoid unwanted target switch (PQR mass click area to place spell).

    - Hold down RIGHT SHIFT to launch Ice Trap
    - Hold down RIGHT CONTROL to launch Freezing Trap
    - Hold down RIGHT ALT to launch Explosive Trap
    - Done cleanup on code to avoid warning spam, the rotation is now usable disabling the setting "Require Combat for Auto Mode" but is not advisable (dps as soon you target any enemy)

    Done changes on Holy Priest code to avoid conflic with default PQR hotkeys:

    - Hold down RIGHT SHIFT to place Lightwell at mouse location
    - Hold down RIGHT CONTROL to place AoE heal at mouse location if Chakra Sanctuary is active

    The package includes all my profiles with latest fixes:
    xeron300811bPQRProfiles.zip

    Im still having troubles with spells that have an alternative SpellID when spell glow highlighting like Pyroblast, Aimed Shot, Traps, Impact, etc... dont seem to work with the build in CastSpellByID (tried all spellid) but works using CastSpellByName. Any idea Xelper?

    ---------- Post added at 11:34 PM ---------- Previous post was at 11:10 PM ----------

    Got more fun this week programming rotations than playing the game itself, gona have a heartattack when patch 4.2.2 is released and PQR stop working.
    Last edited by sheuron; 08-29-2011 at 11:16 PM.

  8. #863
    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)
    lol i'm with u sheuron, out of every program and macro i've come across, this is the only program that ever sparked my intensity to learn LUA so much haha. I've been slowly editting and changign the profiles to my own perferences and have been loving it!

    gonna be sad when next patch comes out :'( my free interrupts will be gone

  9. #864
    googlebee's Avatar Contributor PQR Profile Developer CoreCoins Purchaser
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    478
    Thanks G/R
    0/0
    Trade Feedback
    9 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    googlebee:

    Heres something you can add to ur abilitys:

    Spell Name: Bear Form
    Spell ID: 5487
    Target: Player

    Lua:
    Code:
    local _, _, _, Br = UnitBuffID("player", 5487)
    local bhealth = 100 * UnitHealth("player") / UnitHealthMax("player")
    
    if Br ~= nil then
        return false
    end
    
    if bhealth <= 35 then
        return true
    end
    I use this for pvp purposes, but you can lower the 35% to something lower to be used on raids so u dont die so fast!
    Also you can add more lua code to be used on raids, like checking if tanks are alive, if not turn bear and cast taunt on target.

    Heres other for pvp purposes.

    Spell Name: Maim
    Spell ID: 22570
    Target: target

    Lua:
    Code:
    local mCP = GetComboPoints("player", "target")
    local MMstart, MMduration = GetSpellCooldown(22570)
    local MMcooldown = (MMstart + MMduration - GetTime())
    
    if MMcooldown > 0 then
        return false
    else
        if mCP == 5 then
            return true
        end
    end
    Enjoy,
    Best regards
    Thanks GRB + rep. I probably wont get around to it until Wednesday - but i have some other things in the works as well, and will once again be releasing another combo pack for Druids (Including your maim here)

    Stay tuned~

  10. #865
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by diesall View Post
    streamlined, cleaned up and improved my Deathknight frost rotations:
    pretty self explanatory: boss,trash,brez profiles included

    Profiles.7z
    Mate thats insane, my overall DPS in zandalaris is now 22-23k on my 361ilvl dk. I'd rep you if they'd let me!

  11. #866
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by sheuron View Post
    Done code for hunter trap but have some limitations. The trap ll be launched when mouse is not over any unit, to avoid unwanted target switch (PQR mass click area to place spell).

    - Hold down RIGHT SHIFT to launch Ice Trap
    - Hold down RIGHT CONTROL to launch Freezing Trap
    - Hold down RIGHT ALT to launch Explosive Trap
    - Done cleanup on code to avoid warning spam, the rotation is now usable disabling the setting "Require Combat for Auto Mode" but is not advisable (dps as soon you target any enemy)

    Done changes on Holy Priest code to avoid conflic with default PQR hotkeys:

    - Hold down RIGHT SHIFT to place Lightwell at mouse location
    - Hold down RIGHT CONTROL to place AoE heal at mouse location if Chakra Sanctuary is active

    The package includes all my profiles with latest fixes:
    xeron300811bPQRProfiles.zip

    Im still having troubles with spells that have an alternative SpellID when spell glow highlighting like Pyroblast, Aimed Shot, Traps, Impact, etc... dont seem to work with the build in CastSpellByID (tried all spellid) but works using CastSpellByName. Any idea Xelper?

    ---------- Post added at 11:34 PM ---------- Previous post was at 11:10 PM ----------

    Got more fun this week programming rotations than playing the game itself, gona have a heartattack when patch 4.2.2 is released and PQR stop working.
    Something not working, rotation stuck and wiped whole party ^^. Mean holypriest

  12. #867
    Unasrage's Avatar Member
    Reputation
    6
    Join Date
    Oct 2009
    Posts
    55
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by vorn10 View Post
    Something not working, rotation stuck and wiped whole party ^^. Mean holypriest
    Tested it in BWD and all worked fine m8, at least for me anyways ^^ love the new HW:S mechanic alot easyer ^^

  13. #868
    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)
    @ Xelper - is there a way to share variables between abilities...

    PS. Thankyou for the spammable hot key implementation in 1.0.9 tis a godsend when shit hits the fan

  14. #869
    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)
    New patch, new PQR is needed. Should get an updated version out today.

    @diesall: I want to say that you can just create a variable without the "local" infront of it and it should be a global... but it might only be relevant in the scope that it was declared due to how this works... I will come up with something that will allow you to create global variables if this doesn't work, just let me know.

  15. #870
    pepe2c's Avatar Member
    Reputation
    7
    Join Date
    Dec 2007
    Posts
    154
    Thanks G/R
    5/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i cant wait for the new version =P. Thx for such an amazing tool

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 07:58 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