DockworkerSeeley.lua 855 B

1234567891011121314151617181920212223242526272829303132333435
  1. --[[
  2. Script Name : SpawnScripts/ButcherblockMountains/DockworkerSeeley.lua
  3. Script Purpose : Dockworker Seeley
  4. Script Author : jakejp
  5. Script Date : 2018.06.04
  6. Script Notes : Auto-Generated Conversation from PacketParser Data
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function respawn(NPC)
  11. spawn(NPC)
  12. end
  13. function InRange(NPC, Spawn)
  14. end
  15. function LeaveRange(NPC, Spawn)
  16. end
  17. function hailed(NPC, Spawn)
  18. FaceTarget(NPC, Spawn)
  19. local choice = math.random(1,2)
  20. if choice == 1 then
  21. PlayFlavor(NPC, "", "Thank Brell we built that wall. Who knows what sort of evil lurks within that old mansion.", "", 1689589577, 4560189, Spawn)
  22. elseif choice == 2 then
  23. PlayFlavor(NPC, "", "Best of luck to you, adventurer. These lands are sure to offer more than your share of excitement.", "", 1689589577, 4560189, Spawn)
  24. end
  25. end