infected_burrower.lua 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : infeced_burrower.lua
  3. Script Purpose : Waypoint Path for infeced_burrower.lua
  4. Script Author : Devn00b
  5. Script Date : 06/19/2020 12:54: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. end
  16. function waypoints(NPC)
  17. MovementLoopAddLocation(NPC, 51.72, 0.04, -91.85, 2, math.random(0,10))
  18. MovementLoopAddLocation(NPC, 48.38, 0.11, -89.18, 2, math.random(0,10))
  19. MovementLoopAddLocation(NPC, 55.45, 0.07, -89.38, 2, math.random(0,10))
  20. MovementLoopAddLocation(NPC, 51.8, 0.03, -85.51, 2, math.random(0,10))
  21. MovementLoopAddLocation(NPC, 49.44, 0.06, -94.97, 2, math.random(0,10))
  22. MovementLoopAddLocation(NPC, 45.76, 0.05, -91.97, 2, math.random(0,10))
  23. MovementLoopAddLocation(NPC, 57.76, 0.06, -86.71, 2, math.random(0,10))
  24. MovementLoopAddLocation(NPC, 54.26, 0.06, -83.24, 2, math.random(0,10))
  25. MovementLoopAddLocation(NPC, 57.76, 0.06, -86.71, 2, math.random(0,10))
  26. MovementLoopAddLocation(NPC, 45.76, 0.05, -91.97, 2, math.random(0,10))
  27. MovementLoopAddLocation(NPC, 49.44, 0.06, -94.97, 2, math.random(0,10))
  28. MovementLoopAddLocation(NPC, 51.8, 0.03, -85.51, 2, math.random(0,10))
  29. MovementLoopAddLocation(NPC, 55.45, 0.07, -89.38, 2, math.random(0,10))
  30. MovementLoopAddLocation(NPC, 48.38, 0.11, -89.18, 2, math.random(0,10))
  31. MovementLoopAddLocation(NPC, 51.72, 0.04, -91.85, 2, math.random(0,10))
  32. end