Brute.lua 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. --[[
  2. Script Name : SpawnScripts/Neriak/Brute.lua
  3. Script Purpose : Waypoint Path for Brute
  4. Script Author : Cynnar
  5. Script Date : 5/27/2018 12:00:00 AM
  6. Script Notes : <special-instructions>
  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. end
  16. function waypoints(NPC)
  17. ranpause = math.random(0, 10)
  18. MovementLoopAddLocation(NPC, -588.84, 27.72, 33.22, 2, 0)
  19. MovementLoopAddLocation(NPC, -596.21, 27.37, 41.73, 2, ranpause)
  20. MovementLoopAddLocation(NPC, -616.07, 27.05, 48.21, 2, 0)
  21. MovementLoopAddLocation(NPC, -622.31, 27.04, 51.81, 2, 0)
  22. MovementLoopAddLocation(NPC, -626.66, 27.05, 56.75, 2, 0)
  23. MovementLoopAddLocation(NPC, -628.53, 26.93, 62.82, 2, ranpause)
  24. MovementLoopAddLocation(NPC, -627.81, 26.27, 69.33, 2, 0)
  25. MovementLoopAddLocation(NPC, -626.05, 25.02, 73.16, 2, 0)
  26. MovementLoopAddLocation(NPC, -621.1, 23.44, 80.02, 2, 0)
  27. MovementLoopAddLocation(NPC, -615.2, 21.96, 85.74, 2, 0)
  28. MovementLoopAddLocation(NPC, -611.49, 21.79, 86.67, 2, ranpause)
  29. MovementLoopAddLocation(NPC, -608.25, 21.92, 86.39, 2, 0)
  30. MovementLoopAddLocation(NPC, -601.81, 22.53, 84.96, 2, 0)
  31. MovementLoopAddLocation(NPC, -592.17, 21.45, 85.28, 2, 0)
  32. MovementLoopAddLocation(NPC, -587.27, 21.01, 87.67, 2, ranpause)
  33. MovementLoopAddLocation(NPC, -584.73, 20.67, 92.57, 2, 0)
  34. MovementLoopAddLocation(NPC, -584.64, 20.1, 97.55, 2, 0)
  35. MovementLoopAddLocation(NPC, -585.41, 18.42, 110.12, 2, 0)
  36. MovementLoopAddLocation(NPC, -584.97, 18.26, 114.33, 2, 0)
  37. MovementLoopAddLocation(NPC, -585.77, 18.65, 118.75, 2, ranpause)
  38. MovementLoopAddLocation(NPC, -586.27, 19.64, 130.91, 2, 0)
  39. MovementLoopAddLocation(NPC, -585.88, 20.08, 132.92, 2, 0)
  40. MovementLoopAddLocation(NPC, -586.06, 20.29, 136.76, 2, ranpause)
  41. MovementLoopAddLocation(NPC, -585.88, 20.08, 132.92, 2, 0)
  42. MovementLoopAddLocation(NPC, -586.27, 19.64, 130.91, 2, 0)
  43. MovementLoopAddLocation(NPC, -585.77, 18.65, 118.75, 2, 0)
  44. MovementLoopAddLocation(NPC, -584.97, 18.26, 114.33, 2, 0)
  45. MovementLoopAddLocation(NPC, -585.41, 18.42, 110.12, 2, ranpause)
  46. MovementLoopAddLocation(NPC, -584.64, 20.1, 97.55, 2, 0)
  47. MovementLoopAddLocation(NPC, -584.73, 20.67, 92.57, 2, 0)
  48. MovementLoopAddLocation(NPC, -587.27, 21.01, 87.67, 2, ranpause)
  49. MovementLoopAddLocation(NPC, -592.17, 21.45, 85.28, 2, 0)
  50. MovementLoopAddLocation(NPC, -601.81, 22.53, 84.96, 2, 0)
  51. MovementLoopAddLocation(NPC, -608.25, 21.92, 86.39, 2, 0)
  52. MovementLoopAddLocation(NPC, -611.49, 21.79, 86.67, 2, ranpause)
  53. MovementLoopAddLocation(NPC, -615.2, 21.96, 85.74, 2, 0)
  54. MovementLoopAddLocation(NPC, -621.1, 23.44, 80.02, 2, 0)
  55. MovementLoopAddLocation(NPC, -626.05, 25.02, 73.16, 2, 0)
  56. MovementLoopAddLocation(NPC, -627.81, 26.27, 69.33, 2, ranpause)
  57. MovementLoopAddLocation(NPC, -628.53, 26.93, 62.82, 2, 0)
  58. MovementLoopAddLocation(NPC, -626.66, 27.05, 56.75, 2, 0)
  59. MovementLoopAddLocation(NPC, -622.31, 27.04, 51.81, 2, 0)
  60. MovementLoopAddLocation(NPC, -616.07, 27.05, 48.21, 2, 0)
  61. MovementLoopAddLocation(NPC, -596.21, 27.37, 41.73, 2, 0)
  62. MovementLoopAddLocation(NPC, -588.84, 27.72, 33.22, 2, ranpause)
  63. end