areindeer1586729.lua 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/areindeer1586729.lua
  3. Script Purpose : Waypoint Path for areindeer1586729.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:28:46
  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, 221.61, -35.01, -1269.22, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 217.61, -34.97, -1278.19, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 220.53, -35.01, -1270.99, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 229.01, -35.01, -1274.6, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 212.73, -34.82, -1280.36, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 219.77, -35.01, -1270.74, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 223.13, -35.01, -1278.35, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 229.92, -35.01, -1276.02, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 222.25, -35.01, -1281.95, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 216.31, -35.01, -1272.7, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 219.32, -35.01, -1277.26, 2, math.random(10, 20))
  28. end