You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.4 KiB
54 lines
1.4 KiB
--------------------------------------------------------------------------------
|
|
-- Module Declaration
|
|
--
|
|
|
|
local mod, CL = BigWigs:NewBoss("Trial of the Champion Trash", 650)
|
|
if not mod then return end
|
|
mod.displayName = CL.trash
|
|
mod:RegisterEnableMob(
|
|
35005, -- Arelas Brightstar (Alliance)
|
|
35004 -- Jaeren Sunsworn (Horde)
|
|
)
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Localization
|
|
--
|
|
|
|
local L = mod:GetLocale()
|
|
if L then
|
|
L.custom_on_autotalk = "Autotalk"
|
|
L.custom_on_autotalk_desc = "Instantly select gossip option to start encounters."
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Initialization
|
|
--
|
|
|
|
function mod:GetOptions()
|
|
return {
|
|
"custom_on_autotalk",
|
|
}
|
|
end
|
|
|
|
function mod:OnBossEnable()
|
|
self:RegisterMessage("BigWigs_OnBossEngage", "Disable")
|
|
self:RegisterEvent("GOSSIP_SHOW")
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- Event Handlers
|
|
--
|
|
|
|
function mod:GOSSIP_SHOW()
|
|
local mobId = self:MobId(self:UnitGUID("npc"))
|
|
if self:GetOption("custom_on_autotalk") and (mobId == 35004 or mobId == 35005) then
|
|
local gossipTbl = self:GetGossipOptions()
|
|
if gossipTbl then
|
|
if gossipTbl[2] then
|
|
self:SelectGossipOption(2) -- skip roleplay on Grand Champions if possible
|
|
elseif gossipTbl[1] then
|
|
self:SelectGossipOption(1)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|