tomb_guard6.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : tomb_guard6.lua
  3. Script Purpose : Waypoint Path for tomb_guard6.lua
  4. Script Author : Devn00b
  5. Script Date : 06/21/2020 12:53:26 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, 8.11, 0.9, 7.76, 2, 0)
  18. MovementLoopAddLocation(NPC, 10.9, 0.27, 4.2, 2, 0)
  19. MovementLoopAddLocation(NPC, 11.59, 0.01, -1.67, 2, 0)
  20. MovementLoopAddLocation(NPC, 8.86, 0, -5.94, 2, 0)
  21. MovementLoopAddLocation(NPC, 5.76, 0, -9.64, 2, math.random(0,20))
  22. MovementLoopAddLocation(NPC, 8.99, 0, -6.6, 2, 0)
  23. MovementLoopAddLocation(NPC, 10.61, 0, 0.01, 2, 0)
  24. MovementLoopAddLocation(NPC, 10.31, 0, 1.97, 2, 0)
  25. MovementLoopAddLocation(NPC, 9.55, 0.48, 5.39, 2, 0)
  26. MovementLoopAddLocation(NPC, 5.53, 1.24, 8.82, 2, 0)
  27. MovementLoopAddLocation(NPC, 0.5, 2.09, 11.69, 2, 0)
  28. MovementLoopAddLocation(NPC, -5.31, 2.9, 9.79, 2, 0)
  29. MovementLoopAddLocation(NPC, -9.24, 3.51, 7.91, 2, 0)
  30. MovementLoopAddLocation(NPC, -11.59, 4, 4.7, 2, 0)
  31. MovementLoopAddLocation(NPC, -12.27, 4.6, 0.94, 2, 0)
  32. MovementLoopAddLocation(NPC, -11.15, 5.1, -2.64, 2, 0)
  33. MovementLoopAddLocation(NPC, -8.57, 5.82, -7.35, 2, 0)
  34. MovementLoopAddLocation(NPC, -5.61, 6.33, -10.06, 2, 0)
  35. MovementLoopAddLocation(NPC, -2.06, 7.03, -11.78, 2, 0)
  36. MovementLoopAddLocation(NPC, 0.24, 7.04, -11.83, 2, math.random(0,20))
  37. MovementLoopAddLocation(NPC, -2.06, 7.03, -11.78, 2, 0)
  38. MovementLoopAddLocation(NPC, -5.61, 6.33, -10.06, 2, 0)
  39. MovementLoopAddLocation(NPC, -8.57, 5.82, -7.35, 2, 0)
  40. MovementLoopAddLocation(NPC, -11.15, 5.1, -2.64, 2, 0)
  41. MovementLoopAddLocation(NPC, -12.27, 4.6, 0.94, 2, 0)
  42. MovementLoopAddLocation(NPC, -11.59, 4, 4.7, 2, 0)
  43. MovementLoopAddLocation(NPC, -9.24, 3.51, 7.91, 2, 0)
  44. MovementLoopAddLocation(NPC, -5.31, 2.9, 9.79, 2, 0)
  45. MovementLoopAddLocation(NPC, 0.5, 2.09, 11.69, 2, 0)
  46. MovementLoopAddLocation(NPC, 5.53, 1.24, 8.82, 2, 0)
  47. MovementLoopAddLocation(NPC, 9.55, 0.48, 5.39, 2, 0)
  48. MovementLoopAddLocation(NPC, 10.31, 0, 1.97, 2, 0)
  49. MovementLoopAddLocation(NPC, 10.61, 0, 0.01, 2, 0)
  50. MovementLoopAddLocation(NPC, 8.99, 0, -6.6, 2, 0)
  51. MovementLoopAddLocation(NPC, 5.76, 0, -9.64, 2, math.random(0,20))
  52. MovementLoopAddLocation(NPC, 8.86, 0, -5.94, 2, 0)
  53. MovementLoopAddLocation(NPC, 11.59, 0.01, -1.67, 2, 0)
  54. MovementLoopAddLocation(NPC, 10.9, 0.27, 4.2, 2, 0)
  55. MovementLoopAddLocation(NPC, 8.11, 0.9, 7.76, 2, 0)
  56. end