SentrySmythe.lua 564 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Antonica/SentrySmythe.lua
  3. Script Author : Dorbin
  4. Script Date : 2023.05.10 08:05:16
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseHuman1.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_1_1034.mp3","","agree",0,0,Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end