infected_grave_scorpius2.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : infected_grave_scorpius2.lua
  3. Script Purpose : Waypoint Path for infected_grave_scorpius2.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 01:31:16 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, 137.22, -6.92, -97.49, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 147.92, -7.09, -98.72, 2, 0)
  19. MovementLoopAddLocation(NPC, 157.39, -6.44, -106.16, 2, 0)
  20. MovementLoopAddLocation(NPC, 160.99, -6.92, -106.99, 2, 0)
  21. MovementLoopAddLocation(NPC, 182.53, -7.01, -106.98, 2, 0)
  22. MovementLoopAddLocation(NPC, 200.67, -6.47, -120.98, 2, 0)
  23. MovementLoopAddLocation(NPC, 204.9, -6.99, -120.09, 2, 0)
  24. MovementLoopAddLocation(NPC, 220.26, -6.8, -104.45, 2, 0)
  25. MovementLoopAddLocation(NPC, 222.07, -6.32, -84.57, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 220.26, -6.8, -104.45, 2, 0)
  27. MovementLoopAddLocation(NPC, 204.9, -6.99, -120.09, 2, 0)
  28. MovementLoopAddLocation(NPC, 200.67, -6.47, -120.98, 2, 0)
  29. MovementLoopAddLocation(NPC, 182.53, -7.01, -106.98, 2, 0)
  30. MovementLoopAddLocation(NPC, 160.99, -6.92, -106.99, 2, 0)
  31. MovementLoopAddLocation(NPC, 157.39, -6.44, -106.16, 2, 0)
  32. MovementLoopAddLocation(NPC, 147.92, -7.09, -98.72, 2, 0)
  33. MovementLoopAddLocation(NPC, 137.22, -6.92, -97.49, 2, math.random(0,10))
  34. end