areindeer1587433.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587433.lua
  3. Script Purpose : Waypoint Path for areindeer1587433.lua
  4. Script Author : Rylec
  5. Script Date : 12-02-2019 06:50:04
  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, 59.86, -36.58, -1645.22, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 76.38, -34.87, -1650.81, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 73.4, -35.29, -1643.65, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 69.27, -34.92, -1655.99, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 78.17, -36.54, -1667.26, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 62.77, -36.93, -1636.52, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 59.23, -36.01, -1650.52, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 67.34, -35.99, -1643.09, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 76.08, -34.87, -1649.52, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 64.04, -35.36, -1656.93, 2, math.random(10, 20))
  27. end