adarklasherPath2.lua 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/adarklasherPath2.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.05.11 07:05:34
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. AddTimer(NPC, 6000, "waypoints")
  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, -41.05, -17.52, 22.56, 2, 0)
  19. MovementLoopAddLocation(NPC, -39.37, -17.27, 20.51, 2, 0)
  20. MovementLoopAddLocation(NPC, -52.02, -18.4, 5.94, 2, 0)
  21. MovementLoopAddLocation(NPC, -52.02, -18.4, 5.94, 2, math.random(5,10))
  22. MovementLoopAddLocation(NPC, -48.96, -18.31, 4.03, 2, 0)
  23. MovementLoopAddLocation(NPC, -48.96, -18.31, 4.03, 2, math.random(5,10))
  24. MovementLoopAddLocation(NPC, -43.53, -17.26, 7.83, 2, 0)
  25. MovementLoopAddLocation(NPC, -43.53, -17.26, 7.83, 2, math.random(5,10))
  26. MovementLoopAddLocation(NPC, -46.45, -17.97, 22.31, 2, 0)
  27. MovementLoopAddLocation(NPC, -46.45, -17.97, 22.31, 2, math.random(5,10))
  28. MovementLoopAddLocation(NPC, -51.61, -18.36, 2.18, 2, 0)
  29. MovementLoopAddLocation(NPC, -51.61, -18.36, 2.18, 2, math.random(5,10))
  30. MovementLoopAddLocation(NPC, -42.52, -17.14, 8.81, 2, 0)
  31. MovementLoopAddLocation(NPC, -42.52, -17.14, 8.81, 2, math.random(5,10))
  32. MovementLoopAddLocation(NPC, -45.71, -17.89, -1.7, 2, 0)
  33. MovementLoopAddLocation(NPC, -45.71, -17.89, -1.7, 2, math.random(5,10))
  34. MovementLoopAddLocation(NPC, -48.42, -18.26, 17.05, 2, 0)
  35. MovementLoopAddLocation(NPC, -48.42, -18.26, 17.05, 2, math.random(5,10))
  36. MovementLoopAddLocation(NPC, -43.74, -17.85, -0.73, 2, 0)
  37. MovementLoopAddLocation(NPC, -43.74, -17.85, -0.73, 2, math.random(5,10))
  38. MovementLoopAddLocation(NPC, -40.06, -17.24, 18.22, 2, 0)
  39. MovementLoopAddLocation(NPC, -40.62, -17.52, 21.73, 2, 0)
  40. MovementLoopAddLocation(NPC, -40.62, -17.52, 21.73, 2, math.random(5,10))
  41. end