shriller5.lua 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --[[
  2. Script Name : shirller5.lua
  3. Script Purpose : Waypoint Path for shirller5.lua
  4. Script Author : Devn00b
  5. Script Date : 05/10/2020 09:28:34 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, 23.18, -0.84, -82.85, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 21.23, -0.89, -82.98, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 21.25, 0.56, -68.4, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 15.19, -0.08, -60.51, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -2.02, -0.11, -60.07, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -10.67, 0.53, -54.89, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -15.07, 0.57, -45.76, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -11.4, -0.1, -36.65, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -9.46, -0.07, -34.83, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -14.67, -0.1, -29, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -14.64, -0.05, -32.32, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -18.59, -0.1, -29.39, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -10.71, -0.08, -28.93, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -13.57, -0.08, -29.47, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -13.77, -0.01, -25.65, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, -10.73, 0.22, -28.16, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, -13.77, -0.01, -25.65, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, -13.57, -0.08, -29.47, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, -10.71, -0.08, -28.93, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, -18.59, -0.1, -29.39, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, -14.64, -0.05, -32.32, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, -14.67, -0.1, -29, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, -9.46, -0.07, -34.83, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, -11.4, -0.1, -36.65, 2, math.random(0,5))
  42. MovementLoopAddLocation(NPC, -15.07, 0.57, -45.76, 2, math.random(0,5))
  43. MovementLoopAddLocation(NPC, -10.67, 0.53, -54.89, 2, math.random(0,5))
  44. MovementLoopAddLocation(NPC, -2.02, -0.11, -60.07, 2, math.random(0,5))
  45. MovementLoopAddLocation(NPC, 15.19, -0.08, -60.51, 2, math.random(0,5))
  46. MovementLoopAddLocation(NPC, 21.25, 0.56, -68.4, 2, math.random(0,5))
  47. MovementLoopAddLocation(NPC, 21.23, -0.89, -82.98, 2, math.random(0,5))
  48. MovementLoopAddLocation(NPC, 23.18, -0.84, -82.85, 2, math.random(0,5))
  49. end