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

User Tag List

Page 636 of 731 FirstFirst ... 136536586632633634635636637638639640686 ... LastLast
Results 9,526 to 9,540 of 10955
  1. #9526
    farnumdizzle's Avatar Master Sergeant
    Reputation
    32
    Join Date
    Mar 2012
    Posts
    93
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by daveyboyuk View Post
    make sure your not targeting with mouseover
    Not targeting with mouseover. Mind Sear actually wasn't in the rotation. Now I added it to the rotation, but it will stop casting mind sear if vampiric touch is about to expire or whenever mind blast comes off cooldown.

    [BETA] PQRotation - an automated ability priority queue.
  2. #9527
    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)
    A fast way to get spellid on beta:

    Place mouse over any spell in your actionbar and write this on chat:
    Code:
    /dump GetActionInfo(GetMouseFocus()["action"])
    Last edited by sheuron; 04-11-2012 at 11:44 PM.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  3. #9528
    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 sheuron View Post
    A fast way to get spellid on beta:

    Place mouse over any spell in your actionbar and write this on chat:
    Code:
    /dump GetActionInfo(GetMouseFocus()["action"])
    The other way was load idtip through pqr :-) I was going to run the /script equivalent of that till some1 brought up using idtip and I found out /script was locked (there's a thread on this forums on how to unlock it)

    But yea, that way works, as does idtip way !

    Sent from my Xoom using Tapatalk 2
    ^0^Team Nova's PQR NCC ^0^

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

  4. #9529
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How do I get something like this working?

    Code:
    	local slot = { 10,13,14 }
    	for i=1,#slot do
    		local _,_,ready = GetItemCooldown(slot[i])
    		if ready == 1 then
    			UseInventoryItem(slot[i])
    		end
    	end

  5. #9530
    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 deadpanstiffy View Post
    How do I get something like this working?

    Code:
    	local slot = { 10,13,14 }
    	for i=1,#slot do
    		local _,_,ready = GetItemCooldown(slot[i])
    		if ready == 1 then
    			UseInventoryItem(slot[i])
    		end
    	end
    GetInventoryItemCooldown
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  6. #9531
    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 deadpanstiffy View Post
    How do I get something like this working?

    Code:
    	local slot = { 10,13,14 }
    	for i=1,#slot do
    		local _,_,ready = GetItemCooldown(slot[i])
    		if ready == 1 then
    			UseInventoryItem(slot[i])
    		end
    	end
    This code will not be able to work as you can't check Slot cooldowns with GetItemCooldown(). Can only use ItemID, ItemName and ItemLink. Check out this link: GetItemCooldown - World of Warcraft Programming: A Guide and Reference for Creating WoW Addons

    Anyways, even if it did work, it should be "if ready == 0 then" instead of "if ready == 1 then?" GetItemCooldown() reports 0 if item is ready and no cooldown. Check above link.

    What you would want to do is probably set the table up with all trinkets with On Use effects with their itemID's.For example:

    Code:
    local slot = {
    --Valor Trinkets
    	77113, --Kyroptyric Sigil
    	77114, --Bottled Wishes
    	77115, --Reflection of the Light
    	77116, --Rotting Skull
    	77117 --Fire of the Deep
    }
    
    for i=1,#slot do
    	local itemCD = GetItemCooldown(slot[i])
    	if itemCD == 0 then
    		UseItemByName(slot[i])
    	end
    end
    This way, it will be more versatile, just have to add in all itemID's for all on Use trinkets, which isn't much. And since UseItemByName() lets you use itemID's as well, its a Win Win situation

    EDIT* Or you could just use Sheuron's suggestion. I forgot all about that little code

    Code:
    local slot = {10, 13, 14}
    
    for i=1,#slot do
    	local itemCD = GetInventoryItemCooldown(slot[i])
    	if itemCD == 0 then
    		UseInventoryItem(slot[i])
    	end
    end
    Last edited by firepong; 04-12-2012 at 12:23 AM.

  7. #9532
    Edsaxe's Avatar Member
    Reputation
    2
    Join Date
    Sep 2011
    Posts
    91
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Kaolla View Post
    Version 2.2 of my Unholy DK PvP Profile has been uploaded to my Google Code page, and should also update correctly via PQR.
    (http://kaolla-pqr-profiles.googlecod...%20-%202.2.rar)

    The changes I've made are pretty numerous, so I'll document them in a few hours, but be aware of the biggest one: Left Control no longer Strangulates your target.

    The Strangulate (Focus) macro I included in my post should Strangulate your target if you do not have a focus, which obviates the need for Strangulate on a modifier key.

    Instead, at the suggestion of Shortround8, I've included a 'Kill Function', which is toggled on and off by tapping your Left Control Key (Essentially uses Sheuron's Chakra-switching code. Rep him!)

    Whether it is Enabled or Disabled will print to your chat window.

    While 'Kill Function' is enabled, PQR will automatically:

    Cast Unholy Frenzy (on yourself, assuming you have more than 40% HP)
    Chain Trinkets/Synapse Springs
    Summon Gargoyle
    Prioritize Outbreak as a means of reapplying diseases
    Cast Empower Rune Weapon when 5 or 6 of your runes are on cooldown, and at least 3 of them are Death Runes (Largely taken from Mentally/Bubba's Blood DK profile. Rep them!)
    Strangulate your Focus, Target or Arena1-5 if they cast more than 25% of a spell.

    I'm still playing around with this function, so expect updates when I can test it more extensively, but it seems to work great when I need to bring the house down.

    Don't forget to toggle it off after ~30 seconds, or it will continue to use these abilities as they come off cooldown, somewhat diluting the effect. Similarly, don't forget to use it at all, or else you'll look somewhat bad

    Also note that the 0/7/34 (or 0/8/33) build now uses Necrotic Strike at all times, unless the target's health falls below 35% (in which case it will Scourge Strike their face off).

    I'm certain I've missed a few things here, but I'll update the post linked in my signature soon with a full description of the changes.

    As always, I truly appreciate getting bug reports, suggestions, or feedback about the performance of this profile
    In the kill burst, if you don't have a focus target will it randomly pick a caster from Arena1-5? using 2.4btw
    Last edited by Edsaxe; 04-12-2012 at 01:34 AM.

  8. #9533
    Gabbz's Avatar Contributor
    Reputation
    184
    Join Date
    Dec 2011
    Posts
    451
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If i want to write a code where i use all of my interrupt abilities and then use them when my target cast a spell and its almost done finishing, like 25% left of cast bar. How would i do that ?
    For example as a Holy Paladin i can use Hammer of Justice, Rebuke, Arcane torrent (Belf Racial)
    Looking for exploiters and botters to Elder Scrolls Online.

  9. #9534
    Dotdk's Avatar Member
    Reputation
    1
    Join Date
    Feb 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey i have a question im not shure its asked before. But i use the Holy paladin profile maked by buba is there eny way to make it Cleanse for me or do i need to do it manuelly?
    Dotdk

  10. #9535
    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 Dotdk View Post
    Hey i have a question im not shure its asked before. But i use the Holy paladin profile maked by buba is there eny way to make it Cleanse for me or do i need to do it manuelly?
    Dotdk
    Follow instructions on the bottom of my signature and make sure you are up to date :-)

    Sent from my phone using Tapatalk
    ^0^Team Nova's PQR NCC ^0^

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

  11. #9536
    Weischbier's Avatar Member
    Reputation
    12
    Join Date
    Apr 2012
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone got the new offsets already? =)

    greetz


    Weischbier

  12. #9537
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for the help, this is what i ended up with.

    Convert slotid to itemid, check for cooldown and "on use" abilities for that slot, use by name.

    Code:
    local slot = { 10,13,14 }
    	for i=1,#slot do
    		local item = GetInventoryItemID("player", slot[i])
    		local cd = GetItemCooldown(item)
    		local use = GetItemSpell(item)
    		if cd == 0 and use ~= nil then
    			UseItemByName(item)
    		end
    	end
    end
    Last edited by deadpanstiffy; 04-12-2012 at 02:43 AM.

  13. #9538
    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 deadpanstiffy View Post
    Thank you for the help, this is what i ended up with.

    Convert slotid to itemid, check for cooldown and "on use" abilities for that slot, use by name.

    Code:
    	local slot = {10, 13, 14}
    	for i=1,#slot do
    		local slot = { 10,13,14 }
    		for i=1,#slot do
    			local item = GetInventoryItemID("player", slot[i])
    			local cd = GetItemCooldown(item)
    			local use = GetItemSpell(item)
    			if cd == 0 and use ~= nil then
    				UseItemByName(item)
    			end
    		end
    	end
    You only want to have 1 set of:

    local slot = {10, 13, 14}
    for i=1,#slot do

    And take out one of the ends leaving:

    Code:
    local slot = { 10,13,14 }
    
    for i=1,#slot do
    	local item = GetInventoryItemID("Player", slot[i])
    	local cd = GetItemCooldown(item)
    	local use = GetItemSpell(item)
    	if cd == 0 and use ~= nil then
    		UseItemByName(item)
    	end
    end
    This could even be used in a function for more versatility to go into a Data file. Care if I use it in one of mine? Will rep of course

  14. #9539
    deadpanstiffy's Avatar Knight-Lieutenant
    Reputation
    158
    Join Date
    Mar 2012
    Posts
    240
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah I don't know what happened (fixed in original), bad copy/paste.

  15. #9540
    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)
    No problem, and if you wanted to make it into a function to be used in a Data file just set it up as:

    Code:
    local slot = { 10,13,14 }
    
    function PQR_ItemCD()
    	for i=1,#slot do
    		local item = GetInventoryItemID("Player", slot[i])
    		local cd = GetItemCooldown(item)
    		local use = GetItemSpell(item)
    		if cd == 0 and use ~= nil then
    			return true
    		end
    	end
    	return false
    end
    EDIT* For the rest of the above code:

    Code:
    local itemCD = PQR_ItemCD()
    local slot = {10,13,14}
    
    if itemCD == true then
    	for i=1,#slot do
    		local item = GetInventoryItemID("player", slot[i])
    		UseItemByName(item)
    	end
    end
    Obviously, it's not much more of a help, but it does get the code cleaned up a bit in the rotations Makes the code look more complicated than it should

    EDIT**

    While messing around with my enhance shaman profile, I finally got the weapon enchants to work. Heres what I had to do:

    Name: Weapon Echants
    SpellID: 0
    Delay: 1000 (Gotta have this here for it to work right)

    Code:
    local hwv, hwd  = GetWeaponEnchantInfo()
    
    if hwv ~= 1 then
    	CastSpellByID(8232)
    end
    
    local _,_,_,nwv,nwd,_ = GetWeaponEnchantInfo()
    
    if nwv ~= 1 then
    	CastSpellByID(8024)
    end
    Without that Delay there, it would apply the same chant to both weapons cause it would spam the spell. I can't believe I didn't think of the Delay when I was making my enhance profile :confused:

    And for some reason, it would not work with them both setup in a different ability for each spellID. Had to have them both in 1 ability. Weird.
    Last edited by firepong; 04-12-2012 at 03:38 AM. Reason: Added Edit

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