ASewerSlime391962.lua 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime391962.lua
  3. Script Purpose : Waypoint Path for ASewerSlime391962.lua
  4. Script Author : Rylec
  5. Script Date : 10-17-2019 03:29:11
  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.40, 0.00, 125.31, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -181.93, 0.00, 123.17, 2, 0)
  19. MovementLoopAddLocation(NPC, -180.47, 0.05, 120.43, 2, math.random(10, 22))
  20. MovementLoopAddLocation(NPC, -181.40, 0.25, 117.07, 2, math.random(10, 22))
  21. MovementLoopAddLocation(NPC, -182.28, 0.00, 121.11, 2, 0)
  22. MovementLoopAddLocation(NPC, -183.46, 0.01, 126.02, 2, math.random(10, 22))
  23. MovementLoopAddLocation(NPC, -182.32, 0.00, 121.55, 2, 0)
  24. MovementLoopAddLocation(NPC, -181.65, 0.00, 110.78, 2, 0)
  25. MovementLoopAddLocation(NPC, -181.50, 0.00, 109.48, 2, math.random(10, 22))
  26. MovementLoopAddLocation(NPC, -181.38, 0.01, 113.58, 2, math.random(10, 22))
  27. MovementLoopAddLocation(NPC, -182.98, 0.00, 124.23, 2, 0)
  28. end