ASewerSlime392019.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392019.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392019.lua
  4. Script Author : Rylec
  5. Script Date : 09-18-2019 09:10:33
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -151.21, 1.34, 60.87, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -156.08, 1.34, 61.50, 2, 0)
  19. MovementLoopAddLocation(NPC, -158.26, 1.57, 61.92, 2, 0)
  20. MovementLoopAddLocation(NPC, -162.73, 1.22, 61.92, 2, 0)
  21. MovementLoopAddLocation(NPC, -162.63, 1.22, 61.91, 2, math.random(10, 22))
  22. MovementLoopAddLocation(NPC, -158.93, 1.58, 62.25, 2, math.random(10, 22))
  23. MovementLoopAddLocation(NPC, -153.57, 1.34, 61.94, 2, 0)
  24. MovementLoopAddLocation(NPC, -151.51, 1.34, 61.99, 2, math.random(10, 22))
  25. MovementLoopAddLocation(NPC, -155.26, 1.34, 61.98, 2, 0)
  26. MovementLoopAddLocation(NPC, -155.03, 1.34, 61.99, 2, math.random(10, 22))
  27. MovementLoopAddLocation(NPC, -153.29, 1.34, 61.37, 2, 0)
  28. MovementLoopAddLocation(NPC, -151.89, 1.34, 61.27, 2, 0)
  29. end