View Single Post
02/12/23, 02:41 PM   #2
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Lua Code:
  1. local function ShowAnnoucement(text)
  2.     local message = CENTER_SCREEN_ANNOUNCE:CreateMessageParams(CSA_CATEGORY_SMALL_TEXT, SOUNDS.QUEST_OBJECTIVE_INCREMENT)
  3.     message:SetSound(SOUNDS.QUEST_OBJECTIVE_INCREMENT)
  4.     message:SetText(text)
  5.     message:MarkSuppressIconFrame()
  6.     message:MarkShowImmediately()
  7.     CENTER_SCREEN_ANNOUNCE:QueueMessage(message)
  8. end
  Reply With Quote