GilcirithElensar.lua 634 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Castleview/GilcirithElensar.lua
  3. Script Purpose : Gilcirith Elensar
  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/gilcirith_elensar/qey_village04/newbie_path_froglok/gilcirithelensar004.mp3", "", "", 259212641, 3674286430)
  17. AddConversationOption(conversation, "Thank you.")
  18. StartConversation(conversation, NPC, Spawn, "Welcome, traveler.")
  19. end