MerchantWilliam.lua 694 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/MerchantWilliam.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.01.03 08:01:33
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. PlayFlavor(NPC, "voiceover/english/merchant_william/commonlands/merchantwilliam000.mp3", "", "", 3295060090, 1575966932, Spawn)
  13. conversation = CreateConversation()
  14. AddConversationOption(conversation, "I'm not interested right now.")
  15. StartConversation(conversation, NPC, Spawn, "Buy here! Buy now! Best goods you'll find in all the land.")
  16. end
  17. function respawn(NPC)
  18. end