Thread: Chat Categories
View Single Post
06/30/14, 03:45 AM   #4
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by zgrssd View Post
Somebody once made a partial list wich Chat Category Number (from the API) related to wich Category in the chat.
I am unable to remember where I saw it. Anybody knowing this so I can work the data into the Wiki?
If you want to get channel category, you can use:
Lua Code:
  1. local channelInfo = ZO_ChatSystem_GetChannelInfo()
  2. for channel in pairs(channelInfo) do
  3.    local category = GetChannelCategoryFromChannel(_G[channel])
  4.    d("Channel: "..channel..", category: "..category)
  5. end
  Reply With Quote