View Single Post
02/12/23, 03:27 PM   #3
sinnereso
AddOn Author - Click to view addons
Join Date: Oct 2022
Posts: 245
Originally Posted by votan View Post
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
right on ty.. looks small enough to work with.. ill dig into it ina bit and figure out how to activate it
  Reply With Quote