tomb_guard13.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : tomb_guard13.lua
  3. Script Purpose : Waypoint Path for tomb_guard13.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 05:26:59 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, 217.67, -6.91, -43.16, 2, math.random(0,7))
  18. MovementLoopAddLocation(NPC, 220.71, -6.97, -41.04, 2, math.random(0,7))
  19. MovementLoopAddLocation(NPC, 219.59, -6.92, -42.25, 2, math.random(0,7))
  20. MovementLoopAddLocation(NPC, 216.11, -6.97, -38.93, 2, math.random(0,7))
  21. MovementLoopAddLocation(NPC, 214.19, -6.94, -42.14, 2, math.random(0,7))
  22. MovementLoopAddLocation(NPC, 217.06, -6.91, -42.16, 2, math.random(0,7))
  23. MovementLoopAddLocation(NPC, 220.13, -6.96, -39.72, 2, math.random(0,7))
  24. MovementLoopAddLocation(NPC, 216.3, -6.97, -38.36, 2, math.random(0,7))
  25. MovementLoopAddLocation(NPC, 219.95, -6.94, -41.83, 2, math.random(0,7))
  26. MovementLoopAddLocation(NPC, 216.38, -6.96, -43.76, 2, math.random(0,7))
  27. MovementLoopAddLocation(NPC, 216.15, -6.94, -41.31, 2, math.random(0,7))
  28. MovementLoopAddLocation(NPC, 219.15, -6.89, -42.2, 2, math.random(0,7))
  29. MovementLoopAddLocation(NPC, 218.95, -6.89, -43.24, 2, math.random(0,7))
  30. MovementLoopAddLocation(NPC, 218.96, -6.94, -40.74, 2, math.random(0,7))
  31. MovementLoopAddLocation(NPC, 220.85, -6.97, -40.74, 2, math.random(0,7))
  32. MovementLoopAddLocation(NPC, 218.96, -6.94, -40.74, 2, math.random(0,7))
  33. MovementLoopAddLocation(NPC, 218.95, -6.89, -43.24, 2, math.random(0,7))
  34. MovementLoopAddLocation(NPC, 219.15, -6.89, -42.2, 2, math.random(0,7))
  35. MovementLoopAddLocation(NPC, 216.15, -6.94, -41.31, 2, math.random(0,7))
  36. MovementLoopAddLocation(NPC, 216.38, -6.96, -43.76, 2, math.random(0,7))
  37. MovementLoopAddLocation(NPC, 219.95, -6.94, -41.83, 2, math.random(0,7))
  38. MovementLoopAddLocation(NPC, 216.3, -6.97, -38.36, 2, math.random(0,7))
  39. MovementLoopAddLocation(NPC, 220.13, -6.96, -39.72, 2, math.random(0,7))
  40. MovementLoopAddLocation(NPC, 217.06, -6.91, -42.16, 2, math.random(0,7))
  41. MovementLoopAddLocation(NPC, 214.19, -6.94, -42.14, 2, math.random(0,7))
  42. MovementLoopAddLocation(NPC, 216.11, -6.97, -38.93, 2, math.random(0,7))
  43. MovementLoopAddLocation(NPC, 219.59, -6.92, -42.25, 2, math.random(0,7))
  44. MovementLoopAddLocation(NPC, 220.71, -6.97, -41.04, 2, math.random(0,7))
  45. MovementLoopAddLocation(NPC, 217.67, -6.91, -43.16, 2, math.random(0,7))
  46. end