ASewerSlime392142.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392142.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392142.lua
  4. Script Author : Rylec
  5. Script Date : 09-23-2019 08:52:46
  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, -79.57, 0.02, 217.12, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -91.14, 0.00, 216.45, 2, 0)
  19. MovementLoopAddLocation(NPC, -97.85, 0.41, 215.69, 2, 0)
  20. MovementLoopAddLocation(NPC, -102.16, 0.00, 216.77, 2, 0)
  21. MovementLoopAddLocation(NPC, -99.00, 0.00, 217.04, 2, 0)
  22. MovementLoopAddLocation(NPC, -99.01, 0.00, 217.06, 2, math.random(10, 22))
  23. MovementLoopAddLocation(NPC, -95.53, 0.00, 216.18, 2, 0)
  24. MovementLoopAddLocation(NPC, -91.00, 0.25, 214.39, 2, math.random(10, 22))
  25. MovementLoopAddLocation(NPC, -87.78, 0.01, 216.09, 2, 0)
  26. MovementLoopAddLocation(NPC, -82.82, 0.10, 219.05, 2, 0)
  27. MovementLoopAddLocation(NPC, -82.89, 0.12, 219.11, 2, math.random(10, 22))
  28. MovementLoopAddLocation(NPC, -83.74, 0.00, 217.89, 2, 0)
  29. MovementLoopAddLocation(NPC, -87.86, 0.00, 217.50, 2, 0)
  30. MovementLoopAddLocation(NPC, -90.49, 0.00, 216.21, 2, math.random(10, 22))
  31. MovementLoopAddLocation(NPC, -92.47, 0.00, 216.56, 2, 0)
  32. MovementLoopAddLocation(NPC, -92.56, 0.00, 216.34, 2, math.random(10, 22))
  33. MovementLoopAddLocation(NPC, -86.16, 0.00, 217.61, 2, 0)
  34. MovementLoopAddLocation(NPC, -81.93, 0.06, 219.16, 2, 0)
  35. MovementLoopAddLocation(NPC, -80.74, 0.19, 219.51, 2, 0)
  36. end