grove_deer3.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. --[[
  2. Script Name : grove_deer3.lua
  3. Script Purpose : Waypoint Path for grove_deer3.lua
  4. Script Author : Devn00b
  5. Script Date : 07/31/2020 07:47:44 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, 745.21, -16.28, -306.31, 2, math.random(0,25))
  18. MovementLoopAddLocation(NPC, 748.8, -16.66, -284.65, 2, math.random(0,25))
  19. MovementLoopAddLocation(NPC, 776.73, -18.11, -323.43, 2, math.random(0,25))
  20. MovementLoopAddLocation(NPC, 757.75, -20.44, -333.79, 2, math.random(0,25))
  21. MovementLoopAddLocation(NPC, 734.33, -18.68, -329.85, 2, math.random(0,25))
  22. MovementLoopAddLocation(NPC, 740.98, -16.35, -299.53, 2, math.random(0,25))
  23. MovementLoopAddLocation(NPC, 716.05, -17.04, -291.01, 2, math.random(0,25))
  24. MovementLoopAddLocation(NPC, 684.23, -21.1, -305.31, 2, math.random(0,25))
  25. MovementLoopAddLocation(NPC, 726.09, -17.22, -280.33, 2, math.random(0,25))
  26. MovementLoopAddLocation(NPC, 714.97, -17.06, -283.9, 2, math.random(0,25))
  27. MovementLoopAddLocation(NPC, 723.7, -17.04, -290.11, 2, math.random(0,25))
  28. MovementLoopAddLocation(NPC, 706.86, -17.14, -289.3, 2, math.random(0,25))
  29. MovementLoopAddLocation(NPC, 747.95, -16.13, -300.55, 2, math.random(0,25))
  30. MovementLoopAddLocation(NPC, 706.86, -17.14, -289.3, 2, math.random(0,25))
  31. MovementLoopAddLocation(NPC, 723.7, -17.04, -290.11, 2, math.random(0,25))
  32. MovementLoopAddLocation(NPC, 714.97, -17.06, -283.9, 2, math.random(0,25))
  33. MovementLoopAddLocation(NPC, 726.09, -17.22, -280.33, 2, math.random(0,25))
  34. MovementLoopAddLocation(NPC, 684.23, -21.1, -305.31, 2, math.random(0,25))
  35. MovementLoopAddLocation(NPC, 716.05, -17.04, -291.01, 2, math.random(0,25))
  36. MovementLoopAddLocation(NPC, 740.98, -16.35, -299.53, 2, math.random(0,25))
  37. MovementLoopAddLocation(NPC, 734.33, -18.68, -329.85, 2, math.random(0,25))
  38. MovementLoopAddLocation(NPC, 757.75, -20.44, -333.79, 2, math.random(0,25))
  39. MovementLoopAddLocation(NPC, 776.73, -18.11, -323.43, 2, math.random(0,25))
  40. MovementLoopAddLocation(NPC, 748.8, -16.66, -284.65, 2, math.random(0,25))
  41. MovementLoopAddLocation(NPC, 745.21, -16.28, -306.31, 2, math.random(0,25))
  42. end