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

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 25 of 25
  1. #16
    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

    [PQR] ToT List of Buffs, Debuffs and Interrupts
  2. #17
    cpowroks's Avatar Contributor
    Reputation
    180
    Join Date
    Oct 2007
    Posts
    623
    Thanks G/R
    1/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    are there any purgeable buffs that are in tot? Im updating my shaman profiles atm.
    WoW LUA Script Developer
    Need Something Custom? WarmaneScripts.com
    Skype - grapejuice111

  3. #18
    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)
    @ Vashiusa Both Corrupted Healing - Spell - World of Warcraft and Volatile Pathogen - Spell - World of Warcraft are in normal and heroic ...not sure on lfr
    also i believe Volatile Pathogen can be dispelled, however doing so will remove the Fully Mutated - Spell - World of Warcraft buffs as well

    @ cpowroks i don't play a shammy, although i am sure we will find out soon enough with this thread
    Last edited by Timekill; 04-17-2013 at 12:47 AM.

  4. #19
    fddbzz's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jan 2013
    Posts
    96
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nerder View Post
    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
    how do i add this?
    copy the code and paste it in ability editor, then save the spell as Detox?

  5. #20
    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)
    Originally Posted by fddbzz View Post
    how do i add this?
    copy the code and paste it in ability editor, then save the spell as Detox?
    yes, and set the Target to custom

  6. #21
    fddbzz's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Jan 2013
    Posts
    96
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Timekill View Post
    yes, and set the Target to custom
    awesome thanks!

  7. #22
    dotfry's Avatar Corporal
    Reputation
    21
    Join Date
    Mar 2012
    Posts
    29
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    My code for Horridon heroic (warrior):
    Code:
     local i_HorridonDinoId = 70688
     local i_HH_range = tonumber(PQI_fryWarriorPvE_HorridonHeroic_value)
     if i_HH_range == 1 then
      i_HH_range = 4
     else
      i_HH_range = 2
     end
     if UnitExists("focus") ~= nil then
      local iNPCId = tonumber((UnitGUID("focus")):sub(6, 10), 16)
      if iNPCId == i_HorridonDinoId and UnitIsDead("focus") ~= 1 then
       if CheckInteractDistance("focus", i_HH_range) == 1 then
        CastSpellByName(GetSpellInfo(122475), "focus")
        return true
       end
      end
     else
      if UnitExists("target") then
       local iNPCId = tonumber((UnitGUID("focus")):sub(6, 10), 16)
       if iNPCId == i_HorridonDinoId and UnitExists("focus") == nil then
        RunMacroText("/focus")
       end
      end
     end
    Saves Dino in Focus and attack it when in in 11\21 yards range. good luck

    when you see your dino, for a second get it in your target.

  8. #23
    jpoplive's Avatar Member
    Reputation
    13
    Join Date
    Mar 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nerder View Post

    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
    Does this also do magic dispel for mist specs?

  9. #24
    kuukuu's Avatar Contributor
    Reputation
    269
    Join Date
    Jul 2012
    Posts
    619
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jpoplive View Post
    Does this also do magic dispel for mist specs?
    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"
              or select(5, UnitDebuff(group..i, d)) =="Magic" ) then
                 PQR_CustomTarget = group..i 
                if PQR_UnitDistance("player", PQR_CustomTarget) <= 40 then
                     CastSpellByName(GetSpellInfo(115450), PQR_CustomTarget)
                 end
             end
         end
     end
    That should do poison, disease and magic I believe. Only issue I could see with it is it's not going to check if the debuff SHOULD be dispelled so you'll auto dispell things you shouldn't possibly, like Megara's cinders.
    Former PQR Developer

  10. #25
    jpoplive's Avatar Member
    Reputation
    13
    Join Date
    Mar 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone working on a update t15 bossmods

Page 2 of 2 FirstFirst 12

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