Valik.lua 877 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : SpawnScripts/FarJourneyFreeport/Valik.lua
  3. Script Author : Cynnar
  4. Script Date : 2019.05.19 10:05:23
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. choice = math.random(0, 1)
  12. FaceTarget(NPC, Spawn)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/valik/boat_06p_tutorial02/001_refugee_valik_002_eaf98080.mp3", "I can't wait to reach the island, dry land and dry food. Fish is only good for a while, even for a Kerran.", "", 1919549905, 2798982211)
  15. else
  16. PlayFlavor(NPC, "voiceover/english/valik/boat_06p_tutorial02/001_refugee_valik_003_96415f8d.mp3", "I hear the Island of Refuge is the home of the Far Seas Trading Company. Maybe I will be able to find some work there.", "", 2997651561, 1452360635)
  17. end
  18. end
  19. function respawn(NPC)
  20. end