Dalonalis.lua 1.0 KB

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : SpawnScripts/Castleview/Dalonalis.lua
  3. Script Purpose : Dalonalis <Banker>
  4. Script Author : Scatman
  5. Script Date : 2009.10.03
  6. Script Notes :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericVoiceOvers.lua")
  9. function spawn(NPC)
  10. end
  11. function respawn(NPC)
  12. spawn(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. conversation = CreateConversation()
  17. GenericHail(NPC, Spawn)
  18. PlayFlavor(NPC, "voiceover/english/banker_dalonalis/qey_village04/100_banker_dalonalis_housing_quest_1_53e2b5fb.mp3", "If you're opening a new account I can help you over here.", "", 626240462, 2916710020, Spawn)
  19. --Below mp3 keys doesn't work
  20. --PlayFlavor(NPC, "voiceover/english/banker_dalonalis/qey_village04/banker_dalonalis001.mp3", "", "", 2898017630, 956866327, Spawn)
  21. --AddConversationOption(conversation, "I have all the trust in you.")
  22. --StartConversation(conversation, NPC, Spawn, "Good day to you, adventurer. Your valuables will be safe in our vaults, I promise you that.")
  23. end