dillon.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --[[
  2. Script Name : dillon.lua
  3. Script Purpose : Waypoint Path for dillon.lua
  4. Script Author : Devn00b
  5. Script Date : 04/10/2020 01:06:06 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, 600.22, -18.07, 236.06, 2, 0)
  19. MovementLoopAddLocation(NPC, 592.73, -18.05, 237.94, 2, 0)
  20. MovementLoopAddLocation(NPC, 583.55, -17.95, 239.05, 2, 0)
  21. MovementLoopAddLocation(NPC, 568.26, -17.75, 240.55, 2, 0)
  22. MovementLoopAddLocation(NPC, 565.64, -17.72, 241.07, 2, 0)
  23. MovementLoopAddLocation(NPC, 560.76, -16.97, 228.14, 2, 0)
  24. MovementLoopAddLocation(NPC, 560.28, -15.13, 213.69, 2, 0)
  25. MovementLoopAddLocation(NPC, 612.83, -15.48, 205.11, 2, 0)
  26. MovementLoopAddLocation(NPC, 679.4, -19.38, 187.64, 2, 0)
  27. MovementLoopAddLocation(NPC, 680.54, -19.27, 192.39, 2, 0)
  28. MovementLoopAddLocation(NPC, 649.22, -17.95, 202.36, 2, 0)
  29. MovementLoopAddLocation(NPC, 611.57, -16.46, 211.89, 2, 0)
  30. MovementLoopAddLocation(NPC, 614.27, -16.46, 228.35, 2, 0)
  31. MovementLoopAddLocation(NPC, 622.97, -17.14, 227.34, 2, 0)
  32. MovementLoopAddLocation(NPC, 632.27, -17.14, 225.55, 2, 0)
  33. MovementLoopAddLocation(NPC, 665.54, -17.95, 215.73, 2, 0)
  34. MovementLoopAddLocation(NPC, 680.64, -17.95, 211.14, 2, 0)
  35. MovementLoopAddLocation(NPC, 665.54, -17.95, 215.73, 2, 0)
  36. MovementLoopAddLocation(NPC, 632.27, -17.14, 225.55, 2, 0)
  37. MovementLoopAddLocation(NPC, 622.97, -17.14, 227.34, 2, 0)
  38. MovementLoopAddLocation(NPC, 614.27, -16.46, 228.35, 2, 0)
  39. MovementLoopAddLocation(NPC, 611.57, -16.46, 211.89, 2, 0)
  40. MovementLoopAddLocation(NPC, 649.22, -17.95, 202.36, 2, 0)
  41. MovementLoopAddLocation(NPC, 680.54, -19.27, 192.39, 2, 0)
  42. MovementLoopAddLocation(NPC, 679.4, -19.38, 187.64, 2, 0)
  43. MovementLoopAddLocation(NPC, 612.83, -15.48, 205.11, 2, 0)
  44. MovementLoopAddLocation(NPC, 560.28, -15.13, 213.69, 2, 0)
  45. MovementLoopAddLocation(NPC, 560.76, -16.97, 228.14, 2, 0)
  46. MovementLoopAddLocation(NPC, 565.64, -17.72, 241.07, 2, 0)
  47. MovementLoopAddLocation(NPC, 568.26, -17.75, 240.55, 2, 0)
  48. MovementLoopAddLocation(NPC, 583.55, -17.95, 239.05, 2, 0)
  49. MovementLoopAddLocation(NPC, 592.73, -18.05, 237.94, 2, 0)
  50. MovementLoopAddLocation(NPC, 600.22, -18.07, 236.06, 2, 0)
  51. end