a_duck5.lua 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. --[[
  2. Script Name : a_duck5.lua
  3. Script Purpose : Waypoint Path for a_duck5.lua
  4. Script Author : Devn00b
  5. Script Date : 08/05/2020 02:47:30 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, 701.5, -17.34, -342.63, 2, math.random(0,25))
  18. MovementLoopAddLocation(NPC, 694.08, -17.5, -336.23, 2, math.random(0,25))
  19. MovementLoopAddLocation(NPC, 686.64, -20.32, -310.71, 2, math.random(0,25))
  20. MovementLoopAddLocation(NPC, 676.16, -22.34, -313.25, 2, math.random(0,25))
  21. MovementLoopAddLocation(NPC, 701.12, -17.31, -316.64, 2, math.random(0,25))
  22. MovementLoopAddLocation(NPC, 699.51, -17.11, -328.91, 2, math.random(0,25))
  23. MovementLoopAddLocation(NPC, 715.21, -18.29, -343.54, 2, math.random(0,25))
  24. MovementLoopAddLocation(NPC, 728.64, -19.15, -337.07, 2, math.random(0,25))
  25. MovementLoopAddLocation(NPC, 718.67, -18.22, -342.47, 2, math.random(0,25))
  26. MovementLoopAddLocation(NPC, 705.25, -17.48, -343.04, 2, math.random(0,25))
  27. MovementLoopAddLocation(NPC, 718.67, -18.22, -342.47, 2, math.random(0,25))
  28. MovementLoopAddLocation(NPC, 728.64, -19.15, -337.07, 2, math.random(0,25))
  29. MovementLoopAddLocation(NPC, 715.21, -18.29, -343.54, 2, math.random(0,25))
  30. MovementLoopAddLocation(NPC, 699.51, -17.11, -328.91, 2, math.random(0,25))
  31. MovementLoopAddLocation(NPC, 701.12, -17.31, -316.64, 2, math.random(0,25))
  32. MovementLoopAddLocation(NPC, 676.16, -22.34, -313.25, 2, math.random(0,25))
  33. MovementLoopAddLocation(NPC, 686.64, -20.32, -310.71, 2, math.random(0,25))
  34. MovementLoopAddLocation(NPC, 694.08, -17.5, -336.23, 2, math.random(0,25))
  35. MovementLoopAddLocation(NPC, 701.5, -17.34, -342.63, 2, math.random(0,25))
  36. end