Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement
This is a user-defined function that you can copy and paste into your addon.

Add this method to your frame to register multiple events.

Code[]

local function RegisterEvents(self, ...)
	for i=1,select('#', ...) do
		self:RegisterEvent(select(i, ...))
	end
end

Example[]

-- Create an anonymous blank frame
local frame = CreateFrame('Frame')
frame.RegisterEvents = RegisterEvents

-- Tell the API to listen for 'VARIABLES_LOADED', 'ADDON_LOADED', and 'MERCHANT_SHOW'
frame:RegisterEvents('VARIABLES_LOADED', 'ADDON_LOADED', 'MERCHANT_SHOW')

Or register events for a frame without attaching RegisterEvents to the frame:

-- Create an anonymous blank frame
local frame = CreateFrame('Frame')

-- Tell the API to listen for 'VARIABLES_LOADED', 'ADDON_LOADED', and 'MERCHANT_SHOW'
RegisterEvents(frame, 'VARIABLES_LOADED', 'ADDON_LOADED', 'MERCHANT_SHOW')
Advertisement