anEthernerecaretaker.lua 620 B

12345678910111213141516171819202122
  1. --[[
  2. Script Name : SpawnScripts/TheGraveyard_Classic/anEthernerecaretaker.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.08.29 12:08:02
  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_1047.mp3", "Be gone! I have work to do.", "glare", 0, 0, Spawn, 0)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end