grove_deer5.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --[[
  2. Script Name : grove_deer5.lua
  3. Script Purpose : Waypoint Path for grove_deer5.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 02:11:00 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, 621.29, -21.03, -280.61, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 609.61, -22.4, -271.02, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 628.93, -19.97, -274.5, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 628.17, -21.83, -293.7, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 620.24, -21.79, -290.89, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 644.3, -21.4, -292.64, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 638.77, -21.11, -292.36, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 639.35, -18.97, -269.43, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 643.59, -19.21, -281.14, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 628.33, -20.77, -284.73, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 631.71, -20.14, -280.72, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 636.3, -21.54, -294.42, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 622.73, -22.04, -293.65, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 614.16, -22.11, -279.5, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 609.44, -22.39, -270.29, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, 614.16, -22.11, -279.5, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, 622.73, -22.04, -293.65, 2, math.random(0,15))
  34. MovementLoopAddLocation(NPC, 636.3, -21.54, -294.42, 2, math.random(0,15))
  35. MovementLoopAddLocation(NPC, 631.71, -20.14, -280.72, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 628.33, -20.77, -284.73, 2, math.random(0,15))
  37. MovementLoopAddLocation(NPC, 643.59, -19.21, -281.14, 2, math.random(0,15))
  38. MovementLoopAddLocation(NPC, 639.35, -18.97, -269.43, 2, math.random(0,15))
  39. MovementLoopAddLocation(NPC, 638.77, -21.11, -292.36, 2, math.random(0,15))
  40. MovementLoopAddLocation(NPC, 644.3, -21.4, -292.64, 2, math.random(0,15))
  41. MovementLoopAddLocation(NPC, 620.24, -21.79, -290.89, 2, math.random(0,15))
  42. MovementLoopAddLocation(NPC, 628.17, -21.83, -293.7, 2, math.random(0,15))
  43. MovementLoopAddLocation(NPC, 628.93, -19.97, -274.5, 2, math.random(0,15))
  44. MovementLoopAddLocation(NPC, 609.61, -22.4, -271.02, 2, math.random(0,15))
  45. MovementLoopAddLocation(NPC, 621.29, -21.03, -280.61, 2, math.random(0,15))
  46. end