tomb_guard14.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : tomb_guard14.lua
  3. Script Purpose : Waypoint Path for tomb_guard14.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 05:27:03 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, 219.48, -6.91, -42.99, 2, math.random(0,7))
  18. MovementLoopAddLocation(NPC, 218.49, -6.86, -44.24, 2, math.random(0,7))
  19. MovementLoopAddLocation(NPC, 219.63, -6.95, -38.85, 2, math.random(0,7))
  20. MovementLoopAddLocation(NPC, 216.96, -6.95, -38.9, 2, math.random(0,7))
  21. MovementLoopAddLocation(NPC, 215.28, -6.97, -39.4, 2, math.random(0,7))
  22. MovementLoopAddLocation(NPC, 215.69, -6.96, -40.82, 2, math.random(0,7))
  23. MovementLoopAddLocation(NPC, 218.55, -6.95, -39.56, 2, math.random(0,7))
  24. MovementLoopAddLocation(NPC, 215.14, -6.97, -43.01, 2, math.random(0,7))
  25. MovementLoopAddLocation(NPC, 217.01, -6.91, -41.74, 2, math.random(0,7))
  26. MovementLoopAddLocation(NPC, 216.6, -6.95, -43.47, 2, math.random(0,7))
  27. MovementLoopAddLocation(NPC, 219.25, -6.92, -43.83, 2, math.random(0,7))
  28. MovementLoopAddLocation(NPC, 217.97, -6.9, -41.81, 2, math.random(0,7))
  29. MovementLoopAddLocation(NPC, 219.74, -6.92, -41.47, 2, math.random(0,7))
  30. MovementLoopAddLocation(NPC, 218.24, -6.89, -37.96, 2, math.random(0,7))
  31. MovementLoopAddLocation(NPC, 219.74, -6.92, -41.47, 2, math.random(0,7))
  32. MovementLoopAddLocation(NPC, 217.97, -6.9, -41.81, 2, math.random(0,7))
  33. MovementLoopAddLocation(NPC, 219.25, -6.92, -43.83, 2, math.random(0,7))
  34. MovementLoopAddLocation(NPC, 216.6, -6.95, -43.47, 2, math.random(0,7))
  35. MovementLoopAddLocation(NPC, 217.01, -6.91, -41.74, 2, math.random(0,7))
  36. MovementLoopAddLocation(NPC, 215.14, -6.97, -43.01, 2, math.random(0,7))
  37. MovementLoopAddLocation(NPC, 218.55, -6.95, -39.56, 2, math.random(0,7))
  38. MovementLoopAddLocation(NPC, 215.69, -6.96, -40.82, 2, math.random(0,7))
  39. MovementLoopAddLocation(NPC, 215.28, -6.97, -39.4, 2, math.random(0,7))
  40. MovementLoopAddLocation(NPC, 216.96, -6.95, -38.9, 2, math.random(0,7))
  41. MovementLoopAddLocation(NPC, 219.63, -6.95, -38.85, 2, math.random(0,7))
  42. MovementLoopAddLocation(NPC, 218.49, -6.86, -44.24, 2, math.random(0,7))
  43. MovementLoopAddLocation(NPC, 219.48, -6.91, -42.99, 2, math.random(0,7))
  44. end