tomb_guard12.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : tomb_guard12.lua
  3. Script Purpose : Waypoint Path for tomb_guard12.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 05:34:17 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, 168.99, -6.91, -75.14, 2, math.random(0,7))
  18. MovementLoopAddLocation(NPC, 171.2, -6.97, -70.78, 2, math.random(0,7))
  19. MovementLoopAddLocation(NPC, 174.32, -6.88, -71.14, 2, math.random(0,7))
  20. MovementLoopAddLocation(NPC, 175.29, -6.74, -73.82, 2, math.random(0,7))
  21. MovementLoopAddLocation(NPC, 172.44, -6.95, -71.74, 2, math.random(0,7))
  22. MovementLoopAddLocation(NPC, 169.74, -6.89, -74.56, 2, math.random(0,7))
  23. MovementLoopAddLocation(NPC, 171.19, -6.94, -75.64, 2, math.random(0,7))
  24. MovementLoopAddLocation(NPC, 172.14, -6.97, -70.72, 2, math.random(0,7))
  25. MovementLoopAddLocation(NPC, 169.75, -6.97, -71.65, 2, math.random(0,7))
  26. MovementLoopAddLocation(NPC, 174.95, -6.93, -72.97, 2, math.random(0,7))
  27. MovementLoopAddLocation(NPC, 172.84, -6.94, -72.15, 2, math.random(0,7))
  28. MovementLoopAddLocation(NPC, 171.46, -6.95, -75.38, 2, math.random(0,7))
  29. MovementLoopAddLocation(NPC, 172.84, -6.94, -72.15, 2, math.random(0,7))
  30. MovementLoopAddLocation(NPC, 174.95, -6.93, -72.97, 2, math.random(0,7))
  31. MovementLoopAddLocation(NPC, 169.75, -6.97, -71.65, 2, math.random(0,7))
  32. MovementLoopAddLocation(NPC, 172.14, -6.97, -70.72, 2, math.random(0,7))
  33. MovementLoopAddLocation(NPC, 171.19, -6.94, -75.64, 2, math.random(0,7))
  34. MovementLoopAddLocation(NPC, 169.74, -6.89, -74.56, 2, math.random(0,7))
  35. MovementLoopAddLocation(NPC, 172.44, -6.95, -71.74, 2, math.random(0,7))
  36. MovementLoopAddLocation(NPC, 175.29, -6.74, -73.82, 2, math.random(0,7))
  37. MovementLoopAddLocation(NPC, 174.32, -6.88, -71.14, 2, math.random(0,7))
  38. MovementLoopAddLocation(NPC, 171.2, -6.97, -70.78, 2, math.random(0,7))
  39. MovementLoopAddLocation(NPC, 168.99, -6.91, -75.14, 2, math.random(0,7))
  40. end