Geredo.lua 1.1 KB

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/FarJourneyFreeport/Geredo.lua
  3. Script Author : Cynnar
  4. Script Date : 2019.08.04 12:08:08
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. choice = math.random(0, 2)
  12. FaceTarget(NPC, Spawn)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "voiceover/english/geredo/boat_06p_tutorial02_fvo_001.mp3", "Do you happen to have any mechanical leg extenders? I want to see the water.", "agree", 2902186099, 1357276764)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "voiceover/english/geredo/boat_06p_tutorial02_fvo_002.mp3", "Thinking I should design a new mechanical boat. It would be perfect! Yes, perfect indeed!", "ponder", 2630458163, 1309095480)
  17. else
  18. PlayFlavor(NPC, "voiceover/english/geredo/boat_06p_tutorial02_fvo_003.mp3", "Owie, my elbow is sore! It always gets this way when I am near water. I could have helped rescue Anikra and Valik, but I wasn't able to swim. Thanks for helping me.", "grumble", 2653823570, 1351171804)
  19. end
  20. end
  21. function respawn(NPC)
  22. end