Add files via upload

This commit is contained in:
Dinkledork
2023-02-04 03:28:42 -07:00
committed by GitHub
parent 26e5833bdd
commit d460eaf33e
23 changed files with 1355 additions and 150 deletions

12
EventAnnounce.lua Normal file
View File

@@ -0,0 +1,12 @@
local eventRegistered = false
local function SendWorldAnnouncement(eventid)
if eventid == 17 then
SendWorldMessage("The Lich King has sent forth his forces to attack the people of Azeroth. Quickly adventurers, defend your cities!")
end
end
if not eventRegistered then
RegisterServerEvent(17, SendWorldAnnouncement)
eventRegistered = true
end