crawler_hatchling11.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : crawler_hatchling11.lua
  3. Script Purpose : Waypoint Path for crawler_hatchling11.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 02:12:26 PM
  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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -110.36, -0.08, -114.52, 2, math.random(0,20))
  19. MovementLoopAddLocation(NPC, -117.78, -0.11, -116.52, 2, math.random(0,20))
  20. MovementLoopAddLocation(NPC, -120.84, 0.58, -120.75, 2, math.random(0,20))
  21. MovementLoopAddLocation(NPC, -125.84, -0.11, -127.61, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, -127.81, -0.16, -135.35, 2, math.random(0,20))
  23. MovementLoopAddLocation(NPC, -145.38, -0.15, -137.36, 2, math.random(0,20))
  24. MovementLoopAddLocation(NPC, -154.56, -0.1, -136.81, 2, math.random(0,20))
  25. MovementLoopAddLocation(NPC, -157.56, -0.16, -132.68, 2, math.random(0,20))
  26. MovementLoopAddLocation(NPC, -156.72, 0.37, -107.92, 2, math.random(0,20))
  27. MovementLoopAddLocation(NPC, -160.47, -0.07, -95.19, 2, math.random(0,20))
  28. end