LadyWick.lua 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --[[
  2. Script Name : SpawnScripts/Nettleville/LadyWick.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.06.21 04:06:12
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
  9. function spawn(NPC)
  10. waypoints(NPC)
  11. SetPlayerProximityFunction(NPC, 5, "InRange", "LeaveRange")
  12. end
  13. function hailed(NPC, Spawn)
  14. GenericEcologyHail(NPC,Spawn,faction)
  15. end
  16. function InRange(NPC,Spawn)
  17. GenericEcologyHail(NPC,Spawn,faction)
  18. end
  19. function FaceStreet(NPC)
  20. SpawnSet(NPC, "heading", "250")
  21. end
  22. function waypoints(NPC)
  23. MovementLoopAddLocation(NPC, 609.64, -19.42, 317.61, 2, 1)
  24. MovementLoopAddLocation(NPC, 609.64, -19.42, 317.61, 2, 1,"FaceStreet")
  25. MovementLoopAddLocation(NPC, 609.64, -19.42, 317.61, 2, 36,"EcologyEmotes")
  26. MovementLoopAddLocation(NPC, 609.64, -19.42, 317.61, 2, 36,"EcologyEmotes")
  27. MovementLoopAddLocation(NPC, 609.64, -19.42, 317.61, 2, 36,"EcologyEmotes")
  28. MovementLoopAddLocation(NPC, 610.55, -19.42, 317.87, 2, 0)
  29. MovementLoopAddLocation(NPC, 618.32, -20.42, 325.41, 2, 1)
  30. MovementLoopAddLocation(NPC, 618.32, -20.42, 325.41, 2, 95,"EcologyEmotes")
  31. MovementLoopAddLocation(NPC, 617, -20.51, 324.62, 2, 0)
  32. MovementLoopAddLocation(NPC, 610.24, -20.55, 335.25, 2, 0)
  33. MovementLoopAddLocation(NPC, 608.78, -20.72, 341.48, 2, 0)
  34. MovementLoopAddLocation(NPC, 606.94, -20.61, 349.35, 2, 0)
  35. MovementLoopAddLocation(NPC, 606.62, -20.73, 356.02, 2, 0)
  36. MovementLoopAddLocation(NPC, 607.44, -23.68, 365.68, 2, 0)
  37. MovementLoopAddLocation(NPC, 610.09, -25.72, 370.01, 2, 0)
  38. MovementLoopAddLocation(NPC, 610.71, -26.51, 380.34, 2, 0)
  39. MovementLoopAddLocation(NPC, 611.62, -26.5, 380.21, 2, 1)
  40. MovementLoopAddLocation(NPC, 611.62, -26.5, 380.21, 2, 65)
  41. MovementLoopAddLocation(NPC, 613.31, -26.47, 380.64, 2, 0)
  42. MovementLoopAddLocation(NPC, 612.65, -26.5, 381.87, 2, 0)
  43. MovementLoopAddLocation(NPC, 609.95, -26.52, 381.37, 2, 0)
  44. MovementLoopAddLocation(NPC, 604.65, -26.54, 382.26, 2, 1)
  45. MovementLoopAddLocation(NPC, 604.65, -26.54, 382.26, 2, 65,"EcologyEmotes")
  46. MovementLoopAddLocation(NPC, 603.3, -26.54, 382.61, 2, 0)
  47. MovementLoopAddLocation(NPC, 605.1, -26.53, 381.55, 2, 0)
  48. MovementLoopAddLocation(NPC, 605.07, -26.52, 380.15, 2, 0)
  49. MovementLoopAddLocation(NPC, 602.42, -26.38, 373.37, 2, 0)
  50. MovementLoopAddLocation(NPC, 604.8, -20.78, 358.33, 2, 0)
  51. MovementLoopAddLocation(NPC, 606.88, -20.72, 345.55, 2, 0)
  52. MovementLoopAddLocation(NPC, 609.85, -20.62, 336.13, 2, 0)
  53. MovementLoopAddLocation(NPC, 610.16, -20.56, 335.15, 2, 0)
  54. MovementLoopAddLocation(NPC, 605.24, -20.4, 326.1, 2, 1)
  55. MovementLoopAddLocation(NPC, 605.24, -20.4, 326.1, 2, 65,"EcologyEmotes")
  56. MovementLoopAddLocation(NPC, 606.82, -20.57, 327.48, 2, 0)
  57. MovementLoopAddLocation(NPC, 614.57, -20.49, 328.11, 2, 0)
  58. MovementLoopAddLocation(NPC, 617.03, -20.44, 326.41, 2, 0)
  59. MovementLoopAddLocation(NPC, 618.12, -20.41, 325.82, 2, 1)
  60. MovementLoopAddLocation(NPC, 618.12, -20.41, 325.82, 2, 18,"EcologyEmotes")
  61. MovementLoopAddLocation(NPC, 618.12, -20.41, 325.82, 2, 0)
  62. MovementLoopAddLocation(NPC, 617.51, -20.47, 324.99, 2, 0)
  63. end