quillfingers.lua 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. local choice = math.random(1,2)
  14. if choice == 1 then
  15. PlayFlavor(NPC, "voiceover/english/halfling_eco_good_1/ft/halfling/halfling_eco_good_1_hail_gm_cd9164d6.mp3", "You're a stranger. And I don't like strangers, no sir I don't!", "sulk", 785726454, 3155500140, Spawn)
  16. elseif choice == 2 then
  17. PlayFlavor(NPC, "voiceover/english/halfling_eco_good_1/ft/halfling/halfling_eco_good_1_hail_gm_75c0e97c.mp3", "Welcome to the city, adventurer. Be mindful of the peace and quiet. Here in Qeynos, we value our privacy.", "bow", 1955296899, 2249687997, Spawn)
  18. else
  19. end
  20. end
  21. function respawn(NPC)
  22. spawn(NPC)
  23. end
  24. function waypoints(NPC)
  25. MovementLoopAddLocation(NPC, 451.46, -11.41, 116.82, 2, 0)
  26. MovementLoopAddLocation(NPC, 470.39, -11.52, 134.93, 2, 0)
  27. MovementLoopAddLocation(NPC, 489.07, -11.4, 142.29, 2, 0)
  28. MovementLoopAddLocation(NPC, 525.11, -10.46, 149.37, 2, 0)
  29. MovementLoopAddLocation(NPC, 545.9, -10.56, 152.61, 2, 0)
  30. MovementLoopAddLocation(NPC, 605.81, -12.12, 146.65, 2, 0)
  31. MovementLoopAddLocation(NPC, 609.47, -11.57, 158.08, 2, 0)
  32. MovementLoopAddLocation(NPC, 625.38, -12.36, 158.09, 2, 0)
  33. MovementLoopAddLocation(NPC, 625.59, -16.63, 195.33, 2, 0)
  34. MovementLoopAddLocation(NPC, 678.57, -19.45, 182.33, 2, 0)
  35. MovementLoopAddLocation(NPC, 686.49, -19.57, 218.19, 2, 0)
  36. MovementLoopAddLocation(NPC, 622.04, -18.61, 233.99, 2, 0)
  37. MovementLoopAddLocation(NPC, 578.55, -17.93, 241.46, 2, 0)
  38. MovementLoopAddLocation(NPC, 561.94, -17.73, 242.56, 2, 0)
  39. MovementLoopAddLocation(NPC, 533.14, -18.33, 242.15, 2, 0)
  40. MovementLoopAddLocation(NPC, 497.26, -19.87, 240.62, 2, 0)
  41. MovementLoopAddLocation(NPC, 465.94, -21.88, 234.24, 2, 0)
  42. MovementLoopAddLocation(NPC, 459.18, -22.03, 232.23, 2, 0)
  43. MovementLoopAddLocation(NPC, 479.65, -19.85, 180.64, 2, 0)
  44. MovementLoopAddLocation(NPC, 490.42, -12.8, 150.23, 2, 0)
  45. MovementLoopAddLocation(NPC, 480.65, -11.77, 141.88, 2, 0)
  46. MovementLoopAddLocation(NPC, 450.19, -11.44, 116.21, 2, 0)
  47. MovementLoopAddLocation(NPC, 480.65, -11.77, 141.88, 2, 0)
  48. MovementLoopAddLocation(NPC, 490.42, -12.8, 150.23, 2, 0)
  49. MovementLoopAddLocation(NPC, 479.65, -19.85, 180.64, 2, 0)
  50. MovementLoopAddLocation(NPC, 459.18, -22.03, 232.23, 2, 0)
  51. MovementLoopAddLocation(NPC, 465.94, -21.88, 234.24, 2, 0)
  52. MovementLoopAddLocation(NPC, 497.26, -19.87, 240.62, 2, 0)
  53. MovementLoopAddLocation(NPC, 533.14, -18.33, 242.15, 2, 0)
  54. MovementLoopAddLocation(NPC, 561.94, -17.73, 242.56, 2, 0)
  55. MovementLoopAddLocation(NPC, 578.55, -17.93, 241.46, 2, 0)
  56. MovementLoopAddLocation(NPC, 622.04, -18.61, 233.99, 2, 0)
  57. MovementLoopAddLocation(NPC, 686.49, -19.57, 218.19, 2, 0)
  58. MovementLoopAddLocation(NPC, 678.57, -19.45, 182.33, 2, 0)
  59. MovementLoopAddLocation(NPC, 625.59, -16.63, 195.33, 2, 0)
  60. MovementLoopAddLocation(NPC, 625.38, -12.36, 158.09, 2, 0)
  61. MovementLoopAddLocation(NPC, 609.47, -11.57, 158.08, 2, 0)
  62. MovementLoopAddLocation(NPC, 605.81, -12.12, 146.65, 2, 0)
  63. MovementLoopAddLocation(NPC, 545.9, -10.56, 152.61, 2, 0)
  64. MovementLoopAddLocation(NPC, 525.11, -10.46, 149.37, 2, 0)
  65. MovementLoopAddLocation(NPC, 489.07, -11.4, 142.29, 2, 0)
  66. MovementLoopAddLocation(NPC, 470.39, -11.52, 134.93, 2, 0)
  67. MovementLoopAddLocation(NPC, 451.46, -11.41, 116.82, 2, 0)
  68. end