Wowpedia

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

READ MORE

Wowpedia
Advertisement

Unregisters an event that the object is currently monitoring.

obj:UnregisterEvent("event");

Parameters

Arguments

"event"
The name of the event the object wishes to no longer monitor. See Events.

Returns

nil

Example

myChatAddon:UnregisterEvent("CHAT_MSG");

Result

Code in the <OnEvent> section of your addon would no longer fire anytime a chat message was received.

Details

Unregisters an event that an object is currently monitoring. Note: LUA is a case-sensitive language - there is no function called 'UnRegisterEvent'.
See also: Frame:RegisterEvent
Advertisement