View Single Post
05/28/19, 10:04 AM   #4
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
Looking through the code, it seems the game is using the method GetChannelName to determine what guild name to show. It uses the information in chatdata.lua to that end. You could try to overwrite the channel info so it no longer uses a dynamic name for the guild channels and then set your custom name like this:

Lua Code:
  1. local ChannelInfo = ZO_ChatSystem_GetChannelInfo()
  2. local channelId = CHAT_CHANNEL_GUILD_1
  3. ChannelInfo[channelId].dynamicName = false
  4. ChannelInfo[channelId].name = "MyCustomGuildName"
  Reply With Quote