- Added Raid Tools bracket on Options Panel.
- Added Interrupt, cooldown usage and death announcers for raid tools. - New API: _detalhes:SendMsgToChannel (msg, channel, towho) seng a message to a chat channel. - New API: _detalhes:CreateEventListener() creates a table which accept Details Event Registration with RegisterEvent and receive events through OnDetailsEvent(). - New API: _detalhes:GetCooldownList (class) return a table with spellids of defensive cooldowns of the requested class. - New Hook: DETAILS_HOOK_INTERRUPT call when a interrupt happens during a combat. - Framework: Added CreateImage (parent, texture, w, h, layer, coords, member, name) - Framework: Added CreateSwitch (parent, on_switch, default_value, w, h, ltext, rtext, member, name, color_inverted, switch_func, return_func)
This commit is contained in:
@@ -822,6 +822,31 @@ local default_player_data = {
|
||||
savedStyles = {},
|
||||
--> instance config
|
||||
local_instances_config = {},
|
||||
--> announcements
|
||||
announce_deaths = {
|
||||
enabled = false,
|
||||
only_first = 5,
|
||||
last_hits = 1,
|
||||
where = 1,
|
||||
},
|
||||
announce_cooldowns = {
|
||||
enabled = false,
|
||||
channel = "RAID",
|
||||
ignored_cooldowns = {},
|
||||
custom = "",
|
||||
},
|
||||
announce_interrupts = {
|
||||
enabled = false,
|
||||
channel = "SAY",
|
||||
whisper = "",
|
||||
next = "",
|
||||
custom = "",
|
||||
},
|
||||
announce_prepots = {
|
||||
enabled = true,
|
||||
reverse = false,
|
||||
channel = "SELF",
|
||||
},
|
||||
}
|
||||
|
||||
_detalhes.default_player_data = default_player_data
|
||||
|
||||
Reference in New Issue
Block a user