tomb_guard22.lua 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : tomb_guard22.lua
  3. Script Purpose : Waypoint Path for tomb_guard22.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 10:07:49 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, 189.98, -6.97, -152.9, 2, math.random(0,8))
  18. MovementLoopAddLocation(NPC, 186.75, -6.97, -155.04, 2, math.random(0,8))
  19. MovementLoopAddLocation(NPC, 188.35, -7.01, -156.86, 2, math.random(0,8))
  20. MovementLoopAddLocation(NPC, 191.96, -6.97, -154.06, 2, math.random(0,8))
  21. MovementLoopAddLocation(NPC, 192.21, -6.98, -156.49, 2, math.random(0,8))
  22. MovementLoopAddLocation(NPC, 187.28, -6.97, -154.39, 2, math.random(0,8))
  23. MovementLoopAddLocation(NPC, 189.05, -7.04, -158.09, 2, math.random(0,8))
  24. MovementLoopAddLocation(NPC, 188.9, -6.97, -154.05, 2, math.random(0,8))
  25. MovementLoopAddLocation(NPC, 186.55, -6.97, -156.31, 2, math.random(0,8))
  26. MovementLoopAddLocation(NPC, 190.6, -7.02, -155.92, 2, math.random(0,8))
  27. MovementLoopAddLocation(NPC, 186.55, -6.97, -156.31, 2, math.random(0,8))
  28. MovementLoopAddLocation(NPC, 188.9, -6.97, -154.05, 2, math.random(0,8))
  29. MovementLoopAddLocation(NPC, 189.05, -7.04, -158.09, 2, math.random(0,8))
  30. MovementLoopAddLocation(NPC, 187.28, -6.97, -154.39, 2, math.random(0,8))
  31. MovementLoopAddLocation(NPC, 192.21, -6.98, -156.49, 2, math.random(0,8))
  32. MovementLoopAddLocation(NPC, 191.96, -6.97, -154.06, 2, math.random(0,8))
  33. MovementLoopAddLocation(NPC, 188.35, -7.01, -156.86, 2, math.random(0,8))
  34. MovementLoopAddLocation(NPC, 186.75, -6.97, -155.04, 2, math.random(0,8))
  35. MovementLoopAddLocation(NPC, 189.98, -6.97, -152.9, 2, math.random(0,8))
  36. end