ASewerSlime392007.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392007.lua
  3. Script Purpose : Waypoint Path for ASewerSlime392007.lua
  4. Script Author : Rylec
  5. Script Date : 09-20-2019 02:43:51
  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, -179.09, 1.22, 26.67, 2, math.random(10, 22))
  18. MovementLoopAddLocation(NPC, -180.06, 1.22, 23.83, 2, 0)
  19. MovementLoopAddLocation(NPC, -180.47, 1.22, 23.03, 2, 0)
  20. MovementLoopAddLocation(NPC, -180.46, 1.22, 23.00, 2, math.random(10, 22))
  21. MovementLoopAddLocation(NPC, -180.09, 1.22, 26.95, 2, 0)
  22. MovementLoopAddLocation(NPC, -179.47, 1.22, 34.15, 2, math.random(10, 22))
  23. MovementLoopAddLocation(NPC, -180.04, 1.22, 31.80, 2, 0)
  24. MovementLoopAddLocation(NPC, -180.25, 1.22, 30.61, 2, 0)
  25. MovementLoopAddLocation(NPC, -181.30, 1.25, 29.79, 2, 0)
  26. MovementLoopAddLocation(NPC, -181.27, 1.25, 29.76, 2, math.random(10, 22))
  27. MovementLoopAddLocation(NPC, -180.73, 1.22, 30.42, 2, 0)
  28. MovementLoopAddLocation(NPC, -176.73, 1.22, 28.69, 2, 0)
  29. MovementLoopAddLocation(NPC, -176.74, 1.22, 28.68, 2, math.random(10, 22))
  30. MovementLoopAddLocation(NPC, -177.52, 1.22, 28.32, 2, math.random(10, 22))
  31. MovementLoopAddLocation(NPC, -177.59, 1.22, 24.85, 2, 0)
  32. MovementLoopAddLocation(NPC, -177.50, 1.22, 24.80, 2, math.random(10, 22))
  33. MovementLoopAddLocation(NPC, -180.37, 1.22, 34.29, 2, math.random(10, 22))
  34. MovementLoopAddLocation(NPC, -179.98, 1.22, 31.89, 2, 0)
  35. end