crypt_protector.lua 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : crypt_protector.lua
  3. Script Purpose : Waypoint Path for crypt_protector.lua
  4. Script Author : Devn00b
  5. Script Date : 05/14/2020 12:59:25 AM
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. waypoints(NPC)
  10. end
  11. function hailed(NPC, Spawn)
  12. FaceTarget(NPC, Spawn)
  13. end
  14. function respawn(NPC)
  15. waypoints(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, -201.64, -0.39, -124.2, 2, 0)
  19. MovementLoopAddLocation(NPC, -211.08, -0.18, -125.35, 2, 0)
  20. MovementLoopAddLocation(NPC, -192.64, -0.39, -125.24, 2, 0)
  21. MovementLoopAddLocation(NPC, -202.08, -0.39, -125.16, 2, 0)
  22. MovementLoopAddLocation(NPC, -201.35, -0.02, -115.95, 2, 0)
  23. MovementLoopAddLocation(NPC, -201.39, 0, -134.97, 2, 0)
  24. MovementLoopAddLocation(NPC, -209.79, -0.39, -132.31, 2, 0)
  25. MovementLoopAddLocation(NPC, -207.25, -0.39, -118.09, 2, 0)
  26. MovementLoopAddLocation(NPC, -193.59, -0.39, -117.4, 2, 0)
  27. MovementLoopAddLocation(NPC, -193.67, -0.39, -132.67, 2, 0)
  28. MovementLoopAddLocation(NPC, -201.7, -0.39, -132.88, 2, 0)
  29. MovementLoopAddLocation(NPC, -203.74, -0.39, -123.96, 2, 0)
  30. MovementLoopAddLocation(NPC, -198.64, -0.39, -127.58, 2, 0)
  31. MovementLoopAddLocation(NPC, -205.09, -0.39, -126.97, 2, 0)
  32. MovementLoopAddLocation(NPC, -199.98, -0.39, -122.37, 2, 0)
  33. MovementLoopAddLocation(NPC, -205.09, -0.39, -126.97, 2, 0)
  34. MovementLoopAddLocation(NPC, -198.64, -0.39, -127.58, 2, 0)
  35. MovementLoopAddLocation(NPC, -203.74, -0.39, -123.96, 2, 0)
  36. MovementLoopAddLocation(NPC, -201.7, -0.39, -132.88, 2, 0)
  37. MovementLoopAddLocation(NPC, -193.67, -0.39, -132.67, 2, 0)
  38. MovementLoopAddLocation(NPC, -193.59, -0.39, -117.4, 2, 0)
  39. MovementLoopAddLocation(NPC, -207.25, -0.39, -118.09, 2, 0)
  40. MovementLoopAddLocation(NPC, -209.79, -0.39, -132.31, 2, 0)
  41. MovementLoopAddLocation(NPC, -201.39, 0, -134.97, 2, 0)
  42. MovementLoopAddLocation(NPC, -201.35, -0.02, -115.95, 2, 0)
  43. MovementLoopAddLocation(NPC, -202.08, -0.39, -125.16, 2, 0)
  44. MovementLoopAddLocation(NPC, -192.64, -0.39, -125.24, 2, 0)
  45. MovementLoopAddLocation(NPC, -211.08, -0.18, -125.35, 2, 0)
  46. MovementLoopAddLocation(NPC, -201.64, -0.39, -124.2, 2, 0)
  47. end