areindeer1587429.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587429.lua
  3. Script Purpose : Waypoint Path for areindeer1587429.lua
  4. Script Author : Rylec
  5. Script Date : 12-02-2019 05:45:11
  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, 570.17, -36.13, -1501.03, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 561.07, -35.15, -1515.25, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 557.11, -35, -1510.54, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 565.52, -36.19, -1502.18, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 574.7, -34.91, -1514.52, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 579.29, -34.81, -1511.41, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 566.79, -35.61, -1520.57, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 569.35, -36.14, -1502.51, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 565.17, -36.2, -1504.61, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 578.04, -35.1, -1514.19, 2, math.random(10, 20))
  27. end