[PQR] ToT List of Buffs, Debuffs and Interrupts menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 25
  1. #1
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [PQR] ToT List of Buffs, Debuffs and Interrupts

    This thread is to compile a list of Buffs, Debuffs and Boss specific items for profile writers.


    Jin'rokh the Breaker - NPC - World of Warcraft


    Ionization - Spell - World of Warcraft (Heroic) Dispelled only when out of range of other players and does not have Fluidity buff



    Horridon - NPC - World of Warcraft


    Dire Call - Spell - World of Warcraft (Heroic) periodically cast on the add summoned by this spell, (still need add ID) maybe add to focus for functionality

    Farraki-adds:


    Gurubashi-adds:

    Venom Bolt Volley - Spell - World of Warcraft - Needs to be interrupted, can be dispelled by pally or druid

    Drakaki-adds:


    Amani-adds:

    Hex of Confusion - Spell - World of Warcraft - Dispell

    Fireball - Spell - World of Warcraft - Needs to be interrupted

    These spells that needs to be dispelled instantly could be added to the dispell-list if there is any, will be of great help to healers on Horridon!


    Counsel of Elders:





    Tortos - NPC - World of Warcraft



    Mageara:

    Cinders - Spell - World of Warcraft - Dispel instantly after player is >5 yds away from other players


    Primordius - NPC - World of Warcraft




    Dark Animus - NPC - World of Warcraft


    Matter Swap - Spell - World of Warcraft - Dispel with 5 seconds remaining

    Twin Consorts:





    This thread is a work in progress, any help compiling info would be greatly appreciated

    Thanks to Ninjaderp for Horridon info
    Last edited by Timekill; 04-17-2013 at 12:35 AM.

    [PQR] ToT List of Buffs, Debuffs and Interrupts
  2. #2
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thrown together for a Mage De-Curse, can be tailored to what you need
    Code:
    if IsInRaid() then
          group = "raid"
     elseif IsInGroup() then
          group = "party"
      end
      for i=1, GetNumGroupMembers() do
          if UnitDebuffID(group..i, 136512) ~= nil then --Hex of Confusion. Make sure its whatever harmful one you need dispelled
               PQR_CustomTarget = group..i 
              if PQR_UnitDistance("player", PQR_CustomTarget) <= 40 then
                      CastSpellByName(GetSpellInfo(475), PQR_CustomTarget) --475 is the mage dispell, so change that to what you need
               end
         end
     end
    For Monks you can use this with your Detox...
    Code:
    if IsInRaid() then
         group = "raid" elseif IsInGroup() then
         group = "party" end  for i = 1, GetNumGroupMembers() do
         for d = 1, 40 do
             if ( select(5, UnitDebuff(group..i, d)) == "Poison"
              or select(5, UnitDebuff(group..i, d)) == "Disease" ) then
                 PQR_CustomTarget = group..i 
                if PQR_UnitDistance("player", PQR_CustomTarget) <= 40 then
                     CastSpellByName(GetSpellInfo(115450), PQR_CustomTarget)
                 end
             end
         end
     end

  3. #3
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ******reserved********

  4. #4
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ******reserved*******

  5. #5
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Nerder, I added the monk one to my personal profile earlier this week cant wait to try it +rep but on cd for you
    Last edited by Timekill; 04-15-2013 at 02:42 PM.

  6. #6
    Mavmins's Avatar Contributor
    Reputation
    165
    Join Date
    Oct 2012
    Posts
    606
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    what about water buff on Jinrokh ?

  7. #7
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

  8. #8
    alexxjr's Avatar Sergeant
    Reputation
    5
    Join Date
    Oct 2012
    Posts
    67
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The poison debuff Venom Bolt Volley leaves can be dispelled. I know druids can.

  9. #9
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Timekill View Post
    This thread is to compile a list of Buffs and Debuffs for profile writers.


    Jin'rokh the Breaker - NPC - World of Warcraft

    Ionization - Spell - World of Warcraft (Heroic) Dispelled only when out of range of other players and does not have Fluidity buff

    How many range distance for safe dispel? Thanks for list! +rep
    Status: Inactive. Don't PM me, pls drop a msg to vachiusa (at) mientrung <dot> com

  10. #10
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vachiusa View Post
    How many range distance for safe dispel? Thanks for list! +rep
    4 yards from anyone. This is what I'm using on my monk for it:
    Code:
    --RangeCheck Function
    
    function RangeCheck()
         
    if IsInRaid() then
         group = "raid"
    elseif IsInGroup() then
        group = "party"
    end
     
    for i = 1, GetNumGroupMembers() do
             if PQR_UnitDistance("player", group..i) < 4 then
                 return true
             else
                 return false
             end
         end
     end
    Code:
    if ( UnitDebuffID("player", 138733) ~= nil and UnitDebuffID("player", 138002) == nil ) and RangeCheck() == true and not isMoving then
             if PQR_SpellAvailable(122783) and IsSpellKnown(122783) then
                 CastSpellByName(GetSpellInfo(122783), "player")--Cast Diffuse Magic if more then 4 yards
             end
     end

  11. #11
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the feedback i will continue to work on the list as long as there is interest added post #10 to description


    Any ideas on Crystal shell?
    Last edited by Timekill; 04-16-2013 at 11:03 AM.

  12. #12
    Vachiusa's Avatar Contributor
    Reputation
    256
    Join Date
    Jan 2013
    Posts
    227
    Thanks G/R
    22/4
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Status: Inactive. Don't PM me, pls drop a msg to vachiusa (at) mientrung <dot> com

  13. #13
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Vashiusa added to list +rep on cd
    Last edited by Timekill; 04-16-2013 at 11:52 AM.

  14. #14
    TehVoyager's Avatar I just love KuRIoS
    Reputation
    1282
    Join Date
    Nov 2010
    Posts
    2,733
    Thanks G/R
    85/470
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Timekill View Post
    Gurubashi-adds:

    Venom Bolt Volley - Spell - World of Warcraft - Needs to be interrupted, can be dispelled by pally or druid

    Drakaki-adds:

    Both those spells are dispellable by monks of any spec. i routienly dispell them as a brewmaster monk during our raids.

    Detox - Spell - World of Warcraft <-- the monk dispell


    (don't post things I post to Patreon.)

  15. #15
    Timekill's Avatar Master Sergeant
    Reputation
    54
    Join Date
    Dec 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Awesome TehVoyager, thx,
    I believe Nerder has some good code in post #2 to automate that in pqr, I will test it myself tonight

Page 1 of 2 12 LastLast

Similar Threads

  1. PVP Buffs/Debuffs Abilities ID List
    By Abramacadabra in forum Probably Engine
    Replies: 4
    Last Post: 05-19-2015, 05:46 AM
  2. Stopcasting/casting when certain buffs/debuffs come up in PQR ?
    By Yumoo in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 10-22-2012, 09:34 AM
  3. [Tip]Slowing down bosses in hyjal for buff ress and rest
    By festis_1 in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 12-13-2007, 09:56 AM
  4. List of Repacks, Compiles and Databases for ManGOS, Ascent, Antrix.
    By faxmunky in forum World of Warcraft Emulator Servers
    Replies: 2
    Last Post: 11-04-2007, 04:02 AM
  5. [Ascent] List of Class Trainers and Weapon Masters NPC spawn ID's
    By mkenzi in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 10-21-2007, 11:41 AM
All times are GMT -5. The time now is 11:05 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