CaylessChambers.lua 712 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Nettleville/CaylessChambers.lua
  3. Script Purpose : Cayless Chambers <Armorsmith>
  4. Script Author : Scatman
  5. Script Date : 2009.08.12
  6. Script Notes :
  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, "voiceover/english/smith_cayless_chambers/qey_village01/smithcayless000.mp3", "", "", 360119992, 780476339, Spawn)
  17. AddConversationOption(conversation, "Just looking.")
  18. StartConversation(conversation, NPC, Spawn, "Welcome to the Knight's Edge. Looking for fine quality armors? I'm your lady. Place your order and stand back.")
  19. end