campos.lua 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. --[[
  2. Script Name : campos.lua
  3. Script Purpose : Waypoint Path for campos.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 09:43:22 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, 309.84, -21.61, 23.07, 2, 0)
  18. MovementLoopAddLocation(NPC, 321.33, -21.92, 35.4, 2, 0)
  19. MovementLoopAddLocation(NPC, 347.79, -21.26, 61.5, 2, 0)
  20. MovementLoopAddLocation(NPC, 354.26, -20.8, 88.65, 2, 0)
  21. MovementLoopAddLocation(NPC, 376.97, -20.5, 119.03, 2, 0)
  22. MovementLoopAddLocation(NPC, 371.99, -20.58, 125.21, 2, 0)
  23. MovementLoopAddLocation(NPC, 368.34, -20.88, 129.15, 2, 0)
  24. MovementLoopAddLocation(NPC, 364.46, -20.97, 130.68, 2, 0)
  25. MovementLoopAddLocation(NPC, 360.94, -20.97, 130.21, 2, 0)
  26. MovementLoopAddLocation(NPC, 345.35, -20.7, 125.9, 2, 0)
  27. MovementLoopAddLocation(NPC, 343.86, -20.67, 124.21, 2, 0)
  28. MovementLoopAddLocation(NPC, 343.15, -20.65, 122.13, 2, 0)
  29. MovementLoopAddLocation(NPC, 342.78, -20.6, 119.7, 2, 0)
  30. MovementLoopAddLocation(NPC, 342.77, -20.55, 116.88, 2, 0)
  31. MovementLoopAddLocation(NPC, 343.9, -20.41, 109.84, 2, 0)
  32. MovementLoopAddLocation(NPC, 347.82, -21.39, 73.93, 2, 0)
  33. MovementLoopAddLocation(NPC, 344, -21.64, 64.16, 2, 0)
  34. MovementLoopAddLocation(NPC, 337.2, -21.46, 52.68, 2, 0)
  35. MovementLoopAddLocation(NPC, 309.62, -21.6, 23.26, 2, 0)
  36. MovementLoopAddLocation(NPC, 295.75, -21.33, 4.62, 2, 0)
  37. MovementLoopAddLocation(NPC, 267.93, -21.53, -16.49, 2, 0)
  38. MovementLoopAddLocation(NPC, 221.3, -21.86, -19.01, 2, 0)
  39. MovementLoopAddLocation(NPC, 267.93, -21.53, -16.49, 2, 0)
  40. MovementLoopAddLocation(NPC, 295.75, -21.33, 4.62, 2, 0)
  41. MovementLoopAddLocation(NPC, 309.62, -21.6, 23.26, 2, 0)
  42. MovementLoopAddLocation(NPC, 337.2, -21.46, 52.68, 2, 0)
  43. MovementLoopAddLocation(NPC, 344, -21.64, 64.16, 2, 0)
  44. MovementLoopAddLocation(NPC, 347.82, -21.39, 73.93, 2, 0)
  45. MovementLoopAddLocation(NPC, 343.9, -20.41, 109.84, 2, 0)
  46. MovementLoopAddLocation(NPC, 342.77, -20.55, 116.88, 2, 0)
  47. MovementLoopAddLocation(NPC, 342.78, -20.6, 119.7, 2, 0)
  48. MovementLoopAddLocation(NPC, 343.15, -20.65, 122.13, 2, 0)
  49. MovementLoopAddLocation(NPC, 343.86, -20.67, 124.21, 2, 0)
  50. MovementLoopAddLocation(NPC, 345.35, -20.7, 125.9, 2, 0)
  51. MovementLoopAddLocation(NPC, 360.94, -20.97, 130.21, 2, 0)
  52. MovementLoopAddLocation(NPC, 364.46, -20.97, 130.68, 2, 0)
  53. MovementLoopAddLocation(NPC, 368.34, -20.88, 129.15, 2, 0)
  54. MovementLoopAddLocation(NPC, 371.99, -20.58, 125.21, 2, 0)
  55. MovementLoopAddLocation(NPC, 376.97, -20.5, 119.03, 2, 0)
  56. MovementLoopAddLocation(NPC, 354.26, -20.8, 88.65, 2, 0)
  57. MovementLoopAddLocation(NPC, 347.79, -21.26, 61.5, 2, 0)
  58. MovementLoopAddLocation(NPC, 321.33, -21.92, 35.4, 2, 0)
  59. MovementLoopAddLocation(NPC, 309.84, -21.61, 23.07, 2, 0)
  60. end