kenika.lua 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. --[[
  2. Script Name : kenika.lua
  3. Script Purpose : Waypoint Path for kenika.lua
  4. Script Author : Devn00b additions by Cynnar
  5. Script Date : 04/10/2020 02:29:10 PM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
  9. function spawn(NPC)
  10. waypoints(NPC)
  11. SetPlayerProximityFunction(NPC, 7, "InRange", "LeaveRange")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. GenericEcologyHail(NPC, Spawn, faction)
  16. end
  17. function InRange(NPC,Spawn)
  18. GenericEcologyCallout(NPC, Spawn, faction)
  19. end
  20. function waypoints(NPC)
  21. MovementLoopAddLocation(NPC, 469.88, -11.53, 130.15, 2, 0)
  22. MovementLoopAddLocation(NPC, 474.56, -11.53, 136.07, 2, 0)
  23. MovementLoopAddLocation(NPC, 478.76, -11.53, 137.32, 2, 0)
  24. MovementLoopAddLocation(NPC, 494.74, -11.65, 143.21, 2, 0)
  25. MovementLoopAddLocation(NPC, 504.88, -11.31, 146.37, 2, 0)
  26. MovementLoopAddLocation(NPC, 545.21, -10.58, 151.77, 2, 0)
  27. MovementLoopAddLocation(NPC, 564.25, -10.58, 149.91, 2, 0)
  28. MovementLoopAddLocation(NPC, 586.13, -10.43, 147.61, 2, 0)
  29. MovementLoopAddLocation(NPC, 600.5, -12.07, 146.38, 2, 0)
  30. MovementLoopAddLocation(NPC, 616.28, -12.22, 144.58, 2, 0)
  31. MovementLoopAddLocation(NPC, 620.96, -12.8, 161.14, 2, 0)
  32. MovementLoopAddLocation(NPC, 623.53, -16.64, 200.63, 2, 0)
  33. MovementLoopAddLocation(NPC, 679.34, -19.39, 186.87, 2, 0)
  34. MovementLoopAddLocation(NPC, 680.59, -19.27, 192.36, 2, 0)
  35. MovementLoopAddLocation(NPC, 673, -17.95, 193.97, 2, 0)
  36. MovementLoopAddLocation(NPC, 678.49, -17.95, 211.45, 2, 0)
  37. MovementLoopAddLocation(NPC, 671.61, -17.95, 213.64, 2, 0)
  38. MovementLoopAddLocation(NPC, 673.41, -19.58, 219.81, 2, 0)
  39. MovementLoopAddLocation(NPC, 638.11, -19.11, 230.2, 2, 0)
  40. MovementLoopAddLocation(NPC, 576.03, -17.87, 240.47, 2, 0)
  41. MovementLoopAddLocation(NPC, 563.7, -17.72, 241.52, 2, 0)
  42. MovementLoopAddLocation(NPC, 559.88, -17.59, 239.68, 2, 0)
  43. MovementLoopAddLocation(NPC, 563.7, -17.72, 241.52, 2, 0)
  44. MovementLoopAddLocation(NPC, 576.03, -17.87, 240.47, 2, 0)
  45. MovementLoopAddLocation(NPC, 638.11, -19.11, 230.2, 2, 0)
  46. MovementLoopAddLocation(NPC, 673.41, -19.58, 219.81, 2, 0)
  47. MovementLoopAddLocation(NPC, 671.61, -17.95, 213.64, 2, 0)
  48. MovementLoopAddLocation(NPC, 678.49, -17.95, 211.45, 2, 0)
  49. MovementLoopAddLocation(NPC, 673, -17.95, 193.97, 2, 0)
  50. MovementLoopAddLocation(NPC, 680.59, -19.27, 192.36, 2, 0)
  51. MovementLoopAddLocation(NPC, 679.34, -19.39, 186.87, 2, 0)
  52. MovementLoopAddLocation(NPC, 623.53, -16.64, 200.63, 2, 0)
  53. MovementLoopAddLocation(NPC, 620.96, -12.8, 161.14, 2, 0)
  54. MovementLoopAddLocation(NPC, 616.28, -12.22, 144.58, 2, 0)
  55. MovementLoopAddLocation(NPC, 600.5, -12.07, 146.38, 2, 0)
  56. MovementLoopAddLocation(NPC, 586.13, -10.43, 147.61, 2, 0)
  57. MovementLoopAddLocation(NPC, 564.25, -10.58, 149.91, 2, 0)
  58. MovementLoopAddLocation(NPC, 545.21, -10.58, 151.77, 2, 0)
  59. MovementLoopAddLocation(NPC, 504.88, -11.31, 146.37, 2, 0)
  60. MovementLoopAddLocation(NPC, 494.74, -11.65, 143.21, 2, 0)
  61. MovementLoopAddLocation(NPC, 478.76, -11.53, 137.32, 2, 0)
  62. MovementLoopAddLocation(NPC, 474.56, -11.53, 136.07, 2, 0)
  63. MovementLoopAddLocation(NPC, 469.88, -11.53, 130.15, 2, 0)
  64. end