tomb_vermin7.lua 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --[[
  2. Script Name : tomb_vermin7.lua
  3. Script Purpose : Waypoint Path for tomb_vermin7.lua
  4. Script Author : Devn00b
  5. Script Date : 06/12/2020 03:49:42 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 5.41, -0.08, -197.78, 2, 0)
  18. MovementLoopAddLocation(NPC, 8.61, -0.08, -180.95, 2, 0)
  19. MovementLoopAddLocation(NPC, 10.16, -0.08, -195.36, 2, 0)
  20. MovementLoopAddLocation(NPC, 16.5, -0.08, -201.82, 2, 0)
  21. MovementLoopAddLocation(NPC, 24.72, -0.08, -205, 2, 0)
  22. MovementLoopAddLocation(NPC, 27.42, -0.08, -201.27, 2, 0)
  23. MovementLoopAddLocation(NPC, 25.84, -0.08, -195.46, 2, 0)
  24. MovementLoopAddLocation(NPC, 35.36, -0.09, -189.44, 2, 0)
  25. MovementLoopAddLocation(NPC, 41.25, -0.08, -196.01, 2, 0)
  26. MovementLoopAddLocation(NPC, 46.02, -0.08, -194.37, 2, 0)
  27. MovementLoopAddLocation(NPC, 51.89, -0.08, -188.7, 2, 0)
  28. MovementLoopAddLocation(NPC, 46.14, -0.08, -184.46, 2, 0)
  29. MovementLoopAddLocation(NPC, 46.55, -0.08, -178.82, 2, 0)
  30. MovementLoopAddLocation(NPC, 48.43, -0.08, -171.77, 2, 0)
  31. MovementLoopAddLocation(NPC, 53.28, -0.09, -167.33, 2, 0)
  32. MovementLoopAddLocation(NPC, 55.74, -0.24, -166.78, 2, 0)
  33. MovementLoopAddLocation(NPC, 64.09, -0.26, -166.39, 2, 0)
  34. MovementLoopAddLocation(NPC, 77.94, -0.44, -166.68, 2, 0)
  35. MovementLoopAddLocation(NPC, 93.65, -0.08, -167.63, 2, 0)
  36. MovementLoopAddLocation(NPC, 100.4, -0.08, -180.03, 2, 0)
  37. MovementLoopAddLocation(NPC, 80.32, -0.08, -181.03, 2, 0)
  38. MovementLoopAddLocation(NPC, 80.6, -0.08, -159.32, 2, 0)
  39. MovementLoopAddLocation(NPC, 92, -0.08, -159.17, 2, 0)
  40. MovementLoopAddLocation(NPC, 98.18, -0.08, -174.25, 2, 0)
  41. MovementLoopAddLocation(NPC, 97.84, -0.08, -174.18, 2, 0)
  42. MovementLoopAddLocation(NPC, 85.24, -0.08, -157.37, 2, 0)
  43. MovementLoopAddLocation(NPC, 97.84, -0.08, -174.18, 2, 0)
  44. MovementLoopAddLocation(NPC, 98.18, -0.08, -174.25, 2, 0)
  45. MovementLoopAddLocation(NPC, 92, -0.08, -159.17, 2, 0)
  46. MovementLoopAddLocation(NPC, 80.6, -0.08, -159.32, 2, 0)
  47. MovementLoopAddLocation(NPC, 80.32, -0.08, -181.03, 2, 0)
  48. MovementLoopAddLocation(NPC, 100.4, -0.08, -180.03, 2, 0)
  49. MovementLoopAddLocation(NPC, 93.65, -0.08, -167.63, 2, 0)
  50. MovementLoopAddLocation(NPC, 77.94, -0.44, -166.68, 2, 0)
  51. MovementLoopAddLocation(NPC, 64.09, -0.26, -166.39, 2, 0)
  52. MovementLoopAddLocation(NPC, 55.74, -0.24, -166.78, 2, 0)
  53. MovementLoopAddLocation(NPC, 53.28, -0.09, -167.33, 2, 0)
  54. MovementLoopAddLocation(NPC, 48.43, -0.08, -171.77, 2, 0)
  55. MovementLoopAddLocation(NPC, 46.55, -0.08, -178.82, 2, 0)
  56. MovementLoopAddLocation(NPC, 46.14, -0.08, -184.46, 2, 0)
  57. MovementLoopAddLocation(NPC, 51.89, -0.08, -188.7, 2, 0)
  58. MovementLoopAddLocation(NPC, 46.02, -0.08, -194.37, 2, 0)
  59. MovementLoopAddLocation(NPC, 41.25, -0.08, -196.01, 2, 0)
  60. MovementLoopAddLocation(NPC, 35.36, -0.09, -189.44, 2, 0)
  61. MovementLoopAddLocation(NPC, 25.84, -0.08, -195.46, 2, 0)
  62. MovementLoopAddLocation(NPC, 27.42, -0.08, -201.27, 2, 0)
  63. MovementLoopAddLocation(NPC, 24.72, -0.08, -205, 2, 0)
  64. MovementLoopAddLocation(NPC, 16.5, -0.08, -201.82, 2, 0)
  65. MovementLoopAddLocation(NPC, 10.16, -0.08, -195.36, 2, 0)
  66. MovementLoopAddLocation(NPC, 8.61, -0.08, -180.95, 2, 0)
  67. MovementLoopAddLocation(NPC, 5.41, -0.08, -197.78, 2, 0)
  68. end