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

User Tag List

Page 183 of 731 FirstFirst ... 83133179180181182183184185186187233283683 ... LastLast
Results 2,731 to 2,745 of 10955
  1. #2731
    La_MueRTe's Avatar Member
    Reputation
    1
    Join Date
    Feb 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I play wow in linux, and I would like to use this program in linux, you could make it work somehow?
    Sorry my bad English

    [BETA] PQRotation - an automated ability priority queue.
  2. #2732
    SilentWarrior's Avatar Member
    Reputation
    7
    Join Date
    Sep 2008
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Finding anything in here is next to impossible. Anyone have a working druid resto profile?
    Ex-Ppather dev. Creator of BigSister, a multi-session relogger/restarter and manager, BigSeries CCs for WowRobot and Yoink's unstuck thingy (made sustainable fly gathering possible, yay!).
    Creator of Destructu, a AAA quality 3D RTS game (similar to Company of Heroes).

    If you think my work as useful, please consider the rep button.

  3. #2733
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SilentWarrior View Post
    Finding anything in here is next to impossible.

    I been saying this for weeks now .................

  4. #2734
    retoxed's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cookie799 View Post
    I been saying this for weeks now .................
    page 177 or 178 (mby 176) have a little gathering of profiles for most classes.

  5. #2735
    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)
    Originally Posted by retoxed View Post
    page 177 or 178 (mby 176) have a little gathering of profiles for most classes.
    http://www.ownedcore.com/forums/worl...ml#post2146822 ([BETA] PQRotation - an automated ability priority queue.)

  6. #2736
    SilentWarrior's Avatar Member
    Reputation
    7
    Join Date
    Sep 2008
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    Ok im releasing this one since testers gave theyr positive feedback.

    FERAL PVP
    and
    FERAL PVP (ARENA)

    This is only usable for bg's, duels and arena, if you try to dps any heroic or raid with this your dps will fail big time.
    Altho testers say it was good enough, i will keep improving it.
    Actual 2v2 rating is: 2k
    Actual 3v3 rating is: 2.3k
    Actual 5v5 rating is 2.1k

    Download:
    feral_DRUID

    Leave your feedbacks.


    Want to say thanks to all the rest of the people that code something in here, since i used some of theyr code combined with my own.

    P.S - Kurios i broke what i said, and released something other then my previous releases. :P
    Link is broken.
    Ex-Ppather dev. Creator of BigSister, a multi-session relogger/restarter and manager, BigSeries CCs for WowRobot and Yoink's unstuck thingy (made sustainable fly gathering possible, yay!).
    Creator of Destructu, a AAA quality 3D RTS game (similar to Company of Heroes).

    If you think my work as useful, please consider the rep button.

  7. #2737
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cookie799 View Post
    I been saying this for weeks now .................
    Instead of bitching about it, spend some time and gather the profiles up in a post. So many people on this board just sit around moaning about stuff and don't contribute themselves.

  8. #2738
    cassrgs's Avatar Master Sergeant Authenticator enabled
    Reputation
    9
    Join Date
    Oct 2011
    Posts
    90
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Dark Succor

    Hello

    Im trying to adapt some codes in order to make my dk cast death strike first whenever Dark Succor buff its up but if the spell its on cooldown to cast the other stuff

    In the example below I tried to change Icy Touch

    Code:
    local dbFrostFever, _, _, _, _, _, dbexpire = UnitDebuffID("target",55095, "player")
    local DS = UnitBuff("player","Dark Succor")
    local _,cooldown = GetSpellCooldown(49998)
    
    if DS ~= nil then
    	if cooldown == 0 then
    	return false
    	end
    else
    	if dbFrostFever ~= nil then
    		RunMacroText("/startattack")		
    		dbexpire =(dbexpire - GetTime())
    		if dbexpire < 3 then
    		return true
    		end
    	else
    		return true
    	end
    end
    What happens its that on the first time i change target it casts death strike, but when i move to a third target (with Death Strike on cooldown) it doesnt cast icy touch, it wait for death strike to be available.

    Another point that i realized but havent ideia yet how to do it is that sometimes even if Death Strike its available i wont have runes up to use it.

    Any clues from the experts to this newb? \o/
    Thanks for any help

    ---------- Post added at 03:33 PM ---------- Previous post was at 03:03 PM ----------

    Oh well i got working now with the code below

    Code:
    local dbFrostFever, _, _, _, _, _, dbexpire = UnitDebuffID("target",55095, "player")
    local DS = UnitBuff("player","Dark Succor")
    local _,cooldown = GetSpellCooldown(49998)
    
    if DS ~= nil and cooldown == 0 then
    	return false
    else
    	if dbFrostFever ~= nil then
    	RunMacroText("/startattack")		
    	dbexpire =(dbexpire - GetTime())
    		if dbexpire < 3 then
    		return true
    		end
    	else
    		return true
    	end
    end
    For this to work Death Strike have to be after Icy touch and Plague Strike on the rotation

  9. #2739
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    Instead of bitching about it, spend some time and gather the profiles up in a post. So many people on this board just sit around moaning about stuff and don't contribute themselves.
    Go on then ................. and yeh lets gather everything up and put it in another post in this 184 page thread instead of just updating the 1st page or having one that just has the posts of the profiles

    when i been doing 12 to 16 hour days working the last thing i want to do is sit here when i get in from work for hours sorting out this 184 page thread

  10. #2740
    notap123's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can anyone point me in the right direction with setting up the interrupt bot for a focus target? Specifically I want to set Windshear to focus and possibly on a delay once it registers the cast. Thanks in advance!

    -Jon
    Last edited by notap123; 11-21-2011 at 01:09 PM.

  11. #2741
    kickmydog's Avatar Contributor
    Reputation
    257
    Join Date
    Jul 2011
    Posts
    635
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cookie799 View Post
    Go on then ................. and yeh lets gather everything up and put it in another post in this 184 page thread instead of just updating the 1st page or having one that just has the posts of the profiles

    when i been doing 12 to 16 hour days working the last thing i want to do is sit here when i get in from work for hours sorting out this 184 page thread
    So stop bitching then. Most other people including myself work. It is not an excuse for laziness. As was stated before someone went to the trouble of arranging all the profiles on previous pages. I'm grateful for Xelper to making this application. I really do not think it is his responsibility to keep track of every single profile writers piece of work.

  12. #2742
    Cookie799's Avatar Master Sergeant
    Reputation
    1
    Join Date
    Nov 2009
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kickmydog View Post
    So stop bitching then. Most other people including myself work. It is not an excuse for laziness. As was stated before someone went to the trouble of arranging all the profiles on previous pages. I'm grateful for Xelper to making this application. I really do not think it is his responsibility to keep track of every single profile writers piece of work.
    Yes and if someone had access to this thread also then yes that would be great then the 1st page would always be updated

  13. #2743
    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)
    Originally Posted by SilentWarrior View Post
    Link is broken.
    Look a few pages back!

  14. #2744
    Sheepmoon's Avatar Contributor
    Reputation
    143
    Join Date
    Oct 2011
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cookie799 View Post
    Yes and if someone had access to this thread also then yes that would be great then the 1st page would always be updated
    What is it exactly that you are looking for that is so hard to find? Say you want a priest profile, click on "search thread" at the top and type in "priest" then you get every post discussing priest profiles.

    Problem is the software author is not the one making all the profiles. Who do you think should be responsible to organise everything when this is a resource people are providing for free.

    People spend hours making things like this using their spare time and provide it for free and you are too ungrateful to appreciate that. You say you don't have time to click search but you have time to come back here every few hours to argue and complain.
    Last edited by Sheepmoon; 11-21-2011 at 04:37 PM.

  15. #2745
    Master34's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Nov 2011
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    rogue and Warrior

    anyone have try to do a rogue and Warrior AOE rotation?

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 03:50 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search