ratthree.lua 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. --[[
  2. Script Name : ratthree.lua
  3. Script Purpose : Waypoint Path for ratthree.lua
  4. Script Author : Devn00b
  5. Script Date : 04/09/2020 04:30:37 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, 734.57, -21.39, -41.69, 4, 0)
  19. MovementLoopAddLocation(NPC, 804.71, -20.41, -59.3, 4, 0)
  20. MovementLoopAddLocation(NPC, 845.7, -25.43, -58.79, 4, 0)
  21. MovementLoopAddLocation(NPC, 895.37, -25.41, -57.54, 4, 0)
  22. MovementLoopAddLocation(NPC, 906.43, -25.4, -24.67, 4, 0)
  23. MovementLoopAddLocation(NPC, 894.58, -25.53, -22.1, 4, 0)
  24. MovementLoopAddLocation(NPC, 883.24, -25.44, -29.69, 4, 0)
  25. MovementLoopAddLocation(NPC, 872.85, -25.47, -32.82, 4, 0)
  26. MovementLoopAddLocation(NPC, 851.1, -25.47, -29.69, 4, 0)
  27. MovementLoopAddLocation(NPC, 831.81, -25.43, -20.37, 4, 0)
  28. MovementLoopAddLocation(NPC, 829.96, -25.43, -9.15, 4, 0)
  29. MovementLoopAddLocation(NPC, 838.11, -25.45, -5.72, 4, 0)
  30. MovementLoopAddLocation(NPC, 847.08, -25.46, 12.45, 4, 0)
  31. MovementLoopAddLocation(NPC, 861.07, -25.44, 24.6, 4, 0)
  32. MovementLoopAddLocation(NPC, 847.08, -25.46, 12.45, 4, 0)
  33. MovementLoopAddLocation(NPC, 838.11, -25.45, -5.72, 4, 0)
  34. MovementLoopAddLocation(NPC, 829.96, -25.43, -9.15, 4, 0)
  35. MovementLoopAddLocation(NPC, 831.81, -25.43, -20.37, 4, 0)
  36. MovementLoopAddLocation(NPC, 851.1, -25.47, -29.69, 4, 0)
  37. MovementLoopAddLocation(NPC, 872.85, -25.47, -32.82, 4, 0)
  38. MovementLoopAddLocation(NPC, 883.24, -25.44, -29.69, 4, 0)
  39. MovementLoopAddLocation(NPC, 894.58, -25.53, -22.1, 4, 0)
  40. MovementLoopAddLocation(NPC, 906.43, -25.4, -24.67, 4, 0)
  41. MovementLoopAddLocation(NPC, 895.37, -25.41, -57.54, 4, 0)
  42. MovementLoopAddLocation(NPC, 845.7, -25.43, -58.79, 4, 0)
  43. MovementLoopAddLocation(NPC, 804.71, -20.41, -59.3, 4, 0)
  44. MovementLoopAddLocation(NPC, 734.57, -21.39, -41.69, 4, 0)
  45. end