tesilah.lua 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. --[[
  2. Script Name : tesilah.lua
  3. Script Purpose : Waypoint Path for tesilah.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 03:21:57 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. end
  14. function respawn(NPC)
  15. spawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 710.44, -19.45, 176.78, 2, 0)
  19. MovementLoopAddLocation(NPC, 708.82, -19.45, 180.77, 2, 0)
  20. MovementLoopAddLocation(NPC, 705.8, -19.54, 188.21, 2, 0)
  21. MovementLoopAddLocation(NPC, 703.43, -19.53, 195.03, 2, 0)
  22. MovementLoopAddLocation(NPC, 690.8, -19.52, 198.95, 2, 0)
  23. MovementLoopAddLocation(NPC, 686.49, -19.52, 213.39, 2, 0)
  24. MovementLoopAddLocation(NPC, 682.72, -19.49, 216.29, 2, 0)
  25. MovementLoopAddLocation(NPC, 637.94, -19.1, 229.9, 2, 0)
  26. MovementLoopAddLocation(NPC, 636.11, -17.14, 224.31, 2, 0)
  27. MovementLoopAddLocation(NPC, 626.03, -17.14, 226.88, 2, 0)
  28. MovementLoopAddLocation(NPC, 610.99, -16.46, 229.12, 2, 0)
  29. MovementLoopAddLocation(NPC, 595.42, -16.57, 232.07, 2, 0)
  30. MovementLoopAddLocation(NPC, 576.71, -16.57, 235.12, 2, 0)
  31. MovementLoopAddLocation(NPC, 573.15, -16.57, 235.49, 2, 0)
  32. MovementLoopAddLocation(NPC, 573.66, -17.93, 241.36, 2, 0)
  33. MovementLoopAddLocation(NPC, 552.73, -17.69, 242.2, 2, 0)
  34. MovementLoopAddLocation(NPC, 531.54, -18.37, 241.84, 2, 0)
  35. MovementLoopAddLocation(NPC, 494.22, -20.02, 239.88, 2, 0)
  36. MovementLoopAddLocation(NPC, 467.68, -21.75, 234.49, 2, 0)
  37. MovementLoopAddLocation(NPC, 458.2, -21.43, 226.86, 2, 0)
  38. MovementLoopAddLocation(NPC, 463.73, -21.39, 213.35, 2, 0)
  39. MovementLoopAddLocation(NPC, 469, -21.28, 200.5, 2, 0)
  40. MovementLoopAddLocation(NPC, 463.68, -20.77, 191.39, 2, 0)
  41. MovementLoopAddLocation(NPC, 469, -21.28, 200.5, 2, 0)
  42. MovementLoopAddLocation(NPC, 463.73, -21.39, 213.35, 2, 0)
  43. MovementLoopAddLocation(NPC, 458.2, -21.43, 226.86, 2, 0)
  44. MovementLoopAddLocation(NPC, 467.68, -21.75, 234.49, 2, 0)
  45. MovementLoopAddLocation(NPC, 494.22, -20.02, 239.88, 2, 0)
  46. MovementLoopAddLocation(NPC, 531.54, -18.37, 241.84, 2, 0)
  47. MovementLoopAddLocation(NPC, 552.73, -17.69, 242.2, 2, 0)
  48. MovementLoopAddLocation(NPC, 573.66, -17.93, 241.36, 2, 0)
  49. MovementLoopAddLocation(NPC, 573.15, -16.57, 235.49, 2, 0)
  50. MovementLoopAddLocation(NPC, 576.71, -16.57, 235.12, 2, 0)
  51. MovementLoopAddLocation(NPC, 595.42, -16.57, 232.07, 2, 0)
  52. MovementLoopAddLocation(NPC, 610.99, -16.46, 229.12, 2, 0)
  53. MovementLoopAddLocation(NPC, 626.03, -17.14, 226.88, 2, 0)
  54. MovementLoopAddLocation(NPC, 636.11, -17.14, 224.31, 2, 0)
  55. MovementLoopAddLocation(NPC, 637.94, -19.1, 229.9, 2, 0)
  56. MovementLoopAddLocation(NPC, 682.72, -19.49, 216.29, 2, 0)
  57. MovementLoopAddLocation(NPC, 686.49, -19.52, 213.39, 2, 0)
  58. MovementLoopAddLocation(NPC, 690.8, -19.52, 198.95, 2, 0)
  59. MovementLoopAddLocation(NPC, 703.43, -19.53, 195.03, 2, 0)
  60. MovementLoopAddLocation(NPC, 705.8, -19.54, 188.21, 2, 0)
  61. MovementLoopAddLocation(NPC, 708.82, -19.45, 180.77, 2, 0)
  62. MovementLoopAddLocation(NPC, 710.44, -19.45, 176.78, 2, 0)
  63. end