Thread Tools Display Modes
01-08-22, 11:32 AM   #1
Comonier
A Defias Bandit
 
Comonier's Avatar
Join Date: Aug 2012
Posts: 3
Report on instance or raid or party chat when someone dispell or purge a target

Can you recommend or create something like that ?

I need a plugin that reports in the chosen chat whenever any player in the group uses a skill to remove a buff or debuff from a target

[dispells] on players:

Example in case one player removes a debuff from another player

Code:
%player% removed %spell% from %target% using %spell%
[purges] player or mob or boss

Example in case a player removes a buff from a player or mob or boss

Code:
%player% removed %spell% from %target% using %spell%
__________________
WoW Retail Player
WoW Classic Player
Diablo 3 Player
Minecraft Player
Bnet: comonier#1364
Discord: comonier#2597
Contact-me
  Reply With Quote
01-08-22, 02:09 PM   #2
Kanegasi
A Molten Giant
 
Kanegasi's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2007
Posts: 666
Here's a basic layout of something that prints dispels and steals to your chatframe only.

If you're not familiar with code, you can use https://addon.bool.no to make this an addon.

Lua Code:
  1. local f=CreateFrame("frame")
  2.  
  3. function f.COMBAT_LOG_EVENT_UNFILTERED(_,event,_,_,casterName,_,_,_,targetName,_,_,usedSpellID,usedSpellName,_,affectedAuraID,affectedAuraName)
  4.     if event=="SPELL_DISPEL" then
  5.         print(casterName.." dispelled "..targetName.."'s "..affectedAuraName.." using "..usedSpellName)
  6.     elseif event=="SPELL_STOLEN" then
  7.         print(casterName.." stole "..targetName.."'s "..affectedAuraName.." using "..usedSpellName)
  8.     end
  9. end
  10.  
  11. f:SetScript("OnEvent",function(self,event,...)
  12.     if event=="COMBAT_LOG_EVENT_UNFILTERED" then
  13.         self[event](CombatLogGetCurrentEventInfo())
  14.     else
  15.         self[event](...)
  16.     end
  17. end)
  18.  
  19. f:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Report on instance or raid or party chat when someone dispell or purge a target

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off