InnkeeperMillbanks.lua 894 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/InnkeeperMillbanks.lua
  3. Script Purpose : Innkeeper Millbanks <Housing>
  4. Script Author : John Adams
  5. Script Date : 2008.09.23
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. conversation = CreateConversation()
  16. PlayFlavor(NPC, "innkeeper_millbanks/qey_village06/innkeeper010.mp3", "", "", 3433721579, 62806591, Spawn)
  17. AddConversationOption(conversation, "Yes, please.", "dlg_29_1")
  18. AddConversationOption(conversation, "Not right now, thanks.")
  19. StartConversation(conversation, NPC, Spawn, "Hello " .. GetName(Spawn) .. ", I am the Innkeeper for this village. We have received word of your arrival and have a room prepared for you. Would you like to know more about housing?")
  20. end