View Single Post
04/08/14, 03:04 AM   #2
Tajin
 
Tajin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 29
here, these two snippets should answer your question:

Lua Code:
  1. EVENT_MANAGER:RegisterForEvent("younameit", EVENT_CHAT_MESSAGE_CHANNEL, ParseChat)

Lua Code:
  1. local function ParseChat(id, channel, fromName, text)
  Reply With Quote