anEthernereundertaker.lua 645 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/TheGraveyard_Classic/anEthernereundertaker.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.08.29 12:08:57
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseDarkElf1.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_2_1052.mp3", "Do not interrupt my work or you may become part of it.", "no", 0, 0, Spawn, 0)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end