a_duck4.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. --[[
  2. Script Name : a_duck4.lua
  3. Script Purpose : Waypoint Path for a_duck4.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 04:01:01 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, 743.13, -17.29, -320.91, 2, math.random(0,3))
  18. MovementLoopAddLocation(NPC, 735.53, -17.56, -323.86, 2, math.random(0,3))
  19. MovementLoopAddLocation(NPC, 738.61, -22.13, -337.6, 2, math.random(0,3))
  20. MovementLoopAddLocation(NPC, 758.73, -21.27, -336.2, 2, math.random(0,3))
  21. MovementLoopAddLocation(NPC, 760.11, -17.4, -316.41, 2, math.random(0,3))
  22. MovementLoopAddLocation(NPC, 764.57, -17.81, -308.69, 2, math.random(0,3))
  23. MovementLoopAddLocation(NPC, 778.52, -17.96, -321.96, 2, math.random(0,3))
  24. MovementLoopAddLocation(NPC, 768.19, -22.76, -341.9, 2, math.random(0,3))
  25. MovementLoopAddLocation(NPC, 778.52, -17.96, -321.96, 2, math.random(0,3))
  26. MovementLoopAddLocation(NPC, 764.57, -17.81, -308.69, 2, math.random(0,3))
  27. MovementLoopAddLocation(NPC, 760.11, -17.4, -316.41, 2, math.random(0,3))
  28. MovementLoopAddLocation(NPC, 758.73, -21.27, -336.2, 2, math.random(0,3))
  29. MovementLoopAddLocation(NPC, 738.61, -22.13, -337.6, 2, math.random(0,3))
  30. MovementLoopAddLocation(NPC, 735.53, -17.56, -323.86, 2, math.random(0,3))
  31. MovementLoopAddLocation(NPC, 743.13, -17.29, -320.91, 2, math.random(0,3))
  32. end