ashrillerPath.lua 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. --[[
  2. Script Name : SpawnScripts/DownBelow_Classic/ashrillerPath.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.01.15 02:01:00
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. AddTimer(NPC, 6000, "waypoints")
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. spawn(NPC)
  18. end
  19. function waypoints(NPC)
  20. MovementLoopAddLocation(NPC, -146, 1.5, -78.61, 2, 0)
  21. MovementLoopAddLocation(NPC, -156.39, 1.5, -102.37, 2, 0)
  22. MovementLoopAddLocation(NPC, -158.05, 1.5, -110.08, 2, 0)
  23. MovementLoopAddLocation(NPC, -158.77, 1.5, -125.77, 2, 0)
  24. MovementLoopAddLocation(NPC, -158.97, 1.5, -130.99, 2, 0)
  25. MovementLoopAddLocation(NPC, -157.47, 1.5, -133.94, 2, 0)
  26. MovementLoopAddLocation(NPC, -155.77, 1.5, -135.47, 2, 0)
  27. MovementLoopAddLocation(NPC, -153.24, 1.5, -136.16, 2, 0)
  28. MovementLoopAddLocation(NPC, -140.44, 1.5, -136.42, 2, 0)
  29. MovementLoopAddLocation(NPC, -132.18, 1.5, -136.46, 2, 0)
  30. MovementLoopAddLocation(NPC, -140.45, 1.5, -136.33, 2, 0)
  31. MovementLoopAddLocation(NPC, -150.57, 1.5, -136.39, 2, 0)
  32. MovementLoopAddLocation(NPC, -155.06, 1.5, -136.22, 2, 0)
  33. MovementLoopAddLocation(NPC, -157.06, 1.5, -135.18, 2, 0)
  34. MovementLoopAddLocation(NPC, -158.52, 1.5, -129.24, 2, 0)
  35. MovementLoopAddLocation(NPC, -158.4, 1.5, -111.11, 2, 0)
  36. MovementLoopAddLocation(NPC, -156.25, 1.5, -103.3, 2, 0)
  37. MovementLoopAddLocation(NPC, -146, 1.5, -78.61, 2, 0)
  38. end