festering_zombie8.lua 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. --[[
  2. Script Name : festering_zombie8.lua
  3. Script Purpose : Waypoint Path for festering_zombie8.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 05:24:02 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, 188.29, -6.97, -94.03, 2, math.random(0,3))
  18. MovementLoopAddLocation(NPC, 186.55, -6.57, -94.3, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 186.18, -7, -88.5, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 188.89, -7.12, -90.37, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 185.76, -6.62, -91.04, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 186.99, -6.93, -88.38, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 187.08, -6.93, -90.75, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 188.61, -7.19, -91.65, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 186.56, -6.74, -90.88, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 188.55, -7.17, -91.93, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 186.53, -6.52, -93.16, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 188.55, -7.17, -91.93, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 186.56, -6.74, -90.88, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 188.61, -7.19, -91.65, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 187.08, -6.93, -90.75, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, 186.99, -6.93, -88.38, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, 185.76, -6.62, -91.04, 2, math.random(0,15))
  34. MovementLoopAddLocation(NPC, 188.89, -7.12, -90.37, 2, math.random(0,15))
  35. MovementLoopAddLocation(NPC, 186.18, -7, -88.5, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 186.55, -6.57, -94.3, 2, math.random(0,15))
  37. MovementLoopAddLocation(NPC, 188.29, -6.97, -94.03, 2, math.random(0,3))
  38. end