areindeer1586776.lua 1002 B

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586776.lua
  3. Script Purpose : Waypoint Path for areindeer1586776.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:29:05
  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, 52.36, -35.79, -1402.53, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 34.71, -35.79, -1398.64, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 37.2, -35.79, -1405.97, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 58.22, -35.61, -1396.84, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 35.74, -35.79, -1404.74, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 28.79, -35.79, -1405.04, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 46.98, -35.93, -1420.51, 2, math.random(10, 20))
  24. end