View Single Post
11-01-10, 08:45 AM   #3
Luzzifus
A Warpwood Thunder Caller
 
Luzzifus's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2007
Posts: 94
You have to explicitly add "self" to the function header as the first parameter. Like:

lua Code:
  1. function OnEvent(self, event, ...)
  2.    -- here you can do things with self
  3. end

**edit: too late
  Reply With Quote