aCavemawsentinelA.lua 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : SpawnScripts/Antonica/aCavemawsentinelA.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.07.19 06:07:38
  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. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, -919.84, -19.81, -95.74, 2, 5)
  20. MovementLoopAddLocation(NPC, -921.93, -18.26, -79.45, 2, 0)
  21. MovementLoopAddLocation(NPC, -912.37, -18.23, -72.21, 2, 0)
  22. MovementLoopAddLocation(NPC, -898.26, -18.49, -73.18, 2, 0)
  23. MovementLoopAddLocation(NPC, -881.36, -19.98, -77.61, 2, 0)
  24. MovementLoopAddLocation(NPC, -866.63, -23.75, -58.67, 2, 0)
  25. MovementLoopAddLocation(NPC, -847.1, -27.56, -54.52, 2, 0)
  26. MovementLoopAddLocation(NPC, -830.82, -29.23, -52.76, 2, 0)
  27. MovementLoopAddLocation(NPC, -831.54, -29.44, -36.74, 2, 0)
  28. MovementLoopAddLocation(NPC, -831.98, -30.49, -22.28, 2, 0)
  29. MovementLoopAddLocation(NPC, -830.95, -29.47, -35.18, 2, 0)
  30. MovementLoopAddLocation(NPC, -829.36, -29.5, -50.49, 2, 0)
  31. MovementLoopAddLocation(NPC, -841.37, -28.36, -53.8, 2, 0)
  32. MovementLoopAddLocation(NPC, -856.27, -26.12, -53.47, 2, 0)
  33. MovementLoopAddLocation(NPC, -875.64, -20.87, -76.33, 2, 0)
  34. MovementLoopAddLocation(NPC, -890.73, -19.05, -72.29, 2, 0)
  35. MovementLoopAddLocation(NPC, -915.26, -18.24, -72.53, 2, 0)
  36. MovementLoopAddLocation(NPC, -919.02, -18.38, -78.6, 2, 0)
  37. MovementLoopAddLocation(NPC, -919.43, -18.69, -85.35, 2, 0)
  38. MovementLoopAddLocation(NPC, -919.84, -19.81, -95.74, 2, 0)
  39. end