ASewerSlime392030.lua 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392030.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392030.lua
  4. Script Author : Rylec
  5. Script Date : 09-27-2019 05:45:16
  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, -152.27, 0.00, 217.08, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -151.99, 0.01, 218.08, 2, math.random(10, 22))
  19. MovementLoopAddLocation(NPC, -154.37, 0.02, 218.25, 2, 0)
  20. MovementLoopAddLocation(NPC, -155.20, 0.00, 218.06, 2, math.random(10, 22))
  21. MovementLoopAddLocation(NPC, -159.08, 0.24, 217.26, 2, 0)
  22. MovementLoopAddLocation(NPC, -159.05, 0.24, 217.26, 2, math.random(10, 22))
  23. MovementLoopAddLocation(NPC, -154.45, 0.00, 216.50, 2, 0)
  24. MovementLoopAddLocation(NPC, -151.53, 0.08, 215.37, 2, math.random(10, 22))
  25. MovementLoopAddLocation(NPC, -151.51, 0.00, 216.30, 2, 0)
  26. end