lawler.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. --[[
  2. Script Name : lawler.lua
  3. Script Purpose : Waypoint Path for lawler.lua
  4. Script Author : Devn00b
  5. Script Date : 04/11/2020 03:26:50 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, 382.78, -20.35, 209.21, 2, 30)
  19. MovementLoopAddLocation(NPC, 416.29, -20.5, 224.76, 2, 0)
  20. MovementLoopAddLocation(NPC, 422.42, -20.16, 228.13, 2, 0)
  21. MovementLoopAddLocation(NPC, 433.73, -20.36, 235.98, 2, 0)
  22. MovementLoopAddLocation(NPC, 499.78, -19.76, 243.88, 2, 0)
  23. MovementLoopAddLocation(NPC, 553.41, -17.75, 245.22, 2, 0)
  24. MovementLoopAddLocation(NPC, 555.48, -16.99, 229.04, 2, 0)
  25. MovementLoopAddLocation(NPC, 556.3, -15.08, 217.76, 2, 0)
  26. MovementLoopAddLocation(NPC, 556.2, -14.97, 216.25, 2, 0)
  27. MovementLoopAddLocation(NPC, 556.17, -15.43, 207.6, 2, 0)
  28. MovementLoopAddLocation(NPC, 498.03, -16.24, 203.57, 2, 0)
  29. MovementLoopAddLocation(NPC, 476.51, -20.95, 195.22, 2, 0)
  30. MovementLoopAddLocation(NPC, 442.44, -20.58, 173.74, 2, 0)
  31. MovementLoopAddLocation(NPC, 429.93, -20.81, 184.5, 2, 0)
  32. MovementLoopAddLocation(NPC, 420.87, -20.27, 192.41, 2, 0)
  33. MovementLoopAddLocation(NPC, 390.1, -20.39, 189.13, 2, 0)
  34. MovementLoopAddLocation(NPC, 380.86, -20.25, 207.69, 2, 0)
  35. MovementLoopAddLocation(NPC, 390.1, -20.39, 189.13, 2, 0)
  36. MovementLoopAddLocation(NPC, 420.87, -20.27, 192.41, 2, 0)
  37. MovementLoopAddLocation(NPC, 429.93, -20.81, 184.5, 2, 0)
  38. MovementLoopAddLocation(NPC, 442.44, -20.58, 173.74, 2, 0)
  39. MovementLoopAddLocation(NPC, 476.51, -20.95, 195.22, 2, 0)
  40. MovementLoopAddLocation(NPC, 498.03, -16.24, 203.57, 2, 0)
  41. MovementLoopAddLocation(NPC, 556.17, -15.43, 207.6, 2, 0)
  42. MovementLoopAddLocation(NPC, 556.2, -14.97, 216.25, 2, 0)
  43. MovementLoopAddLocation(NPC, 556.3, -15.08, 217.76, 2, 0)
  44. MovementLoopAddLocation(NPC, 555.48, -16.99, 229.04, 2, 0)
  45. MovementLoopAddLocation(NPC, 553.41, -17.75, 245.22, 2, 0)
  46. MovementLoopAddLocation(NPC, 499.78, -19.76, 243.88, 2, 0)
  47. MovementLoopAddLocation(NPC, 433.73, -20.36, 235.98, 2, 0)
  48. MovementLoopAddLocation(NPC, 422.42, -20.16, 228.13, 2, 0)
  49. MovementLoopAddLocation(NPC, 416.29, -20.5, 224.76, 2, 0)
  50. MovementLoopAddLocation(NPC, 382.78, -20.35, 209.21, 2, 0)
  51. end