tomb_guard4.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : tomb_guard4.lua
  3. Script Purpose : Waypoint Path for tomb_guard4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/19/2020 01:50:50 AM
  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, 70.57, 0, -20.2, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 70.99, 0.06, -16.61, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 67.53, -0.03, -16.96, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 65.81, -0.04, -20.81, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 70.77, 0.03, -17.51, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 67.31, -0.09, -18.34, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 71.27, 0, -19.32, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 69.01, 0.19, -15.31, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 67.15, 0.12, -15.33, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 70.02, 0.01, -20.35, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 68.37, -0.03, -17.44, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 70.56, 0.05, -17.1, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 66.32, -0.03, -20.63, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 68.76, 0.26, -15.81, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 66.32, -0.03, -20.63, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, 70.56, 0.05, -17.1, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, 68.37, -0.03, -17.44, 2, math.random(0,15))
  34. MovementLoopAddLocation(NPC, 70.02, 0.01, -20.35, 2, math.random(0,15))
  35. MovementLoopAddLocation(NPC, 67.15, 0.12, -15.33, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 69.01, 0.19, -15.31, 2, math.random(0,15))
  37. MovementLoopAddLocation(NPC, 71.27, 0, -19.32, 2, math.random(0,15))
  38. MovementLoopAddLocation(NPC, 67.31, -0.09, -18.34, 2, math.random(0,15))
  39. MovementLoopAddLocation(NPC, 70.77, 0.03, -17.51, 2, math.random(0,15))
  40. MovementLoopAddLocation(NPC, 65.81, -0.04, -20.81, 2, math.random(0,15))
  41. MovementLoopAddLocation(NPC, 67.53, -0.03, -16.96, 2, math.random(0,15))
  42. MovementLoopAddLocation(NPC, 70.99, 0.06, -16.61, 2, math.random(0,15))
  43. MovementLoopAddLocation(NPC, 70.57, 0, -20.2, 2, math.random(0,15))
  44. end