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

User Tag List

Page 526 of 731 FirstFirst ... 26426476522523524525526527528529530576626 ... LastLast
Results 7,876 to 7,890 of 10955
  1. #7876
    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)
    When using unitdebuff, harmful is implied. Also by declaring player as well, you are only looking for debuffs by yourself. So you would never see the warlock debuff because you aren't the one applying it.

    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!

    [BETA] PQRotation - an automated ability priority queue.
  2. #7877
    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 bu_ba_911 View Post
    When using unitdebuff, harmful is implied. Also by declaring player as well, you are only looking for debuffs by yourself. So you would never see the warlock debuff because you aren't the one applying it.

    Sent from my Xoom
    What he said Just take out Player|Harmful from both spells (or at least warlock buff) and it will fix your problem.

    @Googlebee - No problem

  3. #7878
    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 ban19 View Post
    Hi guys,

    I do have a problem with my Mage Scorch ability. I have wrote new ability witch will check Scorch Debuff on raid boss. It works perfect BUT we do have Warlock in our raid group witch also put on mob Critical mass witch overwrite Scorch "Shadow and Flame" - Wowhead LINK2 and its not detected by PQR



    Can someone help me makes it work ?
    Remove player from the shadowflame part, it is looking only for a shadowflame from your character when you put player, I would do the same for your scorch debuff, that way f another mage puts scorch up, you are not wasting time trying to overwrite it with your own.
    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. #7879
    ban19's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Guys !
    That was very helpful. I've just started learning "how to" write an abilities and Rotations

  5. #7880
    Nerigal's Avatar Member
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i´am searching for a fury profile can anybody poste once

  6. #7881
    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)
    Originally Posted by ban19 View Post
    Hi guys,

    I do have a problem with my Mage Scorch ability. I have wrote new ability witch will check Scorch Debuff on raid boss. It works perfect BUT we do have Warlock in our raid group witch also put on mob Critical mass witch overwrite Scorch "Shadow and Flame" - Wowhead LINK2 and its not detected by PQR



    Can someone help me makes it work ?
    I would like to add that knowing you have a warlock in your raid you can remove this from the rotation. The profile will cast scorch at the start (no matter what) when it will just be over written by the numerous Shadow Bolts or Incinerates. I suggest hard casting a Pyroblast pre-pull and puting up the initial magical critical strike debuff as well as doing more damage that a measly scorch, not to mention your Hot Streak should proc more than once every 30 seconds.

  7. #7882
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by deadpanstiffy View Post
    I would like to add that knowing you have a warlock in your raid you can remove this from the rotation. The profile will cast scorch at the start (no matter what) when it will just be over written by the numerous Shadow Bolts or Incinerates. I suggest hard casting a Pyroblast pre-pull and puting up the initial magical critical strike debuff as well as doing more damage that a measly scorch, not to mention your Hot Streak should proc more than once every 30 seconds.
    why not make a custom rotation that the user can select when the player sees there is a lock in the raid? A rotation without scortch unless moving etc. Just food for thought.
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  8. #7883
    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 imdasandman View Post
    why not make a custom rotation that the user can select when the player sees there is a lock in the raid? A rotation without scortch unless moving etc. Just food for thought.
    Something like?

    Name Scortch
    SpellID: 2948
    Delay: 0

    Code:
    local scorch = UnitDebuffID("Target", 22959)
    local shadow = UnitDebuffID("Target", 17800)
    PQR_ResetMovementTime = 0.5
    
    if PQR_IsMoving() or scorch == nil or shadow == nil then
    	return true
    end
    Last edited by firepong; 03-19-2012 at 05:08 PM.

  9. #7884
    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)
    Here is the current version for my Hunter Profiles.

    This supports three hunter specs.

    HUNTER_PQR2_V1.rar

    This does still need some extensive testing.

    Known issues:

    Aspect switching not working for the pvp focus generating shots.

    Changes:

    Incorporated Crystal_Tech's time to die code
    Hour Of Twilight auto button click is bypassed if you have deterrence running

    Planned changes:

    Clean up concussive shot code
    Setup functions for immunities, and pvp checks

    Code contributors:
    bu_ba_911
    Crystal_Tech
    Sheuron
    Xelper

    Tester:
    MastaRage (who helps test code when his mailbox is not otherwise full)
    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

  10. #7885
    Taran32's Avatar Knight-Lieutenant
    Reputation
    9
    Join Date
    Feb 2012
    Posts
    369
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are there any Mage Leveling profiles currently out there for PQR1 or PQR2? Was thinking about dusting mine off, but only if if the profiles were around. All I could locate were some older Frost PVP ones that only support level 85. Mine's currently 70.

  11. #7886
    kirjozzz's Avatar Member
    Reputation
    3
    Join Date
    Apr 2010
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi Guys)
    So what I've been trying to do here is to improve Ash's Restor Druid Profile. And here it is Click here
    This changes are made for Dragon Soul (Heroic) Fast Healing
    So what I have changed there is that the profile wont cast slow healing. Unless you are low on mana or a player needs a strong heal.
    But I came to one problem which I dont know how to solve) The problem is with Swiftmend, so what I need it to do is to cast on cooldown and cast it in a biggest group of people standing together.
    Can anyone help me with it please?

  12. #7887
    madturk's Avatar Sergeant
    Reputation
    17
    Join Date
    Feb 2011
    Posts
    55
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone has a mage profiles working with latest version of PQR?

  13. #7888
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by firepong View Post
    Something like?

    Name Scortch
    SpellID: 2948
    Delay: 0

    Code:
    local scorch = UnitDebuffID("Target", 22959)
    local shadow = UnitDebuffID("Target", 17800)
    PQR_ResetMovementTime = 0.5
    
    if PQR_IsMoving() or scorch == nil or shadow == nil then
    	return true
    end
    Yea prob something like that. That should help the person who was requesting it and maybe sheron can implament that into his fire mage pve profile


    Sent from my SAMSUNG-SGH-I717 using Tapatalk
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  14. #7889
    Deva's Avatar Master Sergeant
    Reputation
    17
    Join Date
    Oct 2011
    Posts
    74
    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
    I need some more feedback on my HPally Rewrite before I start adding more things in....

    Is the ability to easily Customize it exciting anyone? Does it work properly? Other than adding more things, what else should I do with whats currently in place?
    Originally Posted by kickmydog View Post
    This does still need some extensive testing.
    @bu_ba_911, I'll test your WIP HPally profile tomorrow when LFR resets, after configuring some values to see if customizing it works.

    @kickmydog, I might be able to test yours tonight on a heroic fight.

  15. #7890
    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 imdasandman View Post
    Yea prob something like that. That should help the person who was requesting it and maybe sheron can implament that into his fire mage pve profile


    Sent from my SAMSUNG-SGH-I717 using Tapatalk
    but the profile already did that

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