forgotten_soul3058.lua 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. --[[
  2. Script Name : SpawnScripts/DownBelow/forgotten_soul3058.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.04.24 07:04:19
  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, -218.89, 0, -67.59, 2, 0)
  22. MovementLoopAddLocation(NPC, -219.03, -0.02, -78.21, 2, 0)
  23. MovementLoopAddLocation(NPC, -217.12, -0.09, -83.63, 2, 0)
  24. MovementLoopAddLocation(NPC, -208.97, -0.09, -92.01, 2, 0)
  25. MovementLoopAddLocation(NPC, -198.3, -0.06, -93.07, 2, 5)
  26. MovementLoopAddLocation(NPC, -186.71, -0.03, -92.97, 2, 0)
  27. MovementLoopAddLocation(NPC, -177.62, -0.25, -83.64, 2, 0)
  28. MovementLoopAddLocation(NPC, -175.67, -0.27, -73.6, 2, 6)
  29. MovementLoopAddLocation(NPC, -185.77, -0.09, -73.26, 2, 0)
  30. MovementLoopAddLocation(NPC, -191.11, -0.09, -65.91, 2, 0)
  31. MovementLoopAddLocation(NPC, -191.89, -0.09, -60.93, 2, 2)
  32. MovementLoopAddLocation(NPC, -199.89, -0.08, -60.75, 2, 6)
  33. MovementLoopAddLocation(NPC, -191.63, -0.1, -60.61, 2, 0)
  34. MovementLoopAddLocation(NPC, -189.76, 0.45, -47.76, 2, 0)
  35. MovementLoopAddLocation(NPC, -180.99, -0.16, -38.62, 2, 0)
  36. MovementLoopAddLocation(NPC, -189.76, 0.46, -47.8, 2, 4)
  37. MovementLoopAddLocation(NPC, -191.27, -0.11, -60.34, 2, 0)
  38. MovementLoopAddLocation(NPC, -188.67, 0.41, -70.41, 2, 0)
  39. MovementLoopAddLocation(NPC, -176.55, -0.27, -73.83, 2, 0)
  40. MovementLoopAddLocation(NPC, -177.8, -0.26, -85.09, 2, 0)
  41. MovementLoopAddLocation(NPC, -189.62, -0.07, -93.15, 2, 0)
  42. MovementLoopAddLocation(NPC, -197.95, -0.07, -93.16, 2, 2)
  43. MovementLoopAddLocation(NPC, -197.24, -0.09, -102.33, 2, 0)
  44. MovementLoopAddLocation(NPC, -191.17, -0.12, -105.1, 2, 5)
  45. MovementLoopAddLocation(NPC, -196.05, -0.04, -103.76, 2, 0)
  46. MovementLoopAddLocation(NPC, -197.66, -0.05, -92.96, 2, 0)
  47. MovementLoopAddLocation(NPC, -208.55, -0.07, -92.55, 2, 0)
  48. MovementLoopAddLocation(NPC, -217.52, -0.09, -84.23, 2, 0)
  49. MovementLoopAddLocation(NPC, -218.41, 0.01, -58.56, 2, 0)
  50. MovementLoopAddLocation(NPC, -208.83, -0.9, -46.78, 2, 0)
  51. MovementLoopAddLocation(NPC, -199.23, 0, -37.17, 2, 5)
  52. MovementLoopAddLocation(NPC, -216.1, 0.02, -53.91, 2, 0)
  53. MovementLoopAddLocation(NPC, -218.73, 0.03, -63.04, 2, 0)
  54. end