quillfingers.lua 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. --[[
  2. Script Name : quillfingers.lua
  3. Script Purpose : Waypoint Path for quillfingers.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 06:17:43 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, 451.46, -11.41, 116.82, 2, 0)
  25. MovementLoopAddLocation(NPC, 470.39, -11.52, 134.93, 2, 0)
  26. MovementLoopAddLocation(NPC, 489.07, -11.4, 142.29, 2, 0)
  27. MovementLoopAddLocation(NPC, 525.11, -10.46, 149.37, 2, 0)
  28. MovementLoopAddLocation(NPC, 545.9, -10.56, 152.61, 2, 0)
  29. MovementLoopAddLocation(NPC, 605.81, -12.12, 146.65, 2, 0)
  30. MovementLoopAddLocation(NPC, 609.47, -11.57, 158.08, 2, 0)
  31. MovementLoopAddLocation(NPC, 625.38, -12.36, 158.09, 2, 0)
  32. MovementLoopAddLocation(NPC, 625.59, -16.63, 195.33, 2, 0)
  33. MovementLoopAddLocation(NPC, 678.57, -19.45, 182.33, 2, 0)
  34. MovementLoopAddLocation(NPC, 686.49, -19.57, 218.19, 2, 0)
  35. MovementLoopAddLocation(NPC, 622.04, -18.61, 233.99, 2, 0)
  36. MovementLoopAddLocation(NPC, 578.55, -17.93, 241.46, 2, 0)
  37. MovementLoopAddLocation(NPC, 561.94, -17.73, 242.56, 2, 0)
  38. MovementLoopAddLocation(NPC, 533.14, -18.33, 242.15, 2, 0)
  39. MovementLoopAddLocation(NPC, 497.26, -19.87, 240.62, 2, 0)
  40. MovementLoopAddLocation(NPC, 465.94, -21.88, 234.24, 2, 0)
  41. MovementLoopAddLocation(NPC, 459.18, -22.03, 232.23, 2, 0)
  42. MovementLoopAddLocation(NPC, 479.65, -19.85, 180.64, 2, 0)
  43. MovementLoopAddLocation(NPC, 490.42, -12.8, 150.23, 2, 0)
  44. MovementLoopAddLocation(NPC, 480.65, -11.77, 141.88, 2, 0)
  45. MovementLoopAddLocation(NPC, 450.19, -11.44, 116.21, 2, 0)
  46. MovementLoopAddLocation(NPC, 480.65, -11.77, 141.88, 2, 0)
  47. MovementLoopAddLocation(NPC, 490.42, -12.8, 150.23, 2, 0)
  48. MovementLoopAddLocation(NPC, 479.65, -19.85, 180.64, 2, 0)
  49. MovementLoopAddLocation(NPC, 459.18, -22.03, 232.23, 2, 0)
  50. MovementLoopAddLocation(NPC, 465.94, -21.88, 234.24, 2, 0)
  51. MovementLoopAddLocation(NPC, 497.26, -19.87, 240.62, 2, 0)
  52. MovementLoopAddLocation(NPC, 533.14, -18.33, 242.15, 2, 0)
  53. MovementLoopAddLocation(NPC, 561.94, -17.73, 242.56, 2, 0)
  54. MovementLoopAddLocation(NPC, 578.55, -17.93, 241.46, 2, 0)
  55. MovementLoopAddLocation(NPC, 622.04, -18.61, 233.99, 2, 0)
  56. MovementLoopAddLocation(NPC, 686.49, -19.57, 218.19, 2, 0)
  57. MovementLoopAddLocation(NPC, 678.57, -19.45, 182.33, 2, 0)
  58. MovementLoopAddLocation(NPC, 625.59, -16.63, 195.33, 2, 0)
  59. MovementLoopAddLocation(NPC, 625.38, -12.36, 158.09, 2, 0)
  60. MovementLoopAddLocation(NPC, 609.47, -11.57, 158.08, 2, 0)
  61. MovementLoopAddLocation(NPC, 605.81, -12.12, 146.65, 2, 0)
  62. MovementLoopAddLocation(NPC, 545.9, -10.56, 152.61, 2, 0)
  63. MovementLoopAddLocation(NPC, 525.11, -10.46, 149.37, 2, 0)
  64. MovementLoopAddLocation(NPC, 489.07, -11.4, 142.29, 2, 0)
  65. MovementLoopAddLocation(NPC, 470.39, -11.52, 134.93, 2, 0)
  66. MovementLoopAddLocation(NPC, 451.46, -11.41, 116.82, 2, 0)
  67. end