areindeer1587432.lua 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587432.lua
  3. Script Purpose : Waypoint Path for areindeer1587432.lua
  4. Script Author : Rylec
  5. Script Date : 12-02-2019 06:50:02
  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, 82.95, -35.37, -1627.24, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 91.67, -36.36, -1656.37, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 74.79, -36.33, -1627.06, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 74.56, -35.62, -1637.33, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 85.95, -35.09, -1625.75, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 95.12, -37.1, -1623.07, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 85.19, -37.03, -1616.35, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 96.62, -35.53, -1666.23, 2, math.random(10, 20))
  25. end