tortured_essence3.lua 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --[[
  2. Script Name : tortured_essence3.lua
  3. Script Purpose : Waypoint Path for tortured_essence3.lua
  4. Script Author : Devn00b
  5. Script Date : 05/20/2020 03:42: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. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 156.31, 6.99, -26.51, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 158.32, 6.99, -27.96, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 158.45, 6.99, -41.47, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 149.48, 6.99, -35.78, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 148.52, 6.99, -26.58, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 141.8, 6.99, -30.4, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 144.76, 7.45, -33.56, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 141.52, 6.99, -38.82, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 145.32, 7.73, -37.2, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 157.04, 6.99, -44.86, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 149.31, 7.06, -35.8, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 147.69, 6.99, -26.75, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 141.6, 6.99, -34.36, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 144.5, 6.99, -44.28, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 150.95, 6.99, -36.85, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 157.26, 6.99, -44.83, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 142.38, 6.99, -41.2, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 157.26, 6.99, -44.83, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 150.95, 6.99, -36.85, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 144.5, 6.99, -44.28, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 141.6, 6.99, -34.36, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 147.69, 6.99, -26.75, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 149.31, 7.06, -35.8, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 157.04, 6.99, -44.86, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, 145.32, 7.73, -37.2, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, 141.52, 6.99, -38.82, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, 144.76, 7.45, -33.56, 2, math.random(0,5))
  45. MovementLoopAddLocation(NPC, 141.8, 6.99, -30.4, 2, math.random(0,5))
  46. MovementLoopAddLocation(NPC, 148.52, 6.99, -26.58, 2, math.random(0,5))
  47. MovementLoopAddLocation(NPC, 149.48, 6.99, -35.78, 2, math.random(0,5))
  48. MovementLoopAddLocation(NPC, 158.45, 6.99, -41.47, 2, math.random(0,5))
  49. MovementLoopAddLocation(NPC, 158.32, 6.99, -27.96, 2, math.random(0,5))
  50. MovementLoopAddLocation(NPC, 156.31, 6.99, -26.51, 2, math.random(0,5))
  51. end