Deephathom.lua 637 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/WillowWood/Deephathom.lua
  3. Script Purpose : Deephathom <Banker>
  4. Script Author : Scatman
  5. Script Date : 2009.09.15
  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_deephathom/qey_village05/banker_deephathom001.mp3", "", "", 1593106270, 3129539503, Spawn)
  17. AddConversationOption(conversation, "No, I'm not.")
  18. StartConversation(conversation, NPC, Spawn, "Please tell me you're not trying to get a loan with livestock collateral!")
  19. end