a_duck3.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : a_duck3.lua
  3. Script Purpose : Waypoint Path for a_duck3.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 04:00:57 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, 758.19, -16.93, -308.73, 2, math.random(0,3))
  18. MovementLoopAddLocation(NPC, 778.61, -17.31, -313.38, 2, math.random(0,3))
  19. MovementLoopAddLocation(NPC, 778.98, -17.86, -321.02, 2, math.random(0,3))
  20. MovementLoopAddLocation(NPC, 784.16, -18.82, -331.55, 2, math.random(0,3))
  21. MovementLoopAddLocation(NPC, 781.58, -21.93, -345.87, 2, math.random(0,3))
  22. MovementLoopAddLocation(NPC, 767.77, -18.14, -325.79, 2, math.random(0,3))
  23. MovementLoopAddLocation(NPC, 740.01, -16.72, -313.55, 2, math.random(0,3))
  24. MovementLoopAddLocation(NPC, 741.82, -16.2, -301.39, 2, math.random(0,3))
  25. MovementLoopAddLocation(NPC, 715.85, -17.04, -292.22, 2, math.random(0,3))
  26. MovementLoopAddLocation(NPC, 741.82, -16.2, -301.39, 2, math.random(0,3))
  27. MovementLoopAddLocation(NPC, 740.01, -16.72, -313.55, 2, math.random(0,3))
  28. MovementLoopAddLocation(NPC, 767.77, -18.14, -325.79, 2, math.random(0,3))
  29. MovementLoopAddLocation(NPC, 781.58, -21.93, -345.87, 2, math.random(0,3))
  30. MovementLoopAddLocation(NPC, 784.16, -18.82, -331.55, 2, math.random(0,3))
  31. MovementLoopAddLocation(NPC, 778.98, -17.86, -321.02, 2, math.random(0,3))
  32. MovementLoopAddLocation(NPC, 778.61, -17.31, -313.38, 2, math.random(0,3))
  33. MovementLoopAddLocation(NPC, 758.19, -16.93, -308.73, 2, math.random(0,3))
  34. end