afrostfellcube1576425.lua 1016 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/afrostfellcube1576425.lua
  3. Script Purpose : Waypoint Path for afrostfellcube1576425.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, 573.5, -38.81, -1569.35, 1, math.random(10, 21))
  18. MovementLoopAddLocation(NPC, 551.65, -38.97, -1578.47, 1, math.random(10, 21))
  19. MovementLoopAddLocation(NPC, 572.38, -38.97, -1554.18, 1, math.random(10, 21))
  20. MovementLoopAddLocation(NPC, 569.86, -38.86, -1569.8, 1, math.random(10, 21))
  21. MovementLoopAddLocation(NPC, 582.72, -38.66, -1568.13, 1, math.random(10, 21))
  22. MovementLoopAddLocation(NPC, 565.98, -38.92, -1570.66, 1, math.random(10, 21))
  23. MovementLoopAddLocation(NPC, 577.69, -38.72, -1569.51, 1, math.random(10, 21))
  24. end