areindeer1587427.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587427.lua
  3. Script Purpose : Waypoint Path for areindeer1587427.lua
  4. Script Author : Rylec
  5. Script Date : 12-01-2019 07:29:03
  6. Script Notes : Script by Rylec
  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, 565.71, -36.16, -1493.06, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 587.7, -33.97, -1476.68, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 553.48, -35.01, -1476.38, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 574.9, -36.04, -1487.62, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 575.13, -36.02, -1479.61, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 556.32, -35.99, -1455.23, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 563.03, -34.85, -1464.18, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 558.82, -34.53, -1478.99, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 581.5, -36.17, -1463.95, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 572.59, -36.07, -1488.41, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 560.16, -34.54, -1482.85, 2, math.random(10, 20))
  28. end