NewmanHines.lua 512 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/WorkshopGood/NewmanHines.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.05.29 06:05:47
  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.."_1052.mp3", "", "hello", 0, 0, Spawn)
  15. end
  16. function respawn(NPC)
  17. end