CargomasterLibertius.lua 677 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/CargomasterLibertius.lua
  3. Script Author : dorbin
  4. Script Date : 2024.01.13 04:01:25
  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/cargomaster_libertius/commonlands/quest/qst_cargomaster_libertius_callout1_d5d85945.mp3", "I've nothing to offer you, traveler.", "no", 100112139, 1434536394, Spawn, 0)
  21. end
  22. end