forgotten_soul3057.lua 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. --[[
  2. Script Name : SpawnScripts/DownBelow/forgotten_soul3057.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.04.24 07:04:10
  5. Script Purpose :
  6. :
  7. --]]
  8. dofile("SpawnScripts/Generic/MonsterCallouts/BaseSkeleton1.lua")
  9. require "SpawnScripts/Generic/NPCModule"
  10. function spawn(NPC, Spawn)
  11. NPCModule(NPC, Spawn)
  12. waypoints(NPC)
  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, -204, 0.61, -92.85, 2, 0)
  22. MovementLoopAddLocation(NPC, -198.37, -0.05, -92.96, 2, 0)
  23. MovementLoopAddLocation(NPC, -197.65, -0.06, -103.05, 2, 0)
  24. MovementLoopAddLocation(NPC, -192.8, -0.05, -105.34, 2, 0)
  25. MovementLoopAddLocation(NPC, -185.12, -0.1, -105.84, 2, 0)
  26. MovementLoopAddLocation(NPC, -181.39, -0.03, -110.79, 2, 6)
  27. MovementLoopAddLocation(NPC, -183.25, -0.1, -107.5, 2, 0)
  28. MovementLoopAddLocation(NPC, -195.27, -0.02, -104.67, 2, 0)
  29. MovementLoopAddLocation(NPC, -197.31, -0.03, -99.29, 2, 0)
  30. MovementLoopAddLocation(NPC, -198.05, -0.06, -93.42, 2, 3)
  31. MovementLoopAddLocation(NPC, -189.66, -0.06, -93.36, 2, 0)
  32. MovementLoopAddLocation(NPC, -180.7, -0.25, -88.45, 2, 0)
  33. MovementLoopAddLocation(NPC, -175.88, -0.27, -74.05, 2, 0)
  34. MovementLoopAddLocation(NPC, -184.27, -0.08, -74.17, 2, 0)
  35. MovementLoopAddLocation(NPC, -188.9, 0.41, -71.88, 2, 0)
  36. MovementLoopAddLocation(NPC, -191.6, -0.11, -61.45, 2, 0)
  37. MovementLoopAddLocation(NPC, -199.35, -0.08, -60.63, 2, 0)
  38. MovementLoopAddLocation(NPC, -199.63, -0.08, -63.21, 2, 0)
  39. MovementLoopAddLocation(NPC, -199.86, -0.08, -61.04, 2, 0)
  40. MovementLoopAddLocation(NPC, -191.97, -0.08, -60.63, 2, 0)
  41. MovementLoopAddLocation(NPC, -191.1, -0.13, -55.2, 2, 0)
  42. MovementLoopAddLocation(NPC, -189.95, 0.47, -47.83, 2, 0)
  43. MovementLoopAddLocation(NPC, -181.36, -0.16, -39.12, 2, 0)
  44. MovementLoopAddLocation(NPC, -191.01, 0, -29.55, 2, 0)
  45. MovementLoopAddLocation(NPC, -201.2, 0.14, -39.42, 2, 0)
  46. MovementLoopAddLocation(NPC, -213.82, -0.03, -50.73, 2, 0)
  47. MovementLoopAddLocation(NPC, -218.21, 0.02, -57.46, 2, 0)
  48. MovementLoopAddLocation(NPC, -219.16, 0.16, -64.21, 2, 0)
  49. MovementLoopAddLocation(NPC, -219.02, -0.03, -76.38, 2, 0)
  50. MovementLoopAddLocation(NPC, -218.45, -0.09, -82.71, 2, 0)
  51. MovementLoopAddLocation(NPC, -210.28, -0.04, -91.63, 2, 0)
  52. MovementLoopAddLocation(NPC, -204, 0.61, -92.85, 2, 0)
  53. end