View Single Post
07/10/15, 02:44 AM   #2
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,579
The guild selection is using a callback.
You can hook into it with the following code:
Lua Code:
  1. CALLBACK_MANAGER:RegisterCallback("OnGuildSelected", function()
  2. local guildId = GUILD_SELECTOR.guildId
  3. -- your code
  4. end)
  Reply With Quote