TVal.lua 737 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Longshadow/TVal.lua
  3. Script Purpose : T`Val <Banker>
  4. Script Author : John Adams
  5. Script Date : 2008.09.29
  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, "voiceover/english/banker_t_val/fprt_hood05/bnk_banker_tval.mp3", "", "", 90970771, 1252206294, Spawn)
  17. AddConversationOption(conversation, "I'll keep that in mind.")
  18. StartConversation(conversation, NPC, Spawn, "Hail to you. Currency exchange, secure storage of goods, I offer a range of services tailored to the needs of Freeport guild members.")
  19. end