areindeer1586775.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586775.lua
  3. Script Purpose : Waypoint Path for areindeer1586775.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:29:03
  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, 45.51, -36.08, -1426.39, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 49.9, -36.32, -1393.38, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 53.9, -36.17, -1408.9, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 63.88, -35.52, -1394.42, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 46.8, -35.79, -1406.77, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 39.77, -35.79, -1401.62, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 51.97, -35.99, -1395, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 58.84, -35.85, -1403.6, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 59.44, -35.7, -1400.35, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 47.51, -36.29, -1426.52, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 48.18, -35.79, -1404.9, 2, math.random(10, 20))
  28. end