aBloodsaberlookoutGuard.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : SpawnScripts/DownBelow_Classic/aBloodsaberlookoutGuard.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.11.10 09:11:55
  5. Script Purpose :
  6. :
  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, 0.86, -0.09, -104.24, 2, 3)
  19. MovementLoopAddLocation(NPC, -5.46, 0.44, -97.93, 2, math.random(4,7))
  20. MovementLoopAddLocation(NPC, -5.46, 0.44, -97.93, 2, 0)
  21. MovementLoopAddLocation(NPC, 2.91, -0.04, -107, 2, 0)
  22. MovementLoopAddLocation(NPC, 2.23, -0.06, -105.59, 2, math.random(4,7))
  23. MovementLoopAddLocation(NPC, 2.23, -0.06, -105.59, 2, 0)
  24. MovementLoopAddLocation(NPC, 4.97, -0.01, -108.13, 2, 0)
  25. MovementLoopAddLocation(NPC, 8.16, -0.12, -107.61, 2, 0)
  26. MovementLoopAddLocation(NPC, 11.06, 0.21, -103.56, 2, math.random(4,7))
  27. MovementLoopAddLocation(NPC, 11.06, 0.21, -103.56, 2, 0)
  28. MovementLoopAddLocation(NPC, 15.94, 0.23, -103.93, 2, 0)
  29. MovementLoopAddLocation(NPC, 16.09, 0.25, -103.5, 2, math.random(4,7))
  30. MovementLoopAddLocation(NPC, 12.57, 0.15, -104.68, 2, 0)
  31. MovementLoopAddLocation(NPC, 7.07, -0.07, -108.05, 2, 0)
  32. MovementLoopAddLocation(NPC, 6.01, -0.08, -111.28, 2, 0)
  33. MovementLoopAddLocation(NPC, 5.93, -0.08, -110.92, 2, math.random(4,7))
  34. MovementLoopAddLocation(NPC, 5.51, -0.05, -108.94, 2, 0)
  35. MovementLoopAddLocation(NPC, 0.99, -0.08, -103.31, 2, math.random(4,7))
  36. MovementLoopAddLocation(NPC, 0.99, -0.08, -103.31, 2, 0)
  37. MovementLoopAddLocation(NPC, 3.26, -0.02, -107.45, 2, 0)
  38. MovementLoopAddLocation(NPC, 2.61, -0.02, -106.95, 2, math.random(4,7))
  39. MovementLoopAddLocation(NPC, 2.61, -0.02, -106.95, 2, 0)
  40. MovementLoopAddLocation(NPC, -0.6, -0.1, -101.81, 2, 0)
  41. MovementLoopAddLocation(NPC, 2.12, -0.06, -100.62, 2, 0)
  42. MovementLoopAddLocation(NPC, 1.95, -0.05, -100.67, 2, math.random(4,7))
  43. MovementLoopAddLocation(NPC, 0.19, -0.08, -102.27, 2, 0)
  44. MovementLoopAddLocation(NPC, 1.96, -0.08, -105.03, 2, 0)
  45. MovementLoopAddLocation(NPC, 0.86, -0.09, -104.24, 2, 2)
  46. end