areindeer1587434.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587434.lua
  3. Script Purpose : Waypoint Path for areindeer1587434.lua
  4. Script Author : Rylec
  5. Script Date : 12-02-2019 06:50:08
  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, 86.15, -36.48, -1677.02, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 94.99, -35.13, -1685.14, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 71.73, -35.68, -1689.58, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 83.6, -35.51, -1691.37, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 77.51, -36.58, -1677.57, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 67.37, -36.68, -1674.22, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 78.65, -36.54, -1668.38, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 66.92, -35.54, -1684.3, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 65.27, -37.71, -1697.67, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 94.58, -35.31, -1686.75, 2, math.random(10, 20))
  27. end