tortured_essence2.lua 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. --[[
  2. Script Name : tortured_essence2.lua
  3. Script Purpose : Waypoint Path for tortured_essence2.lua
  4. Script Author : Devn00b
  5. Script Date : 05/20/2020 03:11:50 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, 150.66, 6.99, -17.04, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 154.41, 6.99, -21.8, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 142.36, 6.99, -21.89, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 148.32, 7.55, -14.46, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 141.25, 6.99, -4.49, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 158.74, 6.99, -3.96, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 155.22, 6.99, -3.82, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 149.34, 7.72, -10.64, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 145.71, 6.99, -10.73, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 145.71, 6.99, -10.73, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 150.48, 6.99, -22.01, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 157.78, 6.99, -21.63, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 146.85, 6.99, -22.19, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 144.57, 6.99, -28.27, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 156.41, 6.99, -27.66, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 146.68, 7.66, -33.18, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 146.27, 6.99, -20.8, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 142.02, 6.99, -21.51, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 141.24, 6.99, -12.01, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 150.31, 6.99, -8.88, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 141.24, 6.99, -12.01, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 142.02, 6.99, -21.51, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 146.27, 6.99, -20.8, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 146.68, 7.66, -33.18, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, 156.41, 6.99, -27.66, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, 144.57, 6.99, -28.27, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, 146.85, 6.99, -22.19, 2, math.random(0,5))
  45. MovementLoopAddLocation(NPC, 157.78, 6.99, -21.63, 2, math.random(0,5))
  46. MovementLoopAddLocation(NPC, 150.48, 6.99, -22.01, 2, math.random(0,5))
  47. MovementLoopAddLocation(NPC, 145.71, 6.99, -10.73, 2, math.random(0,5))
  48. MovementLoopAddLocation(NPC, 145.71, 6.99, -10.73, 2, math.random(0,5))
  49. MovementLoopAddLocation(NPC, 149.34, 7.72, -10.64, 2, math.random(0,5))
  50. MovementLoopAddLocation(NPC, 155.22, 6.99, -3.82, 2, math.random(0,5))
  51. MovementLoopAddLocation(NPC, 158.74, 6.99, -3.96, 2, math.random(0,5))
  52. MovementLoopAddLocation(NPC, 141.25, 6.99, -4.49, 2, math.random(0,5))
  53. MovementLoopAddLocation(NPC, 148.32, 7.55, -14.46, 2, math.random(0,5))
  54. MovementLoopAddLocation(NPC, 142.36, 6.99, -21.89, 2, math.random(0,5))
  55. MovementLoopAddLocation(NPC, 154.41, 6.99, -21.8, 2, math.random(0,5))
  56. MovementLoopAddLocation(NPC, 150.66, 6.99, -17.04, 2, math.random(0,5))
  57. end