festering_zombie12.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : festering_zombie12.lua
  3. Script Purpose : Waypoint Path for festering_zombie12.lua
  4. Script Author : Devn00b
  5. Script Date : 06/30/2020 10:07:39 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, 191.76, -6.98, -157.82, 2, math.random(0,3))
  18. MovementLoopAddLocation(NPC, 190.21, -6.97, -153.24, 2, math.random(0,3))
  19. MovementLoopAddLocation(NPC, 187.15, -6.97, -155.16, 2, math.random(0,3))
  20. MovementLoopAddLocation(NPC, 189.43, -6.97, -158.67, 2, math.random(0,3))
  21. MovementLoopAddLocation(NPC, 192.12, -6.97, -154.61, 2, math.random(0,3))
  22. MovementLoopAddLocation(NPC, 188.72, -7.03, -158.18, 2, math.random(0,3))
  23. MovementLoopAddLocation(NPC, 186.65, -6.86, -153.5, 2, math.random(0,3))
  24. MovementLoopAddLocation(NPC, 189.84, -6.97, -153.64, 2, math.random(0,3))
  25. MovementLoopAddLocation(NPC, 189.68, -7, -155.39, 2, math.random(0,3))
  26. MovementLoopAddLocation(NPC, 190.68, -6.97, -153.91, 2, math.random(0,3))
  27. MovementLoopAddLocation(NPC, 192.42, -6.97, -157.85, 2, math.random(0,3))
  28. MovementLoopAddLocation(NPC, 186.68, -6.97, -154.78, 2, math.random(0,3))
  29. MovementLoopAddLocation(NPC, 192.42, -6.97, -157.85, 2, math.random(0,3))
  30. MovementLoopAddLocation(NPC, 190.68, -6.97, -153.91, 2, math.random(0,3))
  31. MovementLoopAddLocation(NPC, 189.68, -7, -155.39, 2, math.random(0,3))
  32. MovementLoopAddLocation(NPC, 189.84, -6.97, -153.64, 2, math.random(0,3))
  33. MovementLoopAddLocation(NPC, 186.65, -6.86, -153.5, 2, math.random(0,3))
  34. MovementLoopAddLocation(NPC, 188.72, -7.03, -158.18, 2, math.random(0,3))
  35. MovementLoopAddLocation(NPC, 192.12, -6.97, -154.61, 2, math.random(0,3))
  36. MovementLoopAddLocation(NPC, 189.43, -6.97, -158.67, 2, math.random(0,3))
  37. MovementLoopAddLocation(NPC, 187.15, -6.97, -155.16, 2, math.random(0,3))
  38. MovementLoopAddLocation(NPC, 190.21, -6.97, -153.24, 2, math.random(0,3))
  39. MovementLoopAddLocation(NPC, 191.76, -6.98, -157.82, 2, math.random(0,3))
  40. end