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

Shout-Out

User Tag List

Page 310 of 731 FirstFirst ... 210260306307308309310311312313314360410 ... LastLast
Results 4,636 to 4,650 of 10955
  1. #4636
    treamydk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well,

    which profile do you suggest for a demo/affli warlock?

    I don't think the ones shipped with the release of pqrotation is that good. Maybe they're not built for 4.3

    Greetz

    [BETA] PQRotation - an automated ability priority queue.
  2. #4637
    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)
    Originally Posted by treamydk View Post
    Well,

    which profile do you suggest for a demo/affli warlock?

    I don't think the ones shipped with the release of pqrotation is that good. Maybe they're not built for 4.3

    Greetz
    crysal_tech's is almost complete, have patience young grasshopper
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  3. #4638
    treamydk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2011
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there a SVN-Trunk to get the latest stable releases? I've tryed to checkout yours, but its not working for me.

  4. #4639
    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)
    I know this is way past being helpful, but in response to the question of using my Death and Decay thing a week ago: it's completely fine (honestly, nothing could make me happier) if you guys find a use for some of my code.

    My Unholy rotation is completely broken at this point, and I haven't played WoW in a few weeks, but let me know if I can help in any way. Most of that rotation was built on earlier profiles, so I'm thrilled if I can give back in some way

    Keep up the great work, guys. I'm not so interested in WoW anymore, but PQR got me more interested in programming than any number of classes and lectures.

  5. #4640
    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)
    Bubba if you can help me reverse some of your abilities it would be pretty nice. I am trying to make a PvP prot war profile for flag carrying. Problem im having is the ability for spell check/reflect for DS and shattering throw/colossus smash/hamstring for BS. I do not understand coding enough to flip roles from staying in DS and only switching to BS to fulfill those needs. I know you are busy but if this is an easy fix let me know.

  6. #4641
    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)
    Originally Posted by Meatglue View Post
    Bubba if you can help me reverse some of your abilities it would be pretty nice. I am trying to make a PvP prot war profile for flag carrying. Problem im having is the ability for spell check/reflect for DS and shattering throw/colossus smash/hamstring for BS. I do not understand coding enough to flip roles from staying in DS and only switching to BS to fulfill those needs. I know you are busy but if this is an easy fix let me know.
    Lol I can probably create a smoother one now a days, but sure tomorrow I'll see what I can do
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  7. #4642
    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)
    That would be terrific. I know Sheruon has a prot war profile now, I was planning on just mixing the abilities together. I wish more of you profile maker's were pvper's. haha

  8. #4643
    taker's Avatar Member
    Reputation
    10
    Join Date
    Jul 2008
    Posts
    41
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    delete this message

    (i had a bad library loaded)
    Last edited by taker; 01-25-2012 at 05:35 AM.

  9. #4644
    Kinky's Avatar Banned CoreCoins Purchaser
    Reputation
    481
    Join Date
    Nov 2008
    Posts
    500
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey guys!
    I'm looking for a poor soul to try something out for me while I'm at school.

    I've been trying to come up with a "decent" way to automatically refresh Vampiric Touch and Devouring Plague on your target if you're getting some strong intellect procs, and when they're just about to expire (just to squeeze in a bit more DPS) but I'm unable to test it myself right now.

    It's basically a slightly modified version of Vampiric Touch than what I'm using in my currently released profile, taking this into account.

    Name: Vampiric Touch
    Spell ID: 34914
    Code:
    Code:
    local VT,_,_,_,_,_,timer = UnitDebuffID("target",34914,"player")
    local haste = GetCombatRating(19)
    local latency = select(4,GetNetStats())
    
    -- Is Vampiric Touch a known spell?
    if IsSpellKnown(34914)
    	and UnitExists("target")
    	and PQR_IsMoving(1) == false
    	and IsSpellInRange(tostring(GetSpellInfo(34914)), "target")
    then
    	if VT then
    		if UnitBuffID("player",74241) then
    			local PT,_,_,_,_,_,PTTimer = UnitBuffID("player",74241)
    			
    			if PTTimer - GetTime() > 11 then return true
    			elseif PTTimer - GetTime() < 3 then return true end
    		elseif UnitBuffID("player",75170) then
    			local LW,_,_,_,_,_,LWtimer = UnitBuffID("player",75170)
    			
    			if LWTimer - GetTime() > 14 then return true
    			elseif LWTimer - GetTime() < 3 then return true end
    		end
    		
    		if UnitBuffID("player", 90355) or UnitBuffID("player", 80353) or UnitBuffID("player", 32182) or UnitBuffID("player", 2825) then
    			if timer - GetTime() <= 3/((1.5/((1+(haste/12805))*1.05*1.03*1.30))+(latency/1000)) then return true end
    		else
    			if timer - GetTime() <= 3/((1.5/((1+(haste/12805))*1.05*1.03))+(latency/1000)) then return true end
    		end
    	else return true end
    end
    Not entirely sure if there's a more gracefull way of doing this. Open to suggestions on this matter.

  10. #4645
    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)
    @mentally

    Why u need to dot clip on SP?Ok,I can understand why destro lock needs to clip Immo for bigger Conflagate,but SP... :/

    Here is the logic that I use for destrolock - store haste rating on every CAST of Immo(HUEHUE AFTERPERFORM LUA),on later checks compare first if your current rating is more than previous one,if it is then check will it provide you more ticks on dot or just the same amount.

    Edit: Ups,sorry,too sleepy >.< Anyway I will leave the trick with haste where it is,and as for your question about int - the trick is almost the same, you will just need to decide what difference in int will be a DPS gain to clip a dot.
    Last edited by Valma; 01-25-2012 at 08:47 AM.

  11. #4646
    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)
    Holy Paladin - Is it possible to add a range check for certain abilities? For example, if 4 players have low health, the profile then needs to make sure that the 4 players are close to each other (e.g. within 10 yards radius) and if so.... Light of Dawn or Holy Radiance will be used.

  12. #4647
    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)
    Originally Posted by Testy9 View Post
    Holy Paladin - Is it possible to add a range check for certain abilities? For example, if 4 players have low health, the profile then needs to make sure that the 4 players are close to each other (e.g. within 10 yards radius) and if so.... Light of Dawn or Holy Radiance will be used.
    have fun disecting onyas chain heal code and morphing it into what you asked for =) ill wait right here FYI it is on the list of things for me to do, but pretty low on there
    ^0^Team Nova's PQR NCC ^0^

    If you think someone did something good, take the time to show your appreciation!

  13. #4648
    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)
    Originally Posted by bu_ba_911 View Post
    have fun disecting onyas chain heal code and morphing it into what you asked for =) ill wait right here FYI it is on the list of things for me to do, but pretty low on there
    That's right because Unholy DK (for pvp too cough) and Prot PvP is super important atm. haha

  14. #4649
    kclux's Avatar Active Member
    Reputation
    16
    Join Date
    Jun 2011
    Posts
    199
    Thanks G/R
    2/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tried to use Sheuron's Combat Rogue Profile and it does not apply poisons for me. Anyone else having that problem ?

  15. #4650
    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 bu_ba_911 View Post
    have fun disecting onyas chain heal code and morphing it into what you asked for =) ill wait right here FYI it is on the list of things for me to do, but pretty low on there
    I'm reading into it right now, but there's another thing that also needs to be considered -- Holy Radiance shouldn't be casted on the same player twice. Because if it's casted on the same player twice in less than three seconds, it will do nothing but refreshes or renews the HoT - causing both HPS and mana losses. So, Holy Radiance should only cast on two different targets nearby. And cast HR on the previous target again to land a new HoT. For example:

    HR cast on Player(A)
    Player(A) gets a HoT.
    HR cast on Player(B)
    Player(B) gets a HoT.
    When the HoT from Player(A) expires, cast HR on Player(A) again.
    When the HoT from Player(B) expires, cast Player(B) on him again.

    *BTW this HoT lasts only three seconds.

    Rinse and repeat, assumed if the profile is casting Holy Radiance continuously. Also, there's an exception to this 'cast HR on 2 different targets in-between' rule -- If the Holy Paladin has HIGH haste + Divine Favor + Bloodlust activated, then the profile should cast HR on 3 or 4 different targets in-between. This action will equal very high HPS, like 50k+ HPS.
    Last edited by Testy9; 01-25-2012 at 02:12 PM.

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