BaronZafimus.lua 710 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/WestFreeport/BaronZafimus.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.10.26 07:10:09
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC,Spawn)
  15. RandomGreeting(NPC, Spawn)
  16. end
  17. function RandomGreeting(NPC, Spawn)
  18. local choice = MakeRandomInt(1,1)
  19. if choice == 1 then
  20. PlayFlavor(NPC, "voiceover/english/baron_zafimus/fprt_west/100_soc_human_militia_officer_zafimus_no_23f6c2f6.mp3", "Mercy and kindness are for the undisciplined. Victory follows only from brutality. ", "", 2218115443, 3656215650, Spawn, 0)
  21. end
  22. end