Nameplates for Dungeon bosses in addition to trash
besnija opened this issue ยท 0 comments
Describe the problem
The Nameplates option that is available for the trash mobs is not available at all for the Dungeon Bosses.
What steps will reproduce the problem?
-
Trash where there is an option to add the timer to the Nameplates, and where it IS enabled on one or more.
-
Boss where there are none nameplates option enabled and (I've gone through each spell) there are is no option to do so.
Not a single boss has the option to add a spell to track on the nameplates of the bosses, and I'd like that added as an option at least. It can be turned off by default .
What version of BigWigs are you using? (Stating 'latest' is not useful)
v11.0.41
Any additional information? (example: WoW language if not English)
This is a snippet of how it looks like in the "Trash" txt file.
function mod:GetOptions()
return {
-- Autotalk
"custom_on_autotalk",
439208, -- Silk Wrap
-- Engorged Crawler
438622, -- Toxic Rupture
-- Trilling Attendant
{434793, "NAMEPLATE"}, -- Resonant Barrage
-- Ixin
{434824, "NAMEPLATE"}, -- Web Spray
{434802, "NAMEPLATE"}, -- Horrifying Shrill
-- Nakt
{438877, "NAMEPLATE"}, -- Call of the Brood
-- Atik
{438826, "NAMEPLATE"}, -- Poisonous Cloud
-- Hulking Bloodguard
{453161, "NAMEPLATE"}, -- Impale
{465012, "HEALER", "NAMEPLATE"}, -- Slam
-- Sentry Stagshell
432967, -- Alarm Shrill
-- Bloodstained Webmage
{448248, "NAMEPLATE"}, -- Revolting Volley
-- Blood Overseer
{433845, "NAMEPLATE"}, -- Erupting Webs
{433841, "NAMEPLATE"}, -- Venom Volley
-- Nerubian Hauler
{434252, "NAMEPLATE"}, -- Massive Slam
}
As opposed to the boss one (KikatalTheHarvester for example.
function mod:GetOptions()
return {
432117, -- Cosmic Singularity
{432031, "ME_ONLY"}, -- Grasping Blood
432130, -- Erupting Webs
-- Normal / Heroic
432227, -- Venom Volley
-- Mythic
461487, -- Cultivated Poisons
}, {
[432227] = CL.normal.." / "..CL.heroic,
[461487] = CL.mythic,
}
end