View Single Post
03/02/14, 11:26 PM   #6
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 648
When unsure of what gets passed through functions or script handlers, do something like this:
Lua Code:
  1. control:SetHandler("OnUpdate", function(...) d(...) end)

Or...
Lua Code:
  1. d(GetUnitBuffInfo("player", 1))

The d() function in ESO will dump everything to your chat frame.
  Reply With Quote