areindeer1587430.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587430.lua
  3. Script Purpose : Waypoint Path for areindeer1587430.lua
  4. Script Author : Rylec
  5. Script Date : 12-02-2019 05:45:13
  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, 574.22, -36.06, -1492.28, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 590.7, -34.01, -1480.72, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 592.23, -34.06, -1484.71, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 588.49, -33.97, -1492.24, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 569.52, -36.1, -1489.01, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 577.84, -36.02, -1493.53, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 590.28, -34.02, -1483.13, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 571.71, -34.58, -1453.84, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 577.13, -35.99, -1474.36, 2, math.random(10, 20))
  26. end