Geddard.lua 749 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/antonica/Geddard.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.06.26 07:06:47
  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_geddard/antonica/merchantgeddard000.mp3", "", "", 1542141863, 1883255955, Spawn)
  13. conversation = CreateConversation()
  14. AddConversationOption(conversation, "Nothing right now thanks.")
  15. StartConversation(conversation, NPC, Spawn, "Welcome to Gnollslayer Keep! I'm Geddard, the only merchant for leagues. If I don't got it, you don't need it! What'll it be for you today?")
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end