Drizzcopper.lua 671 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Baubbleshire/Drizzcopper.lua
  3. Script Purpose : Drizzcopper <Banker>
  4. Script Author : Scatman
  5. Script Date : 2009.09.27
  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/banker_drizzcopper/qey_village06/banker_drizzcopper001.mp3", "", "", 2748969711, 2912964073, Spawn)
  17. AddConversationOption(conversation, "Oh. Thank you anyway.")
  18. StartConversation(conversation, NPC, Spawn, "The answer to your question is no. I'm afraid we don't extend lines of credit at this time.")
  19. end