tomb_sentry7.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --[[
  2. Script Name : tomb_sentry7.lua
  3. Script Purpose : Waypoint Path for tomb_sentry7.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:29:49 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, 249.58, -6.94, -205.29, 2, 0)
  18. MovementLoopAddLocation(NPC, 257.84, -6.92, -199.52, 2, 0)
  19. MovementLoopAddLocation(NPC, 257.44, -6.99, -191.06, 2, 0)
  20. MovementLoopAddLocation(NPC, 248.97, -7.02, -179.44, 2, 0)
  21. MovementLoopAddLocation(NPC, 248.76, -6.86, -156.3, 2, 0)
  22. MovementLoopAddLocation(NPC, 249.09, -7.01, -179.54, 2, 0)
  23. MovementLoopAddLocation(NPC, 258.79, -7.01, -192.51, 2, 0)
  24. MovementLoopAddLocation(NPC, 254.79, -6.94, -201.76, 2, 0)
  25. MovementLoopAddLocation(NPC, 250.05, -6.95, -204.71, 2, 0)
  26. MovementLoopAddLocation(NPC, 230.73, -7.01, -204.39, 2, 0)
  27. MovementLoopAddLocation(NPC, 223.44, -7.01, -202.18, 2, 0)
  28. MovementLoopAddLocation(NPC, 217.36, -7.08, -195.76, 2, 0)
  29. MovementLoopAddLocation(NPC, 211.36, -7, -188.59, 2, 0)
  30. MovementLoopAddLocation(NPC, 209.54, -6.99, -168.58, 2, 0)
  31. MovementLoopAddLocation(NPC, 198.54, -7.02, -162.91, 2, 0)
  32. MovementLoopAddLocation(NPC, 176.09, -7.03, -164.18, 2, 0)
  33. MovementLoopAddLocation(NPC, 168.96, -7.07, -175.95, 2, 0)
  34. MovementLoopAddLocation(NPC, 169.12, -6.93, -185.54, 2, 0)
  35. MovementLoopAddLocation(NPC, 168.96, -7.07, -175.95, 2, 0)
  36. MovementLoopAddLocation(NPC, 176.09, -7.03, -164.18, 2, 0)
  37. MovementLoopAddLocation(NPC, 198.54, -7.02, -162.91, 2, 0)
  38. MovementLoopAddLocation(NPC, 209.54, -6.99, -168.58, 2, 0)
  39. MovementLoopAddLocation(NPC, 211.36, -7, -188.59, 2, 0)
  40. MovementLoopAddLocation(NPC, 217.36, -7.08, -195.76, 2, 0)
  41. MovementLoopAddLocation(NPC, 223.44, -7.01, -202.18, 2, 0)
  42. MovementLoopAddLocation(NPC, 230.73, -7.01, -204.39, 2, 0)
  43. MovementLoopAddLocation(NPC, 250.05, -6.95, -204.71, 2, 0)
  44. MovementLoopAddLocation(NPC, 254.79, -6.94, -201.76, 2, 0)
  45. MovementLoopAddLocation(NPC, 258.79, -7.01, -192.51, 2, 0)
  46. MovementLoopAddLocation(NPC, 249.09, -7.01, -179.54, 2, 0)
  47. MovementLoopAddLocation(NPC, 248.76, -6.86, -156.3, 2, 0)
  48. MovementLoopAddLocation(NPC, 248.97, -7.02, -179.44, 2, 0)
  49. MovementLoopAddLocation(NPC, 257.44, -6.99, -191.06, 2, 0)
  50. MovementLoopAddLocation(NPC, 257.84, -6.92, -199.52, 2, 0)
  51. MovementLoopAddLocation(NPC, 249.58, -6.94, -205.29, 2, 0)
  52. end