afrostfellcube55115.lua 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. --[[
  2. Script Name : SpawnScripts/Frostfell/afrostfellcube55115.lua
  3. Script Purpose : Waypoint Path for afrostfellcube55115.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, 0)
  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