loowoonla.lua 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. --[[
  2. Script Name : loowoonla.lua
  3. Script Purpose : Waypoint Path for loowoonla.lua
  4. Script Author : Devn00b
  5. Script Date : 04/10/2020 02:13:55 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 respawn(NPC)
  21. spawn(NPC)
  22. end
  23. function waypoints(NPC)
  24. MovementLoopAddLocation(NPC, 673.87, -17.95, 193.59, 2, 0)
  25. MovementLoopAddLocation(NPC, 680.77, -19.28, 191.96, 2, 0)
  26. MovementLoopAddLocation(NPC, 679.3, -19.37, 187.84, 2, 0)
  27. MovementLoopAddLocation(NPC, 610.55, -15.73, 204.39, 2, 0)
  28. MovementLoopAddLocation(NPC, 610.83, -16.46, 210.65, 2, 0)
  29. MovementLoopAddLocation(NPC, 673.56, -17.95, 193.43, 2, 0)
  30. MovementLoopAddLocation(NPC, 673.73, -17.95, 193.1, 2, 0)
  31. MovementLoopAddLocation(NPC, 643.87, -17.95, 202.22, 2, 0)
  32. MovementLoopAddLocation(NPC, 627.89, -17.14, 206.89, 2, 0)
  33. MovementLoopAddLocation(NPC, 611.38, -16.46, 211.17, 2, 0)
  34. MovementLoopAddLocation(NPC, 610.28, -15.74, 204.39, 2, 0)
  35. MovementLoopAddLocation(NPC, 548.65, -15.26, 212.37, 2, 0)
  36. MovementLoopAddLocation(NPC, 549.57, -9.98, 164.3, 2, 0)
  37. MovementLoopAddLocation(NPC, 547.37, -10.5, 153.68, 2, 0)
  38. MovementLoopAddLocation(NPC, 509.28, -10.93, 147.02, 2, 0)
  39. MovementLoopAddLocation(NPC, 490.05, -11.41, 143.3, 2, 0)
  40. MovementLoopAddLocation(NPC, 434.73, -11.61, 114.07, 2, 8)
  41. MovementLoopAddLocation(NPC, 490.05, -11.41, 143.3, 2, 0)
  42. MovementLoopAddLocation(NPC, 509.28, -10.93, 147.02, 2, 0)
  43. MovementLoopAddLocation(NPC, 547.37, -10.5, 153.68, 2, 0)
  44. MovementLoopAddLocation(NPC, 549.57, -9.98, 164.3, 2, 0)
  45. MovementLoopAddLocation(NPC, 548.65, -15.26, 212.37, 2, 0)
  46. MovementLoopAddLocation(NPC, 610.28, -15.74, 204.39, 2, 0)
  47. MovementLoopAddLocation(NPC, 611.38, -16.46, 211.17, 2, 0)
  48. MovementLoopAddLocation(NPC, 627.89, -17.14, 206.89, 2, 0)
  49. MovementLoopAddLocation(NPC, 643.87, -17.95, 202.22, 2, 0)
  50. MovementLoopAddLocation(NPC, 673.73, -17.95, 193.1, 2, 0)
  51. MovementLoopAddLocation(NPC, 673.56, -17.95, 193.43, 2, 0)
  52. MovementLoopAddLocation(NPC, 610.83, -16.46, 210.65, 2, 0)
  53. MovementLoopAddLocation(NPC, 610.55, -15.73, 204.39, 2, 0)
  54. MovementLoopAddLocation(NPC, 679.3, -19.37, 187.84, 2, 0)
  55. MovementLoopAddLocation(NPC, 680.77, -19.28, 191.96, 2, 0)
  56. MovementLoopAddLocation(NPC, 673.87, -17.95, 193.59, 2, 0)
  57. end