tomb_vermin14.lua 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. --[[
  2. Script Name : tomb_vermin14.lua
  3. Script Purpose : Waypoint Path for tomb_vermin14.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 05:40:17 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, 156.72, -6.57, -74.3, 2, 0)
  18. MovementLoopAddLocation(NPC, 156.98, -6.96, -63.82, 2, 0)
  19. MovementLoopAddLocation(NPC, 157.46, -7.01, -59.17, 2, 0)
  20. MovementLoopAddLocation(NPC, 172.83, -7.01, -44.42, 2, 0)
  21. MovementLoopAddLocation(NPC, 177.37, -7.07, -44.89, 2, 0)
  22. MovementLoopAddLocation(NPC, 190.88, -7.04, -54.72, 2, 0)
  23. MovementLoopAddLocation(NPC, 216.78, -6.96, -55.08, 2, 0)
  24. MovementLoopAddLocation(NPC, 232.35, -6.47, -38.53, 2, 0)
  25. MovementLoopAddLocation(NPC, 245.92, -6.49, -49.9, 2, 0)
  26. MovementLoopAddLocation(NPC, 238.3, -6.49, -62.83, 2, 0)
  27. MovementLoopAddLocation(NPC, 236.78, -6.86, -79.4, 2, 0)
  28. MovementLoopAddLocation(NPC, 242.63, -6.86, -81.3, 2, 0)
  29. MovementLoopAddLocation(NPC, 247.22, -6.86, -81.2, 2, 0)
  30. MovementLoopAddLocation(NPC, 247.3, -6.86, -111.29, 2, 0)
  31. MovementLoopAddLocation(NPC, 235.41, -6.86, -111.43, 2, 0)
  32. MovementLoopAddLocation(NPC, 235.06, -6.86, -91.93, 2, 0)
  33. MovementLoopAddLocation(NPC, 222.35, -6.82, -91.99, 2, 0)
  34. MovementLoopAddLocation(NPC, 222.19, -6.81, -79.49, 2, 0)
  35. MovementLoopAddLocation(NPC, 213.38, -6.92, -77.23, 2, 0)
  36. MovementLoopAddLocation(NPC, 209.68, -6.83, -80.81, 2, 0)
  37. MovementLoopAddLocation(NPC, 207.74, -6.98, -91.18, 2, 0)
  38. MovementLoopAddLocation(NPC, 209.68, -6.83, -80.81, 2, 0)
  39. MovementLoopAddLocation(NPC, 213.38, -6.92, -77.23, 2, 0)
  40. MovementLoopAddLocation(NPC, 222.19, -6.81, -79.49, 2, 0)
  41. MovementLoopAddLocation(NPC, 222.35, -6.82, -91.99, 2, 0)
  42. MovementLoopAddLocation(NPC, 235.06, -6.86, -91.93, 2, 0)
  43. MovementLoopAddLocation(NPC, 235.41, -6.86, -111.43, 2, 0)
  44. MovementLoopAddLocation(NPC, 247.3, -6.86, -111.29, 2, 0)
  45. MovementLoopAddLocation(NPC, 247.22, -6.86, -81.2, 2, 0)
  46. MovementLoopAddLocation(NPC, 242.63, -6.86, -81.3, 2, 0)
  47. MovementLoopAddLocation(NPC, 236.78, -6.86, -79.4, 2, 0)
  48. MovementLoopAddLocation(NPC, 238.3, -6.49, -62.83, 2, 0)
  49. MovementLoopAddLocation(NPC, 245.92, -6.49, -49.9, 2, 0)
  50. MovementLoopAddLocation(NPC, 232.35, -6.47, -38.53, 2, 0)
  51. MovementLoopAddLocation(NPC, 216.78, -6.96, -55.08, 2, 0)
  52. MovementLoopAddLocation(NPC, 190.88, -7.04, -54.72, 2, 0)
  53. MovementLoopAddLocation(NPC, 177.37, -7.07, -44.89, 2, 0)
  54. MovementLoopAddLocation(NPC, 172.83, -7.01, -44.42, 2, 0)
  55. MovementLoopAddLocation(NPC, 157.46, -7.01, -59.17, 2, 0)
  56. MovementLoopAddLocation(NPC, 156.98, -6.96, -63.82, 2, 0)
  57. MovementLoopAddLocation(NPC, 156.72, -6.57, -74.3, 2, 0)
  58. end