View Single Post
03-18-14, 01:30 PM   #1
Spawnova
A Warpwood Thunder Caller
 
Spawnova's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2012
Posts: 96
Some abilities do not show in combat log

I'm trying to get abilities like concussive shot and silencing shot to show in the combat log but with no success, I'm just curious if such spells are not displayed in the combat log or if I'm missing something.

Here's what I have so far.

Lua Code:
  1. elseif event == "COMBAT_LOG_EVENT" then
  2.     local eventType,_,_,sourceName,_,_,_,_,_,_ = ...
  3.     if sourceName then
  4.         if string.find(sourceName, UnitName("player")) then
  5.             local sID,sID2 = select(11,...)
  6.             print(sID .. sID2)
  7.         end
  8.     end
  9. end

I have tried searching before posting, couldn't find anything. =[

Last edited by Spawnova : 03-18-14 at 01:41 PM.
  Reply With Quote