shriller19.lua 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. --[[
  2. Script Name : shriller19.lua
  3. Script Purpose : Waypoint Path for shriller19.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 03:57:59 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, -142.46, 0.08, -147.7, 2, 0)
  19. MovementLoopAddLocation(NPC, -142.51, -0.08, -142.7, 2, 0)
  20. MovementLoopAddLocation(NPC, -148.63, -0.08, -142.44, 2, 0)
  21. MovementLoopAddLocation(NPC, -148.82, -0.08, -147.77, 2, 0)
  22. MovementLoopAddLocation(NPC, -142.5, -0.08, -142.44, 2, 0)
  23. MovementLoopAddLocation(NPC, -142.5, -0.07, -147.77, 2, 0)
  24. MovementLoopAddLocation(NPC, -148.83, -0.02, -142.42, 2, 0)
  25. MovementLoopAddLocation(NPC, -148.82, -0.08, -147.77, 2, 0)
  26. MovementLoopAddLocation(NPC, -147.23, -0.08, -143.07, 2, 0)
  27. MovementLoopAddLocation(NPC, -146.08, -0.06, -146.58, 2, 0)
  28. MovementLoopAddLocation(NPC, -143.99, -0.08, -142.86, 2, 0)
  29. MovementLoopAddLocation(NPC, -145.79, -0.08, -142.58, 2, 0)
  30. MovementLoopAddLocation(NPC, -145.74, -0.06, -144.62, 2, 0)
  31. MovementLoopAddLocation(NPC, -143.11, -0.08, -144.87, 2, 0)
  32. MovementLoopAddLocation(NPC, -148.21, -0.08, -144.82, 2, 0)
  33. MovementLoopAddLocation(NPC, -145.59, 0.93, -147.84, 2, 0)
  34. MovementLoopAddLocation(NPC, -145.4, -0.06, -146.58, 2, 0)
  35. MovementLoopAddLocation(NPC, -147.28, -0.08, -145.95, 2, 0)
  36. MovementLoopAddLocation(NPC, -143.25, -0.07, -145.76, 2, 0)
  37. MovementLoopAddLocation(NPC, -142.83, -0.08, -143.58, 2, 0)
  38. MovementLoopAddLocation(NPC, -147.58, -0.08, -143.65, 2, 0)
  39. MovementLoopAddLocation(NPC, -142.83, -0.08, -143.58, 2, 0)
  40. MovementLoopAddLocation(NPC, -143.25, -0.07, -145.76, 2, 0)
  41. MovementLoopAddLocation(NPC, -147.28, -0.08, -145.95, 2, 0)
  42. MovementLoopAddLocation(NPC, -145.4, -0.06, -146.58, 2, 0)
  43. MovementLoopAddLocation(NPC, -145.59, 0.93, -147.84, 2, 0)
  44. MovementLoopAddLocation(NPC, -148.21, -0.08, -144.82, 2, 0)
  45. MovementLoopAddLocation(NPC, -143.11, -0.08, -144.87, 2, 0)
  46. MovementLoopAddLocation(NPC, -145.74, -0.06, -144.62, 2, 0)
  47. MovementLoopAddLocation(NPC, -145.79, -0.08, -142.58, 2, 0)
  48. MovementLoopAddLocation(NPC, -143.99, -0.08, -142.86, 2, 0)
  49. MovementLoopAddLocation(NPC, -146.08, -0.06, -146.58, 2, 0)
  50. MovementLoopAddLocation(NPC, -147.23, -0.08, -143.07, 2, 0)
  51. MovementLoopAddLocation(NPC, -148.82, -0.08, -147.77, 2, 0)
  52. MovementLoopAddLocation(NPC, -148.83, -0.02, -142.42, 2, 0)
  53. MovementLoopAddLocation(NPC, -142.5, -0.07, -147.77, 2, 0)
  54. MovementLoopAddLocation(NPC, -142.5, -0.08, -142.44, 2, 0)
  55. MovementLoopAddLocation(NPC, -148.82, -0.08, -147.77, 2, 0)
  56. MovementLoopAddLocation(NPC, -148.63, -0.08, -142.44, 2, 0)
  57. MovementLoopAddLocation(NPC, -142.51, -0.08, -142.7, 2, 0)
  58. MovementLoopAddLocation(NPC, -142.46, 0.08, -147.7, 2, 0)
  59. end