ErasmoCrane.lua 722 B

12345678910111213141516171819202122232425
  1. --[[
  2. Script Name : SpawnScripts/Freeport/ErasmoCrane.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.21 09:07:05
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. conversation = CreateConversation()
  13. PlayFlavor(NPC, "voiceover/english/erasmo_crane/fprt_south/erasmocrane000.mp3", "", "no", 895369696, 3352176574, Spawn)
  14. AddConversationOption(conversation, "You are excused.")
  15. StartConversation(conversation, NPC, Spawn, "Hello, citizen. I'd love to chat, but I'm busy getting my ship ready for a short fishing trip. If you'll excuse me...")
  16. end
  17. function respawn(NPC)
  18. end