tomb_sentry6.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : tomb_sentry6.lua
  3. Script Purpose : Waypoint Path for tomb_sentry6.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 09:22:56 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, 242.29, -6.86, -173.68, 2, math.random(0,7))
  18. MovementLoopAddLocation(NPC, 247.37, -6.86, -154.94, 2, math.random(0,7))
  19. MovementLoopAddLocation(NPC, 253.46, -6.86, -160.33, 2, math.random(0,7))
  20. MovementLoopAddLocation(NPC, 238.07, -6.86, -166.1, 2, math.random(0,7))
  21. MovementLoopAddLocation(NPC, 242.26, -6.86, -165.41, 2, math.random(0,7))
  22. MovementLoopAddLocation(NPC, 242.66, -6.86, -173.23, 2, math.random(0,7))
  23. MovementLoopAddLocation(NPC, 245.55, -6.86, -155.75, 2, math.random(0,7))
  24. MovementLoopAddLocation(NPC, 252.68, -6.86, -169.39, 2, math.random(0,7))
  25. MovementLoopAddLocation(NPC, 239.31, -6.86, -157.45, 2, math.random(0,7))
  26. MovementLoopAddLocation(NPC, 233.54, -6.86, -153.21, 2, math.random(0,7))
  27. MovementLoopAddLocation(NPC, 236.16, -6.86, -162.93, 2, math.random(0,7))
  28. MovementLoopAddLocation(NPC, 253.05, -6.86, -154.55, 2, math.random(0,7))
  29. MovementLoopAddLocation(NPC, 241.15, -6.86, -166.68, 2, math.random(0,7))
  30. MovementLoopAddLocation(NPC, 243.76, -6.86, -154.84, 2, math.random(0,7))
  31. MovementLoopAddLocation(NPC, 241.15, -6.86, -166.68, 2, math.random(0,7))
  32. MovementLoopAddLocation(NPC, 253.05, -6.86, -154.55, 2, math.random(0,7))
  33. MovementLoopAddLocation(NPC, 236.16, -6.86, -162.93, 2, math.random(0,7))
  34. MovementLoopAddLocation(NPC, 233.54, -6.86, -153.21, 2, math.random(0,7))
  35. MovementLoopAddLocation(NPC, 239.31, -6.86, -157.45, 2, math.random(0,7))
  36. MovementLoopAddLocation(NPC, 252.68, -6.86, -169.39, 2, math.random(0,7))
  37. MovementLoopAddLocation(NPC, 245.55, -6.86, -155.75, 2, math.random(0,7))
  38. MovementLoopAddLocation(NPC, 242.66, -6.86, -173.23, 2, math.random(0,7))
  39. MovementLoopAddLocation(NPC, 242.26, -6.86, -165.41, 2, math.random(0,7))
  40. MovementLoopAddLocation(NPC, 238.07, -6.86, -166.1, 2, math.random(0,7))
  41. MovementLoopAddLocation(NPC, 253.46, -6.86, -160.33, 2, math.random(0,7))
  42. MovementLoopAddLocation(NPC, 247.37, -6.86, -154.94, 2, math.random(0,7))
  43. MovementLoopAddLocation(NPC, 242.29, -6.86, -173.68, 2, math.random(0,7))
  44. end