tomb_guard9.lua 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : tomb_guard9.lua
  3. Script Purpose : Waypoint Path for tomb_guard9.lua
  4. Script Author : Devn00b
  5. Script Date : 06/24/2020 03:19: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, 135.42, 0.02, -146.32, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 137.88, 0.02, -143.54, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 141.84, 0.06, -143.53, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 137.15, 0, -144.13, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 135.5, 0.02, -145.71, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 135.31, 0.02, -147.27, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 141.47, 0, -146.84, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 141.9, 0.01, -149.11, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 140.34, 0.05, -149.58, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 135.82, 0.04, -146.28, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 140.34, 0.05, -149.58, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 141.9, 0.01, -149.11, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 141.47, 0, -146.84, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 135.31, 0.02, -147.27, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 135.5, 0.02, -145.71, 2, math.random(0,10))
  32. MovementLoopAddLocation(NPC, 137.15, 0, -144.13, 2, math.random(0,10))
  33. MovementLoopAddLocation(NPC, 141.84, 0.06, -143.53, 2, math.random(0,10))
  34. MovementLoopAddLocation(NPC, 137.88, 0.02, -143.54, 2, math.random(0,10))
  35. MovementLoopAddLocation(NPC, 135.42, 0.02, -146.32, 2, math.random(0,10))
  36. end