bloodsaber_highguard4.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : bloodsaber_highguard4.lua
  3. Script Purpose : Waypoint Path for bloodsaber_highguard4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/11/2020 04:37:43 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, -36.5, -0.24, -173.47, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, -40.82, -0.18, -166.11, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, -35.77, -0.18, -169.65, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, -30.97, -0.18, -165.31, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, -30.96, -0.34, -173.59, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, -37.27, -0.42, -173.81, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, -30.96, -0.34, -173.59, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, -30.97, -0.18, -165.31, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, -35.77, -0.18, -169.65, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, -40.82, -0.18, -166.11, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, -36.5, -0.24, -173.47, 2, math.random(0,5))
  28. end