ASewerSlime392036.lua 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392036.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392036.lua
  4. Script Author : Rylec
  5. Script Date : 09-27-2019 05:45:19
  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, -161.03, 0.00, 216.86, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -155.69, 0.00, 217.34, 2, math.random(10, 22))
  19. MovementLoopAddLocation(NPC, -156.84, 0.02, 215.92, 2, math.random(10, 22))
  20. MovementLoopAddLocation(NPC, -151.94, 0.00, 217.68, 2, math.random(10, 22))
  21. MovementLoopAddLocation(NPC, -156.30, 0.00, 217.11, 2, 0)
  22. MovementLoopAddLocation(NPC, -151.39, 0.09, 218.93, 2, 0)
  23. MovementLoopAddLocation(NPC, -151.40, 0.10, 219.05, 2, math.random(10, 22))
  24. MovementLoopAddLocation(NPC, -152.06, 0.01, 218.08, 2, 0)
  25. MovementLoopAddLocation(NPC, -156.54, 0.01, 218.12, 2, 0)
  26. end