raleigh.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. --[[
  2. Script Name : raleigh.lua
  3. Script Purpose : Waypoint Path for raleigh.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 06:51:30 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, "", "", "no", 1689589577, 4560189, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 518.13, -10.48, 148.06, 6, 0)
  20. MovementLoopAddLocation(NPC, 546.76, -10.58, 151.7, 6, 0)
  21. MovementLoopAddLocation(NPC, 619.74, -12.25, 144.07, 6, 0)
  22. MovementLoopAddLocation(NPC, 621.1, -16.52, 201.22, 6, 0)
  23. MovementLoopAddLocation(NPC, 557.98, -15.36, 210.45, 6, 0)
  24. MovementLoopAddLocation(NPC, 558.15, -17.19, 232.88, 6, 0)
  25. MovementLoopAddLocation(NPC, 552.57, -17.74, 244.2, 6, 0)
  26. MovementLoopAddLocation(NPC, 503.12, -19.64, 242.37, 6, 0)
  27. MovementLoopAddLocation(NPC, 459.61, -22.15, 233.9, 6, 0)
  28. MovementLoopAddLocation(NPC, 457.36, -21.39, 226.69, 6, 0)
  29. MovementLoopAddLocation(NPC, 471.92, -20.75, 189.58, 6, 0)
  30. MovementLoopAddLocation(NPC, 485.11, -14.58, 159.08, 6, 0)
  31. MovementLoopAddLocation(NPC, 494.06, -11.84, 144.74, 6, 0)
  32. MovementLoopAddLocation(NPC, 514.53, -10.6, 147.01, 6, 0)
  33. MovementLoopAddLocation(NPC, 546.4, -10.57, 151.35, 6, 0)
  34. MovementLoopAddLocation(NPC, 546.6, -14.95, 189.7, 6, 0)
  35. MovementLoopAddLocation(NPC, 546.4, -10.57, 151.35, 6, 0)
  36. MovementLoopAddLocation(NPC, 514.53, -10.6, 147.01, 6, 0)
  37. MovementLoopAddLocation(NPC, 494.06, -11.84, 144.74, 6, 0)
  38. MovementLoopAddLocation(NPC, 485.11, -14.58, 159.08, 6, 0)
  39. MovementLoopAddLocation(NPC, 471.92, -20.75, 189.58, 6, 0)
  40. MovementLoopAddLocation(NPC, 457.36, -21.39, 226.69, 6, 0)
  41. MovementLoopAddLocation(NPC, 459.61, -22.15, 233.9, 6, 0)
  42. MovementLoopAddLocation(NPC, 503.12, -19.64, 242.37, 6, 0)
  43. MovementLoopAddLocation(NPC, 552.57, -17.74, 244.2, 6, 0)
  44. MovementLoopAddLocation(NPC, 558.15, -17.19, 232.88, 6, 0)
  45. MovementLoopAddLocation(NPC, 557.98, -15.36, 210.45, 6, 0)
  46. MovementLoopAddLocation(NPC, 621.1, -16.52, 201.22, 6, 0)
  47. MovementLoopAddLocation(NPC, 619.74, -12.25, 144.07, 6, 0)
  48. MovementLoopAddLocation(NPC, 546.76, -10.58, 151.7, 6, 0)
  49. MovementLoopAddLocation(NPC, 518.13, -10.48, 148.06, 6, 0)
  50. end