tomb_guard24.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : tomb_guard24.lua
  3. Script Purpose : Waypoint Path for tomb_guard24.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 10:14:52 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, 170.34, -2.03, -209.09, 2, 0)
  18. MovementLoopAddLocation(NPC, 174.64, -1.41, -207.97, 2, 0)
  19. MovementLoopAddLocation(NPC, 178.88, -0.79, -204.68, 2, 0)
  20. MovementLoopAddLocation(NPC, 180.94, 0, -200.41, 2, 0)
  21. MovementLoopAddLocation(NPC, 180.98, 0.09, -195.79, 2, 0)
  22. MovementLoopAddLocation(NPC, 179.11, -0.61, -203.89, 2, 0)
  23. MovementLoopAddLocation(NPC, 176.45, -1.27, -208.12, 2, 0)
  24. MovementLoopAddLocation(NPC, 172.47, -1.84, -210.04, 2, 0)
  25. MovementLoopAddLocation(NPC, 167.92, -2.38, -210.53, 2, 0)
  26. MovementLoopAddLocation(NPC, 163.48, -3.1, -208.87, 2, 0)
  27. MovementLoopAddLocation(NPC, 160.35, -3.74, -205.91, 2, 0)
  28. MovementLoopAddLocation(NPC, 157.98, -4.36, -201.5, 2, 0)
  29. MovementLoopAddLocation(NPC, 157.67, -4.96, -196.92, 2, 0)
  30. MovementLoopAddLocation(NPC, 158.72, -5.71, -191.19, 2, 0)
  31. MovementLoopAddLocation(NPC, 162.22, -6.32, -188.41, 2, 0)
  32. MovementLoopAddLocation(NPC, 167.74, -6.94, -186.83, 2, 0)
  33. MovementLoopAddLocation(NPC, 168.97, -6.9, -182.48, 2, 0)
  34. MovementLoopAddLocation(NPC, 167.74, -6.94, -186.83, 2, 0)
  35. MovementLoopAddLocation(NPC, 162.22, -6.32, -188.41, 2, 0)
  36. MovementLoopAddLocation(NPC, 158.72, -5.71, -191.19, 2, 0)
  37. MovementLoopAddLocation(NPC, 157.67, -4.96, -196.92, 2, 0)
  38. MovementLoopAddLocation(NPC, 157.98, -4.36, -201.5, 2, 0)
  39. MovementLoopAddLocation(NPC, 160.35, -3.74, -205.91, 2, 0)
  40. MovementLoopAddLocation(NPC, 163.48, -3.1, -208.87, 2, 0)
  41. MovementLoopAddLocation(NPC, 167.92, -2.38, -210.53, 2, 0)
  42. MovementLoopAddLocation(NPC, 172.47, -1.84, -210.04, 2, 0)
  43. MovementLoopAddLocation(NPC, 176.45, -1.27, -208.12, 2, 0)
  44. MovementLoopAddLocation(NPC, 179.11, -0.61, -203.89, 2, 0)
  45. MovementLoopAddLocation(NPC, 180.98, 0.09, -195.79, 2, 0)
  46. MovementLoopAddLocation(NPC, 180.94, 0, -200.41, 2, 0)
  47. MovementLoopAddLocation(NPC, 178.88, -0.79, -204.68, 2, 0)
  48. MovementLoopAddLocation(NPC, 174.64, -1.41, -207.97, 2, 0)
  49. MovementLoopAddLocation(NPC, 170.34, -2.03, -209.09, 2, 0)
  50. end