OldenHighguard.lua 843 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/TheThunderingSteppes/OldenHighguard.lua
  3. Script Purpose : Olden Highguard
  4. Script Author : Jabantiz
  5. Script Date : 2016.06.13
  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/olden_highguard/steppes/oldenhighguard000.mp3", "", "", 101809511, 0, Spawn)
  17. AddConversationOption(conversation, "Be careful, this land can be pretty dangerous.")
  18. StartConversation(conversation, NPC, Spawn, "Heather and I just made the journey from the docks. The trip went smoothly, although we felt like there were eyes upon us from high atop the rocks.")
  19. end