crypt_substance13.lua 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. --[[
  2. Script Name : crypt_substance13.lua
  3. Script Purpose : Waypoint Path for crypt_substance13.lua
  4. Script Author : Devn00b
  5. Script Date : 05/13/2020 01:02:18 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, -171.73, -0.11, -175.57, 2, 0)
  19. MovementLoopAddLocation(NPC, -172.36, -0.09, -187.5, 2, 0)
  20. MovementLoopAddLocation(NPC, -181.63, -0.16, -190.6, 2, 0)
  21. MovementLoopAddLocation(NPC, -188.36, -0.09, -190.34, 2, 0)
  22. MovementLoopAddLocation(NPC, -177.31, -0.05, -189.95, 2, 0)
  23. MovementLoopAddLocation(NPC, -172.58, -0.08, -182.05, 2, 0)
  24. MovementLoopAddLocation(NPC, -172.63, -0.12, -174.93, 2, 0)
  25. MovementLoopAddLocation(NPC, -165.55, 0.3, -170.19, 2, 0)
  26. MovementLoopAddLocation(NPC, -156.82, -0.23, -175.91, 2, 0)
  27. MovementLoopAddLocation(NPC, -142.94, -0.27, -177.19, 2, 0)
  28. MovementLoopAddLocation(NPC, -132.25, 0.48, -182.26, 2, 0)
  29. MovementLoopAddLocation(NPC, -121.77, 0.52, -180.08, 2, 0)
  30. MovementLoopAddLocation(NPC, -118.64, -0.12, -167.66, 2, 0)
  31. MovementLoopAddLocation(NPC, -121.39, 0.21, -153.73, 2, 0)
  32. MovementLoopAddLocation(NPC, -127.33, -0.06, -145.43, 2, 0)
  33. MovementLoopAddLocation(NPC, -129.67, -0.02, -138.66, 2, 0)
  34. MovementLoopAddLocation(NPC, -130.03, -0.04, -136.37, 2, 0)
  35. MovementLoopAddLocation(NPC, -136.94, 0.33, -136.44, 2, 0)
  36. MovementLoopAddLocation(NPC, -146.63, -0.13, -137.21, 2, 0)
  37. MovementLoopAddLocation(NPC, -156.08, -0.08, -137.07, 2, 0)
  38. MovementLoopAddLocation(NPC, -158.89, -0.05, -132.33, 2, 0)
  39. MovementLoopAddLocation(NPC, -160.08, -0.08, -127.27, 2, 0)
  40. MovementLoopAddLocation(NPC, -157.42, 0.49, -107.21, 2, 0)
  41. MovementLoopAddLocation(NPC, -145.26, -0.08, -76.43, 2, 0)
  42. MovementLoopAddLocation(NPC, -157.42, 0.49, -107.21, 2, 0)
  43. MovementLoopAddLocation(NPC, -160.08, -0.08, -127.27, 2, 0)
  44. MovementLoopAddLocation(NPC, -158.89, -0.05, -132.33, 2, 0)
  45. MovementLoopAddLocation(NPC, -156.08, -0.08, -137.07, 2, 0)
  46. MovementLoopAddLocation(NPC, -146.63, -0.13, -137.21, 2, 0)
  47. MovementLoopAddLocation(NPC, -136.94, 0.33, -136.44, 2, 0)
  48. MovementLoopAddLocation(NPC, -130.03, -0.04, -136.37, 2, 0)
  49. MovementLoopAddLocation(NPC, -129.67, -0.02, -138.66, 2, 0)
  50. MovementLoopAddLocation(NPC, -127.33, -0.06, -145.43, 2, 0)
  51. MovementLoopAddLocation(NPC, -121.39, 0.21, -153.73, 2, 0)
  52. MovementLoopAddLocation(NPC, -118.64, -0.12, -167.66, 2, 0)
  53. MovementLoopAddLocation(NPC, -121.77, 0.52, -180.08, 2, 0)
  54. MovementLoopAddLocation(NPC, -132.25, 0.48, -182.26, 2, 0)
  55. MovementLoopAddLocation(NPC, -142.94, -0.27, -177.19, 2, 0)
  56. MovementLoopAddLocation(NPC, -156.82, -0.23, -175.91, 2, 0)
  57. MovementLoopAddLocation(NPC, -165.55, 0.3, -170.19, 2, 0)
  58. MovementLoopAddLocation(NPC, -172.63, -0.12, -174.93, 2, 0)
  59. MovementLoopAddLocation(NPC, -172.58, -0.08, -182.05, 2, 0)
  60. MovementLoopAddLocation(NPC, -177.31, -0.05, -189.95, 2, 0)
  61. MovementLoopAddLocation(NPC, -188.36, -0.09, -190.34, 2, 0)
  62. MovementLoopAddLocation(NPC, -181.63, -0.16, -190.6, 2, 0)
  63. MovementLoopAddLocation(NPC, -172.36, -0.09, -187.5, 2, 0)
  64. MovementLoopAddLocation(NPC, -171.73, -0.11, -175.57, 2, 0)
  65. end