asludgewalkerhatchling392607.lua 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/asludgewalkerhatchling392607.lua
  3. Script Purpose : Waypoint Path for asludgewalkerhatchling392607.lua
  4. Script Author : Rylec
  5. Script Date : 10-17-2019 03:28:22
  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, -182.04, 0.00, 138.91, 2, math.random(12, 18))
  18. MovementLoopAddLocation(NPC, -182.09, 0.00, 140.31, 2, math.random(12, 18))
  19. MovementLoopAddLocation(NPC, -182.35, 0.00, 135.37, 2, 0)
  20. MovementLoopAddLocation(NPC, -181.42, 0.00, 133.17, 2, math.random(12, 18))
  21. MovementLoopAddLocation(NPC, -183.87, 0.05, 138.89, 2, 0)
  22. MovementLoopAddLocation(NPC, -184.20, 0.08, 140.15, 2, math.random(12, 18))
  23. MovementLoopAddLocation(NPC, -180.22, 0.00, 137.84, 2, 0)
  24. MovementLoopAddLocation(NPC, -177.73, 0.00, 136.13, 2, 0)
  25. MovementLoopAddLocation(NPC, -177.34, 0.13, 134.33, 2, math.random(12, 18))
  26. MovementLoopAddLocation(NPC, -177.49, 0.00, 139.52, 2, 0)
  27. MovementLoopAddLocation(NPC, -176.94, 0.06, 141.87, 2, 0)
  28. MovementLoopAddLocation(NPC, -180.14, 0.00, 143.05, 2, 0)
  29. end