BoddyRunewick.lua 1.1 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/Freeport/BoddyRunewick.lua
  3. Script Author : Premierio015
  4. Script Date : 2020.07.15 07:07:53
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function hailed(NPC, Spawn)
  11. FaceTarget(NPC, Spawn)
  12. local choice = math.random(1, 3)
  13. if choice == 1 then
  14. PlayFlavor(NPC, "", "My Bootstrutter's Field Guide mentions a second building very similar to Zarvonn's tower. As soon as I graduate, I aim to find that second tower! Who knows? Maybe I'll find Jusathorn's long-lost spellbook!", "happy", 1689589577, 4560189, Spawn)
  15. elseif choice == 2 then
  16. PlayFlavor(NPC, "", "Is it true that Dolon Cogshimmer made an illusion of the Overlord? I wonder what happened to him???", "ponder", 1689589577, 4560189, Spawn)
  17. else
  18. PlayFlavor(NPC, "", "I hear that it was the necromancers, not coercers that killed the study of illusions.", "", 1689589577, 4560189, Spawn)
  19. end
  20. end
  21. function respawn(NPC)
  22. end
  23. --[[ PlayFlavor(NPC, "", "Humble apologies, sir!", "cringe", 1689589577, 4560189, Spawn) -- ]]