GhilVentur.lua 535 B

1234567891011121314151617181920212223242526
  1. --[[
  2. Script Name : GhilVentur.lua
  3. Script Purpose : Ghil Ventur
  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("How can I help you?")
  18. Dialog.AddOption("It's nothing. Sorry to bother you.", "dlg_1")
  19. Dialog.Start()
  20. end