festering_zombie10.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : festering_zombie10.lua
  3. Script Purpose : Waypoint Path for festering_zombie10.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 06:52:04 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, 256.87, -6.86, -40.04, 2, math.random(0,5))
  18. MovementLoopAddLocation(NPC, 255.07, -6.96, -39.24, 2, math.random(0,5))
  19. MovementLoopAddLocation(NPC, 257.7, -6.62, -38.68, 2, math.random(0,5))
  20. MovementLoopAddLocation(NPC, 255.42, -6.89, -39.97, 2, math.random(0,5))
  21. MovementLoopAddLocation(NPC, 255.18, -7, -36.22, 2, math.random(0,5))
  22. MovementLoopAddLocation(NPC, 255.28, -7.05, -37.92, 2, math.random(0,5))
  23. MovementLoopAddLocation(NPC, 257.38, -6.96, -36.09, 2, math.random(0,5))
  24. MovementLoopAddLocation(NPC, 256.74, -6.93, -38.27, 2, math.random(0,5))
  25. MovementLoopAddLocation(NPC, 257.38, -6.96, -36.09, 2, math.random(0,5))
  26. MovementLoopAddLocation(NPC, 255.28, -7.05, -37.92, 2, math.random(0,5))
  27. MovementLoopAddLocation(NPC, 255.18, -7, -36.22, 2, math.random(0,5))
  28. MovementLoopAddLocation(NPC, 255.42, -6.89, -39.97, 2, math.random(0,5))
  29. MovementLoopAddLocation(NPC, 257.7, -6.62, -38.68, 2, math.random(0,5))
  30. MovementLoopAddLocation(NPC, 255.07, -6.96, -39.24, 2, math.random(0,5))
  31. MovementLoopAddLocation(NPC, 256.87, -6.86, -40.04, 2, math.random(0,5))
  32. end