areindeer1587428.lua 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/areindeer1587428.lua
  3. Script Purpose : Waypoint Path for areindeer1587428.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, 560.8, -36.22, -1496.43, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, 548.87, -36.25, -1492.59, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, 556.7, -36.27, -1498.86, 2, math.random(10, 20))
  20. MovementLoopAddLocation(NPC, 552.17, -35.18, -1509.66, 2, math.random(10, 20))
  21. MovementLoopAddLocation(NPC, 552.95, -36.27, -1497.5, 2, math.random(10, 20))
  22. MovementLoopAddLocation(NPC, 559.7, -34.55, -1483.54, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, 563.84, -36.18, -1494.95, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, 549.04, -34.97, -1482.97, 2, math.random(10, 20))
  25. MovementLoopAddLocation(NPC, 547.79, -36.22, -1467.53, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, 545.73, -35.19, -1479.89, 2, math.random(10, 20))
  27. MovementLoopAddLocation(NPC, 557.53, -36.26, -1497.21, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, 551.82, -35.14, -1508.9, 2, math.random(10, 20))
  29. end