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

Shout-Out

User Tag List

Page 271 of 731 FirstFirst ... 171221267268269270271272273274275321371 ... LastLast
Results 4,051 to 4,065 of 10955
  1. #4051
    damo1981's Avatar Member
    Reputation
    1
    Join Date
    Jan 2011
    Posts
    17
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi there just wondering if someone could point me in the right direction for editing this Feral Pve profile. i relised the problem was that its was constantly trying to pool 90% energy before using attacks so what im after doing is having it use shred at 40 energy and Fb at 60 energy heres how ive tweaked it about if i set shred too 40 it just spams that all the time and never gets too the 60 for fb. Pls some advice would be really helpfull thx

    Shred Code
    Code:
    -- Check for the debuffs.
    local hasCatMangle = UnitDebuffID("target", 33876)
    local hasBearMangle = UnitDebuffID("target", 33878)
    local hasTrauma = UnitDebuffID("target", 46857)
    local hasHemorrhage = UnitDebuffID("target", 16511)
    local CP = GetComboPoints("player", "target")
    local shrip, _, _, _, _, _, shtimer = UnitDebuffID("target", 1079, "PLAYER")
    local energy = UnitPower("player") / UnitPowerMax("player") * 100
    local berserk = UnitBuffID("player", 50334)
    
    
    
    
    -- Just check for all buffs, we have no casting time on Shred so no need for a timer check
    if hasCatMangle ~= nil or hasBearMangle ~= nil or hasTrauma ~= nil or hasHemorrhage ~= nil then
    	if PQR_NotBehindTarget() then
    		return false
    	else
    		if shrip == nil and CP < 5  or energy > 60 then
    			return true
    		end
    		if shrip ~= nil and CP < 5 and shtimer - GetTime() < 3 or energy > 60 or berserk ~= nil  then
    			return true
    		end
    	end
    end
    FB Code
    Code:
    local fbrip, _, _, _, _, _, fbtimer = UnitDebuffID("target", 1079, "PLAYER")
    local fbCP = GetComboPoints("player", "target")
    local fbhealth = 100 * UnitHealth("target") / UnitHealthMax("target")
    local fbenergy = UnitPower("player") / UnitPowerMax("player") * 100
    
    
    if fbhealth <= 100 then
    	if fbrip ~= nil then
    		if fbCP == 5 and fbenergy >= 60 then
    			return true
    		end
    	end
    else
    	if fbrip ~= nil then
    		if fbtimer - GetTime() > 5 and fbenergy >= 60 and fbCP == 5 then
    			return true
    		end
    	end
    end
    again any help would be really helpful once i get the jist of this ill go about tweaking it all. Thx
    Last edited by damo1981; 01-12-2012 at 04:06 PM.

    [BETA] PQRotation - an automated ability priority queue.
  2. #4052
    outoforder's Avatar Sergeant
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    44
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im still looking for help with feral pvp abilities, i've tried a few days to research the web my self. what i want is when pred swift procs to lbx3 then healing touch. heal arena/party/raid member .... mainly the teammate with lowest hp is it is possible. this is what im working on. i have the abilities to work for me but i cant get it to work on team members.

    LB1a:
    local _, _, _, PS = UnitBuffID("player", 69369)
    local inRange = IsSpellInRange("Lifebloom", /cast [@party2,nondead]
    local _,_,_,LB = UnitBuffID("player", 33763)
    if PS ~= nil and inRange == 1 and LB == nil then
    return true
    else
    return false
    end

    LB2a:
    local _, _, _, PS = UnitBuffID("player", 69369)
    local inRange = IsSpellInRange("Lifebloom", /cast [@party2,nondead]
    local _,_,_,LB = UnitBuffID("player", 33763)
    if PS ~= nil and inRange == 1 and LB < 3 then
    return true
    end

    healing touch2a:
    local _, _, _, PS = UnitBuffID("player", 69369)
    local inRange = IsSpellInRange("Healing Touch", /cast [@party2,nondead]

    if PS ~= nil and inRange == 1 then
    return true
    else
    return false
    end

  3. #4053
    CharleyWex's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Buba, your new HolyPvP and HolyArena are no worky.

    The ones thats are on SVN do, just not the one you recently uploaded here.
    Last edited by CharleyWex; 01-12-2012 at 04:53 PM.

  4. #4054
    itzaraya's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bossqwerty View Post
    Here's the exact same version (5.3) only with slam "fixed," let me know which of these works better for you guys.

    BossSDslam.rar
    I think i still prefer 5.2, however we'll be doing hours of attempts on heroic ultraxion tonight in which i can test out both profiles against eachother. Ill let you know how it goes tomorrow!

  5. #4055
    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 itzaraya View Post
    I think i still prefer 5.2, however we'll be doing hours of attempts on heroic ultraxion tonight in which i can test out both profiles against eachother. Ill let you know how it goes tomorrow!
    Sounds good. The 5.3 version with slam should be nearly identical to 5.2, I think I made a few minor adjustments though. I'm still open to any kind of suggestions, specifically more advanced things I can add to my profile.

  6. #4056
    baphomet58's Avatar Member
    Reputation
    11
    Join Date
    Oct 2006
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    I have changed my ret paladin profile a bit, with my gear i pull about 37k on ultraxion right now, I know the profile can be better but i don't know lua and I need help making it better.


    Download Ret.paladin.rar @ UppIT

    I have just been looking at the various profiles around the site to put this one together, with the lfr deathwing weapon it has no problem bursting up to 60k+ in heroics it levels out at about 50k.


    If anyone can help, the changes would be when combat beings wait 10 seconds before popping GOAK- Guardian of Ancient Kings, and do not pop wings-Avenging Wrath if zealotry is not up; "3 holy power" to maximize 4 piece, maybe a whole different skill, for example 4pZealotry+wings- Just a example name so it doesn't collide with the people who have not acquired 4 piece yet.

    For the ret paladins who may use this, pop the cooldowns your self until the changes above can be made.
    reup please

  7. #4057
    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)
    @Cahonez
    Testing out your balance profile now I'll let you know how it stands.

    [edit]

    after some dummy tests your profile's probably the best one around lol does optimal dps and no random starsurge casts. Hats off to you, sir.

    @Bossqwerty
    I was using Gurthak off DW which was probably the problem lol after i switched to 2H Axe and tested both out I found a decrease aswell :l
    and now I'm testing your modified 5.3.

    [edit]

    after 12mil on dummies got to 29.5k with 5.2 was at 28k with 5.3 27k so for me this modified 5.3 seems to be a realistic increase.
    whoever asked before I'm 395ilvl.
    Last edited by LtButterman; 01-12-2012 at 08:40 PM.

  8. #4058
    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)
    Here is my Arms Stance Dance profile. If you find anything wrong please let me know.

    Download File - 3.3 Kb

  9. #4059
    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)
    Originally Posted by Bossqwerty View Post
    Is anyone else seeing a decrease? If so post your gear (2pc / 4pc) and what weapon you're using. I'll look into it further but my experience is the exact opposite of yours so I'm not sure what's going on.
    Yeah, I'm seeing a decrease actually. Before I got the 2nd T13 pc, I was doing 28k+ dps on most stuff (50k dps on the purple boss in DS). But when I got my 2nd T13 pc, my dps started doing less than 28k dps...

    Right now, my gear is T12 2pc and T13 2pc and an ilvl 378 2h weapon (axe of the tauren). My hit / exp are capped out. So I reforged stuff to crit / mastery.

  10. #4060
    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 Testy9 View Post
    Yeah, I'm seeing a decrease actually. Before I got the 2nd T13 pc, I was doing 28k+ dps on most stuff (50k dps on the purple boss in DS). But when I got my 2nd T13 pc, my dps started doing less than 28k dps...

    Right now, my gear is T12 2pc and T13 2pc and an ilvl 378 2h weapon (axe of the tauren). My hit / exp are capped out. So I reforged stuff to crit / mastery.
    Check out my updated version and let me know if it's better, it's like halfway up the page.

  11. #4061
    trenoch's Avatar Site Donator
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I really feel the urge to ask, which is the feral cat one, that is the most updated?
    Asking that, because I've noticed that I'm doing sub 15k towards raid training dummy with Adamzz's one (and that has been the best one, over a 15m dpstime).
    Another thing I noticed is that it isn't using the instant ravage, if you do have 4pc t13 and such.

    Sadly enough I don't have any idea on how to write anything of this.

    EDIT.
    And, Cahonez, I have no idea why, but when I try to load your profile it bugs out and freezes over.
    Last edited by trenoch; 01-12-2012 at 08:43 PM. Reason: Adding stuff.

  12. #4062
    Pwnzor187's Avatar Master Sergeant
    Reputation
    23
    Join Date
    Jan 2011
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by averykey View Post
    I have changed my ret paladin profile a bit, with my gear i pull about 37k on ultraxion right now, I know the profile can be better but i don't know lua and I need help making it better.


    Download Ret.paladin.rar @ UppIT

    I have just been looking at the various profiles around the site to put this one together, with the lfr deathwing weapon it has no problem bursting up to 60k+ in heroics it levels out at about 50k.


    If anyone can help, the changes would be when combat beings wait 10 seconds before popping GOAK- Guardian of Ancient Kings, and do not pop wings-Avenging Wrath if zealotry is not up; "3 holy power" to maximize 4 piece, maybe a whole different skill, for example 4pZealotry+wings- Just a example name so it doesn't collide with the people who have not acquired 4 piece yet.

    For the ret paladins who may use this, pop the cooldowns your self until the changes above can be made.
    Link seems to be broken?

  13. #4063
    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)
    Posting my new feral (cat) profile. Should mimic the Elitist Jerk's rotation as good as possible. This will be included in PQR by default in the future.

    http://dl.dropbox.com/u/41165685/Xelper_DRUID.zip

    Hold SHIFT over a dead player/their unit frame to Rebirth them then automatically return to your previous form.
    Hold ALT to prevent yourself from fading out for Hour of Twilight.

    Includes T13 detection, so if you have 2PC it will start refreshing Rip with FB at 60% instead of 25%. It does not manage your Berserk, if you wish you can move it right below Tiger's Fury in the rotation. You are supposed to use it on cooldown.

    EDIT: Quickly added in Feral Charge and AOE modes incase you already downloaded it. Bear rotations coming soon.

    This includes my implementation of rotation specific event handling, for which I used Dragonfire's ret profile as a reference, if anyone wants to take a look at how they might implement it into their profiles.
    Last edited by Xelper; 01-12-2012 at 09:28 PM.

  14. #4064
    CharleyWex's Avatar Member
    Reputation
    1
    Join Date
    Dec 2011
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    Posting my new feral (cat) profile. Should mimic the Elitist Jerk's rotation as good as possible. This will be included in PQR by default in the future.

    http://dl.dropbox.com/u/41165685/Xelper_DRUID.zip

    Hold SHIFT over a dead player/their unit frame to Rebirth them then automatically return to your previous form.
    Hold ALT to prevent yourself from fading out for Hour of Twilight.

    Includes T13 detection, so if you have 2PC it will start refreshing Rip with FB at 60% instead of 25%. It does not manage your Berserk, if you wish you can move it right below Tiger's Fury in the rotation. You are supposed to use it on cooldown.

    EDIT: Quickly added in Feral Charge and AOE modes incase you already downloaded it. Bear rotations coming soon.

    This includes my implementation of rotation specific event handling, for which I used Dragonfire's ret profile as a reference, if anyone wants to take a look at how they might implement it into their profiles.
    Profile is working great. The only issue I seem to have is that on a raid boss dummy its not casting ferocious bite. Do you have it coded to only cast this below 60%?

  15. #4065
    TiefBlau's Avatar Member
    Reputation
    2
    Join Date
    Oct 2011
    Posts
    25
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by CharleyWex View Post
    Buba, your new HolyPvP and HolyArena are no worky.

    The ones thats are on SVN do, just not the one you recently uploaded here.
    I think it's because of the missing range check on judgement he mentioned earlier. I lost a few arenas when it locked up, so I assume this was the cause. I thought it was my own modifications messing it up, so I'm glad it's not just me.

    Has anyone tried PQR for multiboxing? I'm considering making some profiles that would /follow when not in combat, and /assist when in combat or heal. This could really make levelling alts easier.

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:06 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