afrostfellcube1576426.lua 1.1 KB

123456789101112131415161718192021222324252627282930
  1. --[[
  2. Script Name : SpawnScripts/everfrost_frostfell_new01/afrostfellcube1576426.lua
  3. Script Purpose : Waypoint Path for afrostfellcube1576426.lua
  4. Script Author : Rylec
  5. Script Date : 11-27-2019 06:00:58
  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, 172.04, -38.97, -1731.92, 1, math.random(10, 21))
  18. MovementLoopAddLocation(NPC, 166.46, -38.97, -1720.13, 1, math.random(10, 21))
  19. MovementLoopAddLocation(NPC, 177.75, -38.97, -1711.54, 1, math.random(10, 21))
  20. MovementLoopAddLocation(NPC, 148.88, -38.97, -1727.93, 1, math.random(10, 21))
  21. MovementLoopAddLocation(NPC, 152.26, -38.97, -1727.94, 1, math.random(10, 21))
  22. MovementLoopAddLocation(NPC, 157.56, -38.97, -1733.99, 1, math.random(10, 21))
  23. MovementLoopAddLocation(NPC, 168.34, -38.97, -1728.04, 1, math.random(10, 21))
  24. MovementLoopAddLocation(NPC, 161.37, -38.97, -1711.62, 1, math.random(10, 21))
  25. end