chapman.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : chapman.lua
  3. Script Purpose : Waypoint Path for chapman.lua
  4. Script Author : Devn00b
  5. Script Date : 04/10/2020 12:23:48 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, 413.02, -20.94, 157.49, 2, 0)
  19. MovementLoopAddLocation(NPC, 431.34, -20.77, 177.7, 2, 0)
  20. MovementLoopAddLocation(NPC, 452.04, -21.98, 240.54, 2, 0)
  21. MovementLoopAddLocation(NPC, 436.42, -21.74, 269.85, 2, 0)
  22. MovementLoopAddLocation(NPC, 447.66, -21.76, 259.01, 2, 0)
  23. MovementLoopAddLocation(NPC, 457.88, -22.22, 236.4, 2, 0)
  24. MovementLoopAddLocation(NPC, 505.74, -19.56, 242.9, 2, 0)
  25. MovementLoopAddLocation(NPC, 578.81, -17.93, 242.68, 2, 0)
  26. MovementLoopAddLocation(NPC, 663.88, -19.39, 224.79, 2, 0)
  27. MovementLoopAddLocation(NPC, 686.32, -19.52, 217.22, 2, 0)
  28. MovementLoopAddLocation(NPC, 679.24, -19.42, 184.53, 2, 0)
  29. MovementLoopAddLocation(NPC, 601.85, -15.83, 204.98, 2, 0)
  30. MovementLoopAddLocation(NPC, 547, -15.41, 209.65, 2, 0)
  31. MovementLoopAddLocation(NPC, 497.18, -16.39, 203.07, 2, 0)
  32. MovementLoopAddLocation(NPC, 413, -20.94, 157.01, 2, 0)
  33. MovementLoopAddLocation(NPC, 497.18, -16.39, 203.07, 2, 0)
  34. MovementLoopAddLocation(NPC, 547, -15.41, 209.65, 2, 0)
  35. MovementLoopAddLocation(NPC, 601.85, -15.83, 204.98, 2, 0)
  36. MovementLoopAddLocation(NPC, 679.24, -19.42, 184.53, 2, 0)
  37. MovementLoopAddLocation(NPC, 686.32, -19.52, 217.22, 2, 0)
  38. MovementLoopAddLocation(NPC, 663.88, -19.39, 224.79, 2, 0)
  39. MovementLoopAddLocation(NPC, 578.81, -17.93, 242.68, 2, 0)
  40. MovementLoopAddLocation(NPC, 505.74, -19.56, 242.9, 2, 0)
  41. MovementLoopAddLocation(NPC, 457.88, -22.22, 236.4, 2, 0)
  42. MovementLoopAddLocation(NPC, 447.66, -21.76, 259.01, 2, 0)
  43. MovementLoopAddLocation(NPC, 436.42, -21.74, 269.85, 2, 0)
  44. MovementLoopAddLocation(NPC, 452.04, -21.98, 240.54, 2, 0)
  45. MovementLoopAddLocation(NPC, 431.34, -20.77, 177.7, 2, 0)
  46. MovementLoopAddLocation(NPC, 413.02, -20.94, 157.49, 2, 0)
  47. end