tortured_essence.lua 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --[[
  2. Script Name : tortured_essence.lua
  3. Script Purpose : Waypoint Path for tortured_essence.lua
  4. Script Author : Devn00b
  5. Script Date : 05/20/2020 03:08:08 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, 146.54, 6.99, -12.89, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 143.03, 6.99, -3.95, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 155.14, 6.99, -3.38, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 150.85, 7.72, -10.19, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 155.18, 6.99, -8.61, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 154.85, 6.99, -16.89, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 150.69, 7.74, -15.04, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 155.08, 6.99, -21.35, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 142.61, 6.99, -21.72, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 145.9, 6.99, -20.99, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 145.07, 6.99, -6.93, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 154.42, 6.99, -6.56, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 154.13, 6.99, 4.29, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 150.87, 7.38, 8.85, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 155.95, 8.25, 8.89, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 152.64, 6.99, 9.62, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 155.23, 6.99, -22.01, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 143.44, 6.99, -21.59, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 155.23, 6.99, -22.01, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 152.64, 6.99, 9.62, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 155.95, 8.25, 8.89, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 150.87, 7.38, 8.85, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 154.13, 6.99, 4.29, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 154.42, 6.99, -6.56, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, 145.07, 6.99, -6.93, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, 145.9, 6.99, -20.99, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, 142.61, 6.99, -21.72, 2, math.random(0,5))
  45. MovementLoopAddLocation(NPC, 155.08, 6.99, -21.35, 2, math.random(0,5))
  46. MovementLoopAddLocation(NPC, 150.69, 7.74, -15.04, 2, math.random(0,5))
  47. MovementLoopAddLocation(NPC, 154.85, 6.99, -16.89, 2, math.random(0,5))
  48. MovementLoopAddLocation(NPC, 155.18, 6.99, -8.61, 2, math.random(0,5))
  49. MovementLoopAddLocation(NPC, 150.85, 7.72, -10.19, 2, math.random(0,5))
  50. MovementLoopAddLocation(NPC, 155.14, 6.99, -3.38, 2, math.random(0,5))
  51. MovementLoopAddLocation(NPC, 143.03, 6.99, -3.95, 2, math.random(0,5))
  52. MovementLoopAddLocation(NPC, 146.54, 6.99, -12.89, 2, math.random(0,5))
  53. end