akodiakHillside2.lua 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --[[
  2. Script Name : SpawnScripts/Antonica/akodiakHillside2.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2023.02.28 08:02:11
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/CatalogueQuestUpdates.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. AddTimer(NPC, 6000, "waypoints")
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end
  20. function waypoints(NPC)
  21. MovementLoopAddLocation(NPC, -1987.62, -23.9, 382.92, 2, 0)
  22. MovementLoopAddLocation(NPC, -1987.33, -21.3, 375.34, 2, 0)
  23. MovementLoopAddLocation(NPC, -1981.43, -17.22, 369.78, 2, 0)
  24. MovementLoopAddLocation(NPC, -1972.57, -13.9, 368.81, 2, 0)
  25. MovementLoopAddLocation(NPC, -1961.79, -11.1, 369.82, 2, 0)
  26. MovementLoopAddLocation(NPC, -1950.8, -8.34, 370.84, 2, 0)
  27. MovementLoopAddLocation(NPC, -1942.21, -6.46, 371.65, 2, 0)
  28. MovementLoopAddLocation(NPC, -1924.71, -2.64, 373.28, 2, 0)
  29. MovementLoopAddLocation(NPC, -1919.19, -1.79, 373.8, 2, 0)
  30. MovementLoopAddLocation(NPC, -1899.19, -1.51, 375.67, 2, 0)
  31. MovementLoopAddLocation(NPC, -1900.84, -1.71, 377.18, 2, 0)
  32. MovementLoopAddLocation(NPC, -1909.99, -2.36, 382.02, 2, 0)
  33. MovementLoopAddLocation(NPC, -1917.44, -4.91, 388.23, 2, 0)
  34. MovementLoopAddLocation(NPC, -1926.48, -8.17, 391.68, 2, 0)
  35. MovementLoopAddLocation(NPC, -1935.46, -10.42, 390.05, 2, 0)
  36. MovementLoopAddLocation(NPC, -1946.14, -11.9, 385.65, 2, 0)
  37. MovementLoopAddLocation(NPC, -1955.54, -13.05, 381.77, 2, 0)
  38. MovementLoopAddLocation(NPC, -1969.42, -15, 376.05, 2, 0)
  39. MovementLoopAddLocation(NPC, -1982.03, -17.76, 370.86, 2, 0)
  40. MovementLoopAddLocation(NPC, -1994.11, -20.47, 365.88, 2, 0)
  41. MovementLoopAddLocation(NPC, -2003.3, -22.25, 362.1, 2, 0)
  42. MovementLoopAddLocation(NPC, -2003.43, -22.13, 361.65, 2, 0)
  43. MovementLoopAddLocation(NPC, -1994.89, -20.02, 364.02, 2, 0)
  44. MovementLoopAddLocation(NPC, -1990.48, -21.87, 373.64, 2, 0)
  45. MovementLoopAddLocation(NPC, -1992.02, -26.29, 384.75, 2, 0)
  46. MovementLoopAddLocation(NPC, -1997.58, -30.89, 394, 2, 0)
  47. MovementLoopAddLocation(NPC, -1993.29, -29.01, 391.85, 2, 0)
  48. MovementLoopAddLocation(NPC, -1986.09, -25.29, 387.87, 2, 0)
  49. MovementLoopAddLocation(NPC, -1987.62, -23.9, 382.92, 2, 0)
  50. end