BarriusIacomus.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Freeport/BarriusIacomus.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.12 11:07:15
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local conversation = CreateConversation()
  13. PlayFlavor(NPC, "voiceover/english/barrius_iacomus/fprt_east/mer_barrius_iacomus.mp3", "", "", 1480714381, 1891140502, Spawn)
  14. AddConversationOption(conversation, "I am not thirsty. Thank you anyways.")
  15. AddConversationOption(conversation, "What kind of trouble?", "dlg01")
  16. StartConversation(conversation, NPC, Spawn, "Ahoy! Welcome to the Seafarer's Roost. Name's Barrius, but all these scallywags just call me Bar. Be sure to mind your manners. I don't want any more trouble!")
  17. end
  18. function dlg01(NPC, Spawn)
  19. FaceTarget(NPC, Spawn)
  20. local conversation = CreateConversation()
  21. PlayFlavor(NPC, "voiceover/english/barrius_iacomus/fprt_east/mer_barrius_iacomus000.mp3", "", "", 2301022032, 1978382838, Spawn)
  22. AddConversationOption(conversation, "Okay.")
  23. StartConversation(conversation, NPC, Spawn, "One drink too many, one word misspoken, one chair accidentally broken over someone's head and before you know it, we have the Militia in here keeping the peace. Dead drunks don't pay their tabs!")
  24. end
  25. function respawn(NPC)
  26. end