asludgewalkerhatchling392597.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/asludgewalkerhatchling392597.lua
  3. Script Purpose : Waypoint Path for asludgewalkerhatchling392597.lua
  4. Script Author : Rylec
  5. Script Date : 09-22-2019 09:41:16
  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, -154.60, 1.34, 61.88, 2, math.random(12, 18))
  18. MovementLoopAddLocation(NPC, -153.73, 1.34, 62.09, 2, 0)
  19. MovementLoopAddLocation(NPC, -151.48, 1.34, 61.81, 2, math.random(12, 18))
  20. MovementLoopAddLocation(NPC, -157.95, 1.45, 61.92, 2, 0)
  21. MovementLoopAddLocation(NPC, -157.44, 1.34, 61.90, 2, math.random(12, 18))
  22. MovementLoopAddLocation(NPC, -155.47, 1.34, 61.56, 2, math.random(12, 18))
  23. MovementLoopAddLocation(NPC, -158.57, 1.58, 61.17, 2, 0)
  24. MovementLoopAddLocation(NPC, -161.35, 1.22, 61.85, 2, math.random(12, 18))
  25. MovementLoopAddLocation(NPC, -154.31, 1.34, 62.64, 2, 0)
  26. MovementLoopAddLocation(NPC, -152.16, 1.34, 62.32, 2, 0)
  27. MovementLoopAddLocation(NPC, -151.39, 1.34, 61.78, 2, math.random(12, 18))
  28. end