cloudsend.lua 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. --[[
  2. Script Name : cloudsend.lua
  3. Script Purpose : Waypoint Path for cloudsend.lua
  4. Script Author : Devn00b
  5. Script Date : 04/10/2020 01:50:27 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. PlayFlavor(NPC, "voiceover/english/optional2/woodelf_eco_good_2/ft/woodelf/woodelf_eco_good_2_aoi_gf_e67f1023.mp3", "Such a beautiful day! All I need now is a nice vintage of elven mulberry and my relaxation will be complete.", "stretch", 3245673411, 1934163553, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 443.86, -20.59, 201.35, 2, 0)
  20. MovementLoopAddLocation(NPC, 435.86, -20.59, 185.28, 2, 0)
  21. MovementLoopAddLocation(NPC, 438.19, -20.52, 181.9, 2, 0)
  22. MovementLoopAddLocation(NPC, 442.92, -20.44, 179.54, 2, 0)
  23. MovementLoopAddLocation(NPC, 448.83, -20.45, 180.16, 2, 0)
  24. MovementLoopAddLocation(NPC, 454.23, -20.5, 182.7, 2, 0)
  25. MovementLoopAddLocation(NPC, 472.21, -20.95, 192.99, 2, 0)
  26. MovementLoopAddLocation(NPC, 498.83, -16.24, 202.5, 2, 0)
  27. MovementLoopAddLocation(NPC, 540.19, -15.36, 210.64, 2, 0)
  28. MovementLoopAddLocation(NPC, 606.34, -15.68, 202.24, 2, 0)
  29. MovementLoopAddLocation(NPC, 646.45, -16.75, 190.83, 2, 0)
  30. MovementLoopAddLocation(NPC, 681.56, -19.48, 185.52, 2, 0)
  31. MovementLoopAddLocation(NPC, 691.11, -19.52, 195.05, 2, 0)
  32. MovementLoopAddLocation(NPC, 703.6, -19.54, 190.78, 2, 0)
  33. MovementLoopAddLocation(NPC, 701.32, -19.5, 176.4, 2, 0)
  34. MovementLoopAddLocation(NPC, 669, -21.16, 146.49, 2, 0)
  35. MovementLoopAddLocation(NPC, 702.39, -19.53, 174.71, 2, 0)
  36. MovementLoopAddLocation(NPC, 705.45, -19.53, 193.19, 2, 0)
  37. MovementLoopAddLocation(NPC, 689.3, -19.52, 199.08, 2, 0)
  38. MovementLoopAddLocation(NPC, 683.33, -19.69, 219.28, 2, 0)
  39. MovementLoopAddLocation(NPC, 661.81, -19.12, 227.48, 2, 0)
  40. MovementLoopAddLocation(NPC, 615.7, -18.25, 237.47, 2, 0)
  41. MovementLoopAddLocation(NPC, 611.5, -15.32, 207.96, 2, 0)
  42. MovementLoopAddLocation(NPC, 615.7, -18.25, 237.47, 2, 0)
  43. MovementLoopAddLocation(NPC, 661.81, -19.12, 227.48, 2, 0)
  44. MovementLoopAddLocation(NPC, 683.33, -19.69, 219.28, 2, 0)
  45. MovementLoopAddLocation(NPC, 689.3, -19.52, 199.08, 2, 0)
  46. MovementLoopAddLocation(NPC, 705.45, -19.53, 193.19, 2, 0)
  47. MovementLoopAddLocation(NPC, 702.39, -19.53, 174.71, 2, 0)
  48. MovementLoopAddLocation(NPC, 669, -21.16, 146.49, 2, 0)
  49. MovementLoopAddLocation(NPC, 701.32, -19.5, 176.4, 2, 0)
  50. MovementLoopAddLocation(NPC, 703.6, -19.54, 190.78, 2, 0)
  51. MovementLoopAddLocation(NPC, 691.11, -19.52, 195.05, 2, 0)
  52. MovementLoopAddLocation(NPC, 681.56, -19.48, 185.52, 2, 0)
  53. MovementLoopAddLocation(NPC, 646.45, -16.75, 190.83, 2, 0)
  54. MovementLoopAddLocation(NPC, 606.34, -15.68, 202.24, 2, 0)
  55. MovementLoopAddLocation(NPC, 540.19, -15.36, 210.64, 2, 0)
  56. MovementLoopAddLocation(NPC, 498.83, -16.24, 202.5, 2, 0)
  57. MovementLoopAddLocation(NPC, 472.21, -20.95, 192.99, 2, 0)
  58. MovementLoopAddLocation(NPC, 454.23, -20.5, 182.7, 2, 0)
  59. MovementLoopAddLocation(NPC, 448.83, -20.45, 180.16, 2, 0)
  60. MovementLoopAddLocation(NPC, 442.92, -20.44, 179.54, 2, 0)
  61. MovementLoopAddLocation(NPC, 438.19, -20.52, 181.9, 2, 0)
  62. MovementLoopAddLocation(NPC, 435.86, -20.59, 185.28, 2, 0)
  63. MovementLoopAddLocation(NPC, 443.86, -20.59, 201.35, 2, 0)
  64. end