infected_grave_scorpius4.lua 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. --[[
  2. Script Name : infected_grave_scorpius4.lua
  3. Script Purpose : Waypoint Path for infected_grave_scorpius4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 06:49:05 PM
  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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 253.45, -6.98, -39.13, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 234.51, -7.04, -39.38, 2, 0)
  19. MovementLoopAddLocation(NPC, 230.09, -6.95, -42.26, 2, 0)
  20. MovementLoopAddLocation(NPC, 215.46, -7, -53.8, 2, 0)
  21. MovementLoopAddLocation(NPC, 197.09, -6.9, -53.62, 2, 0)
  22. MovementLoopAddLocation(NPC, 199.45, -6.45, -68.61, 2, 0)
  23. MovementLoopAddLocation(NPC, 200.09, -7.04, -92.81, 2, 0)
  24. MovementLoopAddLocation(NPC, 207.27, -6.96, -92.5, 2, 0)
  25. MovementLoopAddLocation(NPC, 208.09, -6.75, -82.3, 2, 0)
  26. MovementLoopAddLocation(NPC, 211.1, -6.84, -79.59, 2, 0)
  27. MovementLoopAddLocation(NPC, 216.61, -6.84, -78.47, 2, 0)
  28. MovementLoopAddLocation(NPC, 220.33, -6.82, -79.58, 2, 0)
  29. MovementLoopAddLocation(NPC, 221.2, -6.32, -83.49, 2, 0)
  30. MovementLoopAddLocation(NPC, 221.17, -6.9, -104.41, 2, 0)
  31. MovementLoopAddLocation(NPC, 202.89, -6.83, -121.04, 2, 0)
  32. MovementLoopAddLocation(NPC, 197.62, -7.06, -120.88, 2, 0)
  33. MovementLoopAddLocation(NPC, 184.78, -7.02, -107.87, 2, 0)
  34. MovementLoopAddLocation(NPC, 158.42, -6.32, -107.14, 2, 0)
  35. MovementLoopAddLocation(NPC, 149.17, -6.98, -101.53, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 158.42, -6.32, -107.14, 2, 0)
  37. MovementLoopAddLocation(NPC, 184.78, -7.02, -107.87, 2, 0)
  38. MovementLoopAddLocation(NPC, 197.62, -7.06, -120.88, 2, 0)
  39. MovementLoopAddLocation(NPC, 202.89, -6.83, -121.04, 2, 0)
  40. MovementLoopAddLocation(NPC, 221.17, -6.9, -104.41, 2, 0)
  41. MovementLoopAddLocation(NPC, 221.2, -6.32, -83.49, 2, 0)
  42. MovementLoopAddLocation(NPC, 220.33, -6.82, -79.58, 2, 0)
  43. MovementLoopAddLocation(NPC, 216.61, -6.84, -78.47, 2, 0)
  44. MovementLoopAddLocation(NPC, 211.1, -6.84, -79.59, 2, 0)
  45. MovementLoopAddLocation(NPC, 208.09, -6.75, -82.3, 2, 0)
  46. MovementLoopAddLocation(NPC, 207.27, -6.96, -92.5, 2, 0)
  47. MovementLoopAddLocation(NPC, 200.09, -7.04, -92.81, 2, 0)
  48. MovementLoopAddLocation(NPC, 199.45, -6.45, -68.61, 2, 0)
  49. MovementLoopAddLocation(NPC, 197.09, -6.9, -53.62, 2, 0)
  50. MovementLoopAddLocation(NPC, 215.46, -7, -53.8, 2, 0)
  51. MovementLoopAddLocation(NPC, 230.09, -6.95, -42.26, 2, 0)
  52. MovementLoopAddLocation(NPC, 234.51, -7.04, -39.38, 2, 0)
  53. MovementLoopAddLocation(NPC, 253.45, -6.98, -39.13, 2, math.random(0,15))
  54. end