Rumdum.lua 735 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Freeport/Rumdum.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.12 11:07:32
  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/rumdum/fprt_east/quest_rumdum001.mp3", "", "", 531525914, 2611919563, Spawn)
  14. AddConversationOption(conversation, "Well, I suppose you are getting some of it in your mouth. I'll leave you to your ''drinking.'' ")
  15. StartConversation(conversation, NPC, Spawn, "What in Zek do you want? Can't ya see I'm drinkin' here...")
  16. end
  17. function respawn(NPC)
  18. end