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

Shout-Out

User Tag List

Page 456 of 731 FirstFirst ... 356406452453454455456457458459460506556 ... LastLast
Results 6,826 to 6,840 of 10955
  1. #6826
    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 expunge View Post
    Shouldn't this read "I was just wondering if your profiles are setup for the tier 13 2set bonus so that it wont use CS twice in a row unless its below 55focus?"
    What are we talking about here? Chimera Shot or Cobra Shot? In short there are no restriction in the profile with regards to not casting two in a row for either. The Profile is sololy concerned with focus levels and abilities being available ie off cooldown. If for example your focus is at 0 and most of the dps instants are on cooldown it will probably cast two cobra shots in a row.

    The rotations are designed to bleed off extra focus where necessary, the only times it will go below the prefix focus conservation level is when explosive shot is off cooldown. It will always try to maintain enough focus to use explosive shot.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

    [BETA] PQRotation - an automated ability priority queue.
  2. #6827
    jackus's Avatar Active Member
    Reputation
    58
    Join Date
    Aug 2006
    Posts
    802
    Thanks G/R
    1/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Xelper View Post
    You just need to change everything that says "target" to "focus" and change the target in PQR to Focus. You can also make a copy of the ability first, so you have both abilities. Then add the new ability to your rotation under your current ability.
    i made a new ability called Pummel-Focus. Spill ID: 6552 Delay: 0 Target: focus and used this
    Code:
    local buff = {  118,116,61305,28271,28272,61780,61721,2637,33786,5185,8936,50464,19750,82326,2061,9484,605,8129,331,8004,51505,403,77472,51514,5782,1120,48181,30108  }
    
    local castingSpell, _, _, _, _, endTime = UnitCastingInfo("focus")
    for i,v in ipairs(buff) do
    if IsSpellInRange("Pummel", "focus") == 1 and PQR_IsOutOfSight("focus")  == false and castingSpell == GetSpellInfo(v) and endTime/1000 -  GetTime() < 0.5  then 
      if not UnitBuffID("focus", 31821) and not UnitBuffID("focus", 89485) then
        return true 
      end 
    end
    end
    But dont seem to work :/

  3. #6828
    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 Xelper View Post
    If you guys are interested in the Ultraxion clicker I use, it is below. If you have Divine Shield on you it wont fade out, or if you are holding down Alt.

    Name: Heroic Will
    Spell ID: 0
    Actions: /click ExtraActionButton1
    Code:
    local altDown = IsAltKeyDown()
    local sDivineShield = UnitBuffID("player", 642)
    
    
    if altDown == nil then
        local spellHourOfTwilight = GetSpellInfo(109417)
        local channelSpell, _, _, _, _, endTime = UnitCastingInfo("boss1")
        if channelSpell ~= nil and channelSpell == spellHourOfTwilight then
            local finishTime = endTime/1000 - GetTime()
            if finishTime < 1 and sDivineShield == nil then
                return true
            end
        end
    end
    
    
    local sFadingLight, _, _, _, _, _, fadingEndTime = UnitDebuffID("player", 110068)
    if sFadingLight then
        local finishTime = fadingEndTime - GetTime()
        if finishTime < 1.4 then
            return true
        end
    end
    Interesting, I've been pondering code of some sort so that my hunter profiles will use deterrence when hour of twilight comes up and it's my turn to soak it. This is for heroic mode, have you got any suggestions? Right now I just turn my rotation off, and manually use deterrence, but I would like to flawlessly do it with minimal interaction. Maybe something that checks the Loaming Darkness debuff or something.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/422388-kickmydog-bm-mm-sv-hunter-profiles.html#post2793017

  4. #6829
    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)
    My feral script is doing Xelpers but using Survival Instinct to bypass clicking. So anyone soaking just add your buff u need for the soaking and it will do it flawless. Or just press alt.

    since i am tanking Ultraxion i also have auto taunting from my focus. I just start the script and sit back and enjoy the show and only need to press SI for each i need to soak.

    Lazy Leecher indeed.

  5. #6830
    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 jackus View Post
    i made a new ability called Pummel-Focus. Spill ID: 6552 Delay: 0 Target: focus and used this
    Code:
    local buff = {  118,116,61305,28271,28272,61780,61721,2637,33786,5185,8936,50464,19750,82326,2061,9484,605,8129,331,8004,51505,403,77472,51514,5782,1120,48181,30108  }
    
    local castingSpell, _, _, _, _, endTime = UnitCastingInfo("focus")
    for i,v in ipairs(buff) do
    if IsSpellInRange("Pummel", "focus") == 1 and PQR_IsOutOfSight("focus")  == false and castingSpell == GetSpellInfo(v) and endTime/1000 -  GetTime() < 0.5  then 
      if not UnitBuffID("focus", 31821) and not UnitBuffID("focus", 89485) then
        return true 
      end 
    end
    end
    But dont seem to work :/
    Out of curiosity, did you try using mine, but just replace my list of spells with yours?

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

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

  6. #6831
    stec2012's Avatar Corporal
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    34
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    In Eff's Resto Druid profile, he has it so you can mouse over somebody and focus heals on them. Is it a specific section of code that i can add to Ony's resto shaman profile or is there more to it than that?

  7. #6832
    Nythus's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anybody happen to know of a good Fire Mage PvE profile? The one that comes with the program doesn't use Living Bomb or Combustion.

  8. #6833
    collinetnick's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If i knew how to do this i would, but for the dk profile would be really nice if you knew in a method of tracking the bosses stomp cast for morchok and korchok. As a soak-er i many time miss blood presence and nearly die. Also a good idea for any melee profile to come equipt with this. Especially the rogue one. I know if a rogue misses feint on the stomp he will be one shot. This is only for heroic morchok of course.
    Last edited by collinetnick; 03-01-2012 at 06:18 PM.

  9. #6834
    fluxflux's Avatar Knight
    Reputation
    5
    Join Date
    Jan 2012
    Posts
    185
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any news from Mentally for the new shadow rotation?

  10. #6835
    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'm sure she's working pretty hard on it, but it's a complete rewrite. Coupled with her guild issue, it could take a while.

  11. #6836
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by collinetnick View Post
    If i knew how to do this i would, but for the dk profile would be really nice if you knew in a method of tracking the bosses stomp cast for morchok and korchok. As a soak-er i many time miss blood presence and nearly die. Also a good idea for any melee profile to come equipt with this. Especially the rogue one. I know if a rogue misses feint on the stomp he will be one shot. This is only for heroic morchok of course.
    You can give this a try, basically if morchok/kochrom(this code is for morchok, to have it work for kochrom change "boss1" to "boss2" I think) is casting Stomp, it will switch to blood presence, if your profile has an ability to switch to unholy presence, make sure to take it out of the rotation so it stays in blood presence and doesn't switch, you will have to switch back to unholy presence after though.
    -- Damage Soaking on Morchok/Kohcrom Switches to blood presence and casts
    local StompCast,_,_,_,_,endtime = UnitCastingInfo("boss1")
    local Stomp = {109033, 109034}

    for i,v in ipairs(Stomp) do
    if StompCast == GetSpellInfo(v)
    and endtime/1000 - GetTime() < 1
    then return true
    end
    end
    How to add this:
    Go into Ability editor, paste the above code into the box, then for the "Spell ID" box, put this: 48263, name the ability whatever then press save. Now close the ability editor and go into "Profile and Rotation editor" then select your profile/main rotation and select the abilitys name from the first list box, click the "->" button and use the Up key to move the ability to the top of the second listbox. This should work, I forget who originally made the above code I think his name was "ishtro".
    Last edited by Kinkeh; 03-01-2012 at 06:57 PM.

  12. #6837
    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 TehVoyager View Post
    K time to admit it i guess

    The Sucess rate of this app made me try it out.

    >.>

    Firepong: is your Kittycleave profile for PVP?
    Also, your Bear profile has some kinks.

    1: it lacerates all the things. passing other viable cds to do it.
    2: the AoE mode only seemed to swipe and lacerate. Y U NO THRASH!
    3: popped it on for H ultraxion. when the first hour of twilight popped up, i ported out and wiped my raid. they "wtf dude"-ed at me. i would suggest leaving Heroic Will on manual, or setup something to disable the clicking of Heroic Will.

    At this stage of your profile, i'd suggest getting the ability priority, singletarget/aoe and raid/heroic things working before working on making it taunt and hit the Heroic Will buttons.

    is there anything i can do to help you test further while maintaining my anominity?
    1. Like I said, I don't do raids as tank, only Feral DPS. Everything in this is coded from the rotation on The Indespicable Bear. On there it said to use Lacerate as fillers when you have nothing else to do, which is what it is doing. It always seems to cast the spells in order of rotation for me, never misses recasting or re-applying buff/debuff. Just take a closer look at how its working out, might just be that it's way more different than the way your hand-made rotation works.

    2. As for AoE, mine thrashes, even uses maul when rage is above 35 or 40 (don't remember for sure). Just take a look at a detailed damage meter for your DPS on that fight and you will see. Now, if your not the one holding agro, then you will loose Rage because you are not taking damage. If need be, I can run a heroic and note down my damage and show you that it is in fact casting the spells that I have coded in there. Just have to remember, most of the spells in the bear tree have a cooldown. Just set your debug to true in PQRotation and look at all the spells it is casting, you can see that it is in fact casting spells.

    3 .As far as Hour of Twilights go, I had never tested it in bear or cat to see if the button was working right. Before you had went into the raid, you should have just done a LFR to make sure everything was working as intended instead of going into a Heroic not knowing how the rotation would act. I know this is my rotation I made, but I had stated that these parts of the code had not been tested yet. For this, I say to replace everything in --Special Events -- with the code Xelper posted a few posts above yours, and leave it as is. In my next release, within the next day or so, I will actually have this in mine with my Heroic Will button code for what I have explained below.

    As to the last statement, I decided to just leave Taunt out and actually removed it from my latest code change (hasn't been uploaded yet). I also took out all of the Button presses and only have coded in, right now, is for it to hit the Heroic Will button on Madness, which I have confirmed working, when you are 2 seconds away from being impaled as well as 2 seconds away from Shrapnel.

    And like I said, to me, I notice no problems in AoE and Single Target mode on my end when I have enough rage to cast All of the spells. Never loose agro either when in AoE mode.

  13. #6838
    Kinkeh's Avatar Established Member
    Reputation
    243
    Join Date
    Jan 2012
    Posts
    450
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by abndrew82 View Post
    what exactly is this? Release.exe doesnt seem fitting
    It's a virus, do not open it. I can tell by its file details that it's crypted to hide its detections so no anti virus is going to detect it scantime, not sure about its runtime.
    Last edited by Kinkeh; 03-01-2012 at 07:34 PM.

  14. #6839
    Cahonez's Avatar Sergeant
    Reputation
    4
    Join Date
    Dec 2011
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Bubba

    Chances of bringing those warlock pvp profiles forward in priority?

    Had a couple of people pm me and say they will help out with the Donations.

    I'm happy to help out with priorites etc

  15. #6840
    abndrew82's Avatar Active Member
    Reputation
    17
    Join Date
    Jan 2008
    Posts
    162
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah i downloaded and looked in the zip and was like nah thats just wrong

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 09:14 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