afrostfellcube55120.lua 994 B

12345678910111213141516171819202122232425262728
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/afrostfellcube55120.lua
  3. Script Purpose : Waypoint Path for afrostfellcube55120.lua
  4. Script Author : Rylec
  5. Script Date : 11-27-2019 06:00:51
  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, 713.5, -38.81, -1524.35, 1, math.random(10, 21))
  18. MovementLoopAddLocation(NPC, 691.65, -38.97, -1533.47, 1, math.random(10, 21))
  19. MovementLoopAddLocation(NPC, 712.38, -38.97, -1509.18, 1, math.random(10, 21))
  20. MovementLoopAddLocation(NPC, 709.86, -38.86, -1524.8, 1, math.random(10, 21))
  21. MovementLoopAddLocation(NPC, 722.72, -38.66, -1523.13, 1, math.random(10, 21))
  22. MovementLoopAddLocation(NPC, 705.98, -38.92, -1525.66, 1, math.random(10, 21))
  23. MovementLoopAddLocation(NPC, 717.69, -38.72, -1524.51, 1, math.random(10, 21))
  24. end