lovato.lua 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. --[[
  2. Script Name : lovato.lua
  3. Script Purpose : Waypoint Path for lovato.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 09:59:23 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 416.76, -19.18, -272.59, 2, 0)
  18. MovementLoopAddLocation(NPC, 397.39, -17.69, -271.71, 2, 0)
  19. MovementLoopAddLocation(NPC, 386.62, -17.48, -271.02, 2, 0)
  20. MovementLoopAddLocation(NPC, 380.75, -17.59, -270.53, 2, 0)
  21. MovementLoopAddLocation(NPC, 335.97, -18.48, -229.93, 2, 0)
  22. MovementLoopAddLocation(NPC, 322.21, -22.43, -187.91, 2, 0)
  23. MovementLoopAddLocation(NPC, 300.86, -22.74, -165.58, 2, 0)
  24. MovementLoopAddLocation(NPC, 286.91, -18.84, -146.59, 2, 0)
  25. MovementLoopAddLocation(NPC, 285.04, -18.75, -138.03, 2, 0)
  26. MovementLoopAddLocation(NPC, 294.8, -19.05, -123.14, 2, 0)
  27. MovementLoopAddLocation(NPC, 292.38, -18.93, -111.75, 2, 0)
  28. MovementLoopAddLocation(NPC, 270.69, -18.62, -95.31, 2, 0)
  29. MovementLoopAddLocation(NPC, 266.85, -18.71, -89.95, 2, 0)
  30. MovementLoopAddLocation(NPC, 260.01, -20.43, -56.98, 2, 0)
  31. MovementLoopAddLocation(NPC, 262.42, -21.01, -30.97, 2, 0)
  32. MovementLoopAddLocation(NPC, 274.17, -21.18, -33.17, 2, 0)
  33. MovementLoopAddLocation(NPC, 283.95, -20.98, -36.93, 2, 0)
  34. MovementLoopAddLocation(NPC, 305.16, -21.39, -42.51, 2, 0)
  35. MovementLoopAddLocation(NPC, 311.5, -21.4, -37.18, 2, 0)
  36. MovementLoopAddLocation(NPC, 322.24, -21.45, -24.11, 2, 0)
  37. MovementLoopAddLocation(NPC, 311.5, -21.4, -37.18, 2, 0)
  38. MovementLoopAddLocation(NPC, 305.16, -21.39, -42.51, 2, 0)
  39. MovementLoopAddLocation(NPC, 283.95, -20.98, -36.93, 2, 0)
  40. MovementLoopAddLocation(NPC, 274.17, -21.18, -33.17, 2, 0)
  41. MovementLoopAddLocation(NPC, 262.42, -21.01, -30.97, 2, 0)
  42. MovementLoopAddLocation(NPC, 260.01, -20.43, -56.98, 2, 0)
  43. MovementLoopAddLocation(NPC, 266.85, -18.71, -89.95, 2, 0)
  44. MovementLoopAddLocation(NPC, 270.69, -18.62, -95.31, 2, 0)
  45. MovementLoopAddLocation(NPC, 292.38, -18.93, -111.75, 2, 0)
  46. MovementLoopAddLocation(NPC, 294.8, -19.05, -123.14, 2, 0)
  47. MovementLoopAddLocation(NPC, 285.04, -18.75, -138.03, 2, 0)
  48. MovementLoopAddLocation(NPC, 286.91, -18.84, -146.59, 2, 0)
  49. MovementLoopAddLocation(NPC, 300.86, -22.74, -165.58, 2, 0)
  50. MovementLoopAddLocation(NPC, 322.21, -22.43, -187.91, 2, 0)
  51. MovementLoopAddLocation(NPC, 335.97, -18.48, -229.93, 2, 0)
  52. MovementLoopAddLocation(NPC, 380.75, -17.59, -270.53, 2, 0)
  53. MovementLoopAddLocation(NPC, 386.62, -17.48, -271.02, 2, 0)
  54. MovementLoopAddLocation(NPC, 397.39, -17.69, -271.71, 2, 0)
  55. MovementLoopAddLocation(NPC, 416.76, -19.18, -272.59, 2, 0)
  56. end