aburlySabertoothPath1.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/Blackburrow/aburlySabertoothPath1.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.05.02 08: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, -21.01, -11.72, -23.41, 2, 0)
  19. MovementLoopAddLocation(NPC, -21.01, -11.72, -23.41, 2, math.random(5,10))
  20. MovementLoopAddLocation(NPC, -14.3, -11.29, -15.52, 2, 0)
  21. MovementLoopAddLocation(NPC, -14.3, -11.29, -15.52, 2, math.random(5,10))
  22. MovementLoopAddLocation(NPC, -10.43, -12, -15.91, 2, 0)
  23. MovementLoopAddLocation(NPC, -6.77, -12.24, -16.97, 2, 0)
  24. MovementLoopAddLocation(NPC, -6.77, -12.24, -16.97, 2, math.random(5,10))
  25. MovementLoopAddLocation(NPC, -5.93, -12.04, -6.18, 2, 0)
  26. MovementLoopAddLocation(NPC, -9.28, -12.2, -9.14, 2, 0)
  27. MovementLoopAddLocation(NPC, -10.33, -12.2, -11.55, 2, 0)
  28. MovementLoopAddLocation(NPC, -11.06, -12.2, -10.54, 2, 0)
  29. MovementLoopAddLocation(NPC, -11.06, -12.2, -10.54, 2, math.random(5,10))
  30. MovementLoopAddLocation(NPC, -19.13, -12.33, -17.48, 2, 0)
  31. MovementLoopAddLocation(NPC, -19.13, -12.33, -17.48, 2, math.random(5,10))
  32. MovementLoopAddLocation(NPC, -19.04, -12.01, -25.74, 2, 0)
  33. MovementLoopAddLocation(NPC, -19.04, -12.01, -25.74, 2, math.random(5,10))
  34. MovementLoopAddLocation(NPC, -18.2, -11.77, -28.96, 2, 0)
  35. MovementLoopAddLocation(NPC, -18.2, -11.77, -28.96, 2, math.random(5,10))
  36. MovementLoopAddLocation(NPC, -15.64, -11.65, -27.79, 2, 0)
  37. MovementLoopAddLocation(NPC, -8.73, -12.2, -16.41, 2, 0)
  38. MovementLoopAddLocation(NPC, -8.73, -12.2, -16.41, 2, math.random(5,10))
  39. end