ASewerSlime392052.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392052.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392052.lua
  4. Script Author : Rylec
  5. Script Date : 09-25-2019 07:03:02
  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, -131.03, 0.27, 217.17, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -141.80, 0.00, 216.22, 2, 0)
  19. MovementLoopAddLocation(NPC, -140.16, 0.00, 217.83, 2, 0)
  20. MovementLoopAddLocation(NPC, -139.32, 0.00, 217.98, 2, math.random(10, 22))
  21. MovementLoopAddLocation(NPC, -142.02, 0.03, 215.85, 2, 0)
  22. MovementLoopAddLocation(NPC, -142.01, 0.04, 215.79, 2, math.random(10, 22))
  23. MovementLoopAddLocation(NPC, -137.68, 0.00, 216.69, 2, math.random(10, 22))
  24. MovementLoopAddLocation(NPC, -142.13, 0.00, 216.84, 2, 0)
  25. MovementLoopAddLocation(NPC, -142.12, 0.00, 216.82, 2, math.random(10, 22))
  26. MovementLoopAddLocation(NPC, -139.52, 0.00, 216.49, 2, 0)
  27. MovementLoopAddLocation(NPC, -134.60, 0.00, 216.73, 2, 0)
  28. end