ASewerSlime392037.lua 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392037.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392037.lua
  4. Script Author : Rylec
  5. Script Date : 09-25-2019 07:03:18
  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, -149.00, 0.24, 217.02, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -144.85, 0.00, 216.33, 2, 0)
  19. MovementLoopAddLocation(NPC, -143.49, 0.15, 214.90, 2, math.random(10, 22))
  20. MovementLoopAddLocation(NPC, -145.85, 0.00, 217.86, 2, math.random(10, 22))
  21. MovementLoopAddLocation(NPC, -140.76, 0.00, 216.38, 2, math.random(10, 22))
  22. MovementLoopAddLocation(NPC, -144.60, 0.00, 217.14, 2, 0)
  23. MovementLoopAddLocation(NPC, -146.70, 0.00, 217.93, 2, math.random(10, 22))
  24. MovementLoopAddLocation(NPC, -144.14, 0.21, 214.60, 2, math.random(10, 22))
  25. MovementLoopAddLocation(NPC, -146.88, 0.02, 215.92, 2, 0)
  26. end