festering_zombie7.lua 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --[[
  2. Script Name : festering_zombie7.lua
  3. Script Purpose : Waypoint Path for festering_zombie7.lua
  4. Script Author : Devn00b
  5. Script Date : 06/26/2020 04:04:12 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, 220.69, -6.83, -119.9, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 219.51, -6.83, -121.76, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 219.61, -6.87, -115.1, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 218.51, -6.79, -121.41, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 218.43, -6.81, -115.38, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 220.57, -6.81, -117.09, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 217.53, -6.73, -120.16, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 219.41, -6.83, -122.22, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 222.28, -6.73, -117.06, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 216.98, -6.78, -116.22, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 219.14, -6.87, -118.06, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 222.22, -6.72, -117.15, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 222.24, -6.78, -118.84, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 218.7, -6.81, -121.48, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 216.5, -6.78, -116.4, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, 218.38, -6.82, -115.91, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, 216.5, -6.78, -116.4, 2, math.random(0,15))
  34. MovementLoopAddLocation(NPC, 218.7, -6.81, -121.48, 2, math.random(0,15))
  35. MovementLoopAddLocation(NPC, 222.24, -6.78, -118.84, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 222.22, -6.72, -117.15, 2, math.random(0,15))
  37. MovementLoopAddLocation(NPC, 219.14, -6.87, -118.06, 2, math.random(0,15))
  38. MovementLoopAddLocation(NPC, 216.98, -6.78, -116.22, 2, math.random(0,15))
  39. MovementLoopAddLocation(NPC, 222.28, -6.73, -117.06, 2, math.random(0,15))
  40. MovementLoopAddLocation(NPC, 219.41, -6.83, -122.22, 2, math.random(0,15))
  41. MovementLoopAddLocation(NPC, 217.53, -6.73, -120.16, 2, math.random(0,15))
  42. MovementLoopAddLocation(NPC, 220.57, -6.81, -117.09, 2, math.random(0,15))
  43. MovementLoopAddLocation(NPC, 218.43, -6.81, -115.38, 2, math.random(0,15))
  44. MovementLoopAddLocation(NPC, 218.51, -6.79, -121.41, 2, math.random(0,15))
  45. MovementLoopAddLocation(NPC, 219.61, -6.87, -115.1, 2, math.random(0,15))
  46. MovementLoopAddLocation(NPC, 219.51, -6.83, -121.76, 2, math.random(0,15))
  47. MovementLoopAddLocation(NPC, 220.69, -6.83, -119.9, 2, math.random(0,15))
  48. end