aSabertoothsentryPath2.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/aSabertoothsentryPath2.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.05.03 08:05:48
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseGnoll1.lua")
  9. function spawn(NPC)
  10. AddTimer(NPC, 6000, "waypoints")
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, -58.11, -17.15, 65.23, 2, 0)
  20. MovementLoopAddLocation(NPC, -55.42, -17.23, 63.93, 2, 0)
  21. MovementLoopAddLocation(NPC, -51.58, -16.92, 63.15, 2, 0)
  22. MovementLoopAddLocation(NPC, -41.14, -15.91, 57.67, 2, 0)
  23. MovementLoopAddLocation(NPC, -36.01, -15.55, 54.76, 2, 0)
  24. MovementLoopAddLocation(NPC, -33.8, -15, 52.22, 2, 0)
  25. MovementLoopAddLocation(NPC, -27.22, -14.56, 46.65, 2, 0)
  26. MovementLoopAddLocation(NPC, -26.04, -14.46, 44.76, 2, 0)
  27. MovementLoopAddLocation(NPC, -24.53, -14.4, 44.28, 2, 0)
  28. MovementLoopAddLocation(NPC, -22.01, -14.42, 44.57, 2, 0)
  29. MovementLoopAddLocation(NPC, -19.83, -14.37, 46, 2, 0)
  30. MovementLoopAddLocation(NPC, -21.1, -14.38, 45.17, 2, 0)
  31. MovementLoopAddLocation(NPC, -23.37, -14.42, 44.39, 2, 0)
  32. MovementLoopAddLocation(NPC, -25.11, -14.47, 45.23, 2, 0)
  33. MovementLoopAddLocation(NPC, -28.76, -14.69, 48.18, 2, 0)
  34. MovementLoopAddLocation(NPC, -35.17, -15.41, 54.08, 2, 0)
  35. MovementLoopAddLocation(NPC, -40.41, -15.84, 57.5, 2, 0)
  36. MovementLoopAddLocation(NPC, -47.34, -16.57, 61.12, 2, 0)
  37. MovementLoopAddLocation(NPC, -48.5, -16.73, 62.3, 2, 0)
  38. end