DolthyryrHelyanwe.lua 768 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/Castleview/DolthyryrHelyanwe.lua
  3. Script Purpose : Dolthyryr Helyanwe
  4. Script Author : Scatman
  5. Script Date : 2009.10.03
  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/tutorial_revamp/dolthyryr_helyanwe/qey_village04/newbie_path_froglok/dolthyryrhelyanwe004.mp3", "", "", 848573287, 2779070481)
  17. AddConversationOption(conversation, "Indeed, for at least those within the walls.")
  18. AddConversationOption(conversation, "Rather beautiful, I would agree.")
  19. StartConversation(conversation, NPC, Spawn, "Another glorious day in the city of Qeynos, wouldn't you agree?")
  20. end