tortured_essence4.lua 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --[[
  2. Script Name : tortured_essence4.lua
  3. Script Purpose : Waypoint Path for tortured_essence4.lua
  4. Script Author : Devn00b
  5. Script Date : 05/20/2020 03:43:10 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, 142.89, 6.99, -25.99, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 141.52, 6.99, -28.98, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 141.61, 6.99, -42.03, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 158.76, 6.99, -44.43, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 155.17, 6.99, -45.7, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 157.93, 6.99, -41.16, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 148.81, 7.62, -35.83, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 157.76, 6.99, -33.82, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 142.55, 6.99, -30.68, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 146.52, 7.74, -35.54, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 143.13, 6.99, -45.23, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 157.9, 6.99, -36.23, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 153.1, 6.99, -25.25, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 155.45, 6.99, -45.91, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, 146.32, 7.74, -37.24, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, 142.32, 6.99, -38.99, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, 146.32, 7.74, -37.24, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, 155.45, 6.99, -45.91, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, 153.1, 6.99, -25.25, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, 157.9, 6.99, -36.23, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, 143.13, 6.99, -45.23, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, 146.52, 7.74, -35.54, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, 142.55, 6.99, -30.68, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, 157.76, 6.99, -33.82, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, 148.81, 7.62, -35.83, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, 157.93, 6.99, -41.16, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, 155.17, 6.99, -45.7, 2, math.random(0,5))
  45. MovementLoopAddLocation(NPC, 158.76, 6.99, -44.43, 2, math.random(0,5))
  46. MovementLoopAddLocation(NPC, 141.61, 6.99, -42.03, 2, math.random(0,5))
  47. MovementLoopAddLocation(NPC, 141.52, 6.99, -28.98, 2, math.random(0,5))
  48. MovementLoopAddLocation(NPC, 142.89, 6.99, -25.99, 2, math.random(0,5))
  49. end