areindeer1587431.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587431.lua
  3. Script Purpose : Waypoint Path for areindeer1587431.lua
  4. Script Author : Rylec
  5. Script Date : 12-02-2019 06:49:59
  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, 88.82, -36.41, -1660.18, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 103.86, -34.38, -1652.8, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 88.28, -36.41, -1652.7, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 99.77, -37.03, -1632.6, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 106.54, -34.41, -1660.99, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 102.97, -34.34, -1667, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 90.12, -36.38, -1655.56, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 94.09, -36.54, -1641.19, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 103.66, -34.38, -1655.47, 2, math.random(10, 20))
  26. end