areindeer1586774.lua 1002 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586774.lua
  3. Script Purpose : Waypoint Path for areindeer1586774.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:29:00
  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, 23.35, -35.79, -1411.31, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 53.85, -36.48, -1413.31, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 38.54, -35.79, -1397.29, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 45.37, -36.06, -1427.33, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 30.16, -35.79, -1409.02, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 64.77, -36.79, -1407.04, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 46.9, -35.79, -1403.62, 2, math.random(10, 20))
  24. end