forgotten_soul3060.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/DownBelow/forgotten_soul3060.lua
  3. Script Author : LordPazuzu
  4. Script Date : 2022.04.24 07:04:40
  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, -190.24, 0, -31, 2, 0)
  22. MovementLoopAddLocation(NPC, -182.96, -0.09, -37.79, 2, 0)
  23. MovementLoopAddLocation(NPC, -184.09, -0.15, -41.19, 2, 0)
  24. MovementLoopAddLocation(NPC, -190.75, -0.09, -49.17, 2, 0)
  25. MovementLoopAddLocation(NPC, -191.14, -0.14, -54.12, 2, 0)
  26. MovementLoopAddLocation(NPC, -191.11, -0.11, -60.12, 2, 2)
  27. MovementLoopAddLocation(NPC, -199.69, -0.09, -60.34, 2, 7)
  28. MovementLoopAddLocation(NPC, -192.06, -0.08, -60.4, 2, 0)
  29. MovementLoopAddLocation(NPC, -191.16, -0.05, -67.81, 2, 0)
  30. MovementLoopAddLocation(NPC, -184.95, -0.08, -73.4, 2, 0)
  31. MovementLoopAddLocation(NPC, -176.7, -0.26, -73.16, 2, 0)
  32. MovementLoopAddLocation(NPC, -176.35, -0.24, -78.64, 2, 0)
  33. MovementLoopAddLocation(NPC, -179.35, -0.29, -86.67, 2, 0)
  34. MovementLoopAddLocation(NPC, -188.82, -0.05, -93.01, 2, 0)
  35. MovementLoopAddLocation(NPC, -203.06, 0.51, -93.19, 2, 0)
  36. MovementLoopAddLocation(NPC, -208.45, -0.09, -92.06, 2, 0)
  37. MovementLoopAddLocation(NPC, -216.99, -0.09, -84.24, 2, 0)
  38. MovementLoopAddLocation(NPC, -219.22, -0.04, -77.66, 2, 0)
  39. MovementLoopAddLocation(NPC, -219.84, 0.17, -65.21, 2, 5)
  40. MovementLoopAddLocation(NPC, -216.68, -0.02, -57.33, 2, 0)
  41. MovementLoopAddLocation(NPC, -212.45, -0.42, -49.58, 2, 0)
  42. MovementLoopAddLocation(NPC, -192.46, 0, -30.13, 2, 5)
  43. MovementLoopAddLocation(NPC, -190.24, 0, -31, 2, 0)
  44. end