rifter_hatchling6.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. --[[
  2. Script Name : rifter_hatchling6.lua
  3. Script Purpose : Waypoint Path for rifter_hatchling6.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 04:13:41 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, -163.14, -0.08, -118.03, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, -188.14, 1.17, -118.98, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, -187.68, 1.17, -114.8, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, -176.89, 1.17, -125.99, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, -168.2, 1.17, -125.73, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, -170.35, -0.22, -131.34, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, -170.65, -0.27, -134.08, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, -210.05, -0.39, -132.68, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, -170.65, -0.27, -134.08, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, -170.35, -0.22, -131.34, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, -168.2, 1.17, -125.73, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, -176.89, 1.17, -125.99, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, -187.68, 1.17, -114.8, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, -188.14, 1.17, -118.98, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, -163.14, -0.08, -118.03, 2, math.random(0,10))
  33. end