rifter_hatchling8.lua 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : rifter_hatchling8.lua
  3. Script Purpose : Waypoint Path for rifter_hatchling8.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 02:19:06 AM
  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, -164.64, -0.24, -76.05, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -170.53, -0.11, -73.87, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -175.67, -0.27, -74.34, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -178.68, -0.28, -87.86, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -188.03, -0.07, -92.22, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -196.58, -0.01, -94.38, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -199.56, -0.04, -100.2, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -194.63, -0.01, -105.3, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -185.36, -0.1, -105.5, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -181.47, -0.03, -111.57, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -185.36, -0.1, -105.5, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -194.63, -0.01, -105.3, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -199.56, -0.04, -100.2, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -196.58, -0.01, -94.38, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -188.03, -0.07, -92.22, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, -178.68, -0.28, -87.86, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, -175.67, -0.27, -74.34, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, -170.53, -0.11, -73.87, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, -164.64, -0.24, -76.05, 2, math.random(0,5))
  37. end