CorporalPeckett.lua 804 B

123456789101112131415161718192021222324252627
  1. --[[
  2. Script Name : CorporalPeckett.lua
  3. Script Purpose : Corporal Peckett
  4. Script Author : Jabantiz
  5. Script Date : 08/27/2019
  6. Script Notes : Auto-Generated from a chat log using SpawnScriptDesigner
  7. --]]
  8. require "SpawnScripts/Generic/DialogModule"
  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. Dialog.New(NPC, Spawn)
  17. Dialog.AddDialog("Hail, adventurer. I must warn you that Coldwind Point is not the safest place. Most of the garrison is on the march and the gnolls have been sighted nearby. I cannot guarantee your safety.")
  18. Dialog.AddVoiceover("voiceover/english/corporal_peckett/antonica/corporalpeckett000.mp3", 1322495237, 1823181494)
  19. Dialog.AddOption("I shall be fine. Thank you for the warning.")
  20. Dialog.Start()
  21. end