festering_zombie4.lua 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : festering_zombie4.lua
  3. Script Purpose : Waypoint Path for festering_zombie4.lua
  4. Script Author : Devn00b
  5. Script Date : 06/19/2020 01:44:33 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, 77.02, 0.01, -9.64, 2, math.random(0,7))
  18. MovementLoopAddLocation(NPC, 78.54, 0, -9.83, 2, math.random(0,7))
  19. MovementLoopAddLocation(NPC, 78.2, 0, -10.99, 2, math.random(0,7))
  20. MovementLoopAddLocation(NPC, 75.86, 0, -11.36, 2, math.random(0,7))
  21. MovementLoopAddLocation(NPC, 76.72, -0.03, -23.8, 2, math.random(0,7))
  22. MovementLoopAddLocation(NPC, 78.72, 0.04, -23.29, 2, math.random(0,7))
  23. MovementLoopAddLocation(NPC, 74.77, 0, -22.61, 2, math.random(0,7))
  24. MovementLoopAddLocation(NPC, 79.24, 0.03, -13.79, 2, math.random(0,7))
  25. MovementLoopAddLocation(NPC, 74.88, 0.07, -14.46, 2, math.random(0,7))
  26. MovementLoopAddLocation(NPC, 74.1, -0.01, -21.94, 2, math.random(0,7))
  27. MovementLoopAddLocation(NPC, 76.04, 0, -18.87, 2, math.random(0,7))
  28. MovementLoopAddLocation(NPC, 76.57, 0, -10.61, 2, math.random(0,7))
  29. MovementLoopAddLocation(NPC, 76.04, 0, -18.87, 2, math.random(0,7))
  30. MovementLoopAddLocation(NPC, 74.1, -0.01, -21.94, 2, math.random(0,7))
  31. MovementLoopAddLocation(NPC, 74.88, 0.07, -14.46, 2, math.random(0,7))
  32. MovementLoopAddLocation(NPC, 79.24, 0.03, -13.79, 2, math.random(0,7))
  33. MovementLoopAddLocation(NPC, 74.77, 0, -22.61, 2, math.random(0,7))
  34. MovementLoopAddLocation(NPC, 78.72, 0.04, -23.29, 2, math.random(0,7))
  35. MovementLoopAddLocation(NPC, 76.72, -0.03, -23.8, 2, math.random(0,7))
  36. MovementLoopAddLocation(NPC, 75.86, 0, -11.36, 2, math.random(0,7))
  37. MovementLoopAddLocation(NPC, 78.2, 0, -10.99, 2, math.random(0,7))
  38. MovementLoopAddLocation(NPC, 78.54, 0, -9.83, 2, math.random(0,7))
  39. MovementLoopAddLocation(NPC, 77.02, 0.01, -9.64, 2, math.random(0,7))
  40. end