Custodian.lua 595 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/RylecsTest/Custodian.lua
  3. Script Author : Rylec
  4. Script Date : 2021.02.16 12:02:34
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. math.randomseed(os.time())
  13. voice = math.random (1,3)
  14. PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1008.mp3", "", "", 0, 0, Spawn)
  15. Say(NPC, "Welcome to the Animation Hall. Hail a person and he will tell you his secret!")
  16. end
  17. function respawn(NPC)
  18. end