SoldierPellenos.lua 767 B

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SoldierPellenos.lua
  3. Script Purpose : Soldier Pellenos
  4. Script Author : Jabantiz
  5. Script Date : 08/29/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("Hello there! Come for tea? I'm sorry, but I'm completely out of sugar! Ask the gnolls; they killed everyone here. Yes, everyone ... but me. And now I don't know where the teapot is. But there's no sugar, so it doesn't matter. Hee hee!")
  18. Dialog.AddOption("Goodbye.")
  19. Dialog.Start()
  20. --[[ Say() from this NPC
  21. Orphaned PlayFlavors
  22. --]]
  23. end