bloodsaber_highguard3.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. --[[
  2. Script Name : bloodsaber_highguard3.lua
  3. Script Purpose : Waypoint Path for bloodsaber_highguard3.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 04:37:39 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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, -33.04, -0.8, -175.22, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, -19.68, -0.18, -180.97, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -25.05, -0.18, -181.17, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -33.52, -0.47, -174.06, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -28.21, -0.09, -169.23, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -39, -0.18, -165.1, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -36.46, -0.18, -170.21, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -41.49, -0.28, -173.54, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -24.55, -0.18, -174.45, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -20.19, -0.18, -188.06, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -31.08, -0.48, -181.92, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, -27.85, -0.18, -171.58, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, -38.01, -0.18, -164.87, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, -27.85, -0.18, -171.58, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, -31.08, -0.48, -181.92, 2, math.random(0,5))
  32. MovementLoopAddLocation(NPC, -20.19, -0.18, -188.06, 2, math.random(0,5))
  33. MovementLoopAddLocation(NPC, -24.55, -0.18, -174.45, 2, math.random(0,5))
  34. MovementLoopAddLocation(NPC, -41.49, -0.28, -173.54, 2, math.random(0,5))
  35. MovementLoopAddLocation(NPC, -36.46, -0.18, -170.21, 2, math.random(0,5))
  36. MovementLoopAddLocation(NPC, -39, -0.18, -165.1, 2, math.random(0,5))
  37. MovementLoopAddLocation(NPC, -28.21, -0.09, -169.23, 2, math.random(0,5))
  38. MovementLoopAddLocation(NPC, -33.52, -0.47, -174.06, 2, math.random(0,5))
  39. MovementLoopAddLocation(NPC, -25.05, -0.18, -181.17, 2, math.random(0,5))
  40. MovementLoopAddLocation(NPC, -19.68, -0.18, -180.97, 2, math.random(0,5))
  41. MovementLoopAddLocation(NPC, -33.04, -0.8, -175.22, 2, math.random(0,5))
  42. end