AmuliusRamio.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : AmuliusRamio.lua
  3. Script Purpose : Amulius Ramio
  4. Script Author : ParserGenerated (Replace this)
  5. Script Date : 08/28/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("Quiet you! Can't you see I'm trying to avoid being seen? Get down here before an orc spots you!")
  18. Dialog.AddOption("My mistake, what are you doing here? (crouch)", "dlg_3")
  19. Dialog.Start()
  20. --[[ Say() from this NPC
  21. Orphaned PlayFlavors
  22. --]]
  23. end
  24. function dlg_2(NPC, Spawn)
  25. FaceTarget(NPC, Spawn)
  26. Dialog.New(NPC, Spawn)
  27. Dialog.AddDialog("Get down and wait a moment, I think I hear an orc passing.")
  28. Dialog.Start()
  29. end
  30. function dlg_3(NPC, Spawn)
  31. FaceTarget(NPC, Spawn)
  32. Dialog.New(NPC, Spawn)
  33. Dialog.AddDialog("Alright listen, the Overlord passed down orders to have me find out where these orcs have been staging their attacks from. As you can see, this looks like an orc forward base if I ever saw one. I don't have time to get back to Freeport to get some extra troops, so I'm going to have to ask for your help on this. What say you?")
  34. Dialog.AddOption("Are you insane? I can't do this, I must go.")
  35. Dialog.Start()
  36. end