aJuggernauttaskmaster.lua 653 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/SouthFreeport/aJuggernauttaskmaster.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.05.04 04:05:04
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/UnknownLanguage.lua")
  9. function spawn(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. if HasLanguage(Spawn, 14) then
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_3_1002.mp3", "If you're not wearing a Blood Red Headband then we have little to share.", "glare", 0, 0, Spawn, 14)
  15. else
  16. Garbled(NPC, Spawn, Faction)
  17. end
  18. end
  19. function respawn(NPC)
  20. spawn(NPC)
  21. end