ASewerSlime392092.lua 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/ASewerSlime392092.lua
  3. Script Purpose : Waypoint Path for slime15004.lua
  4. Script Author : Rylec
  5. Script Date : 09-25-2019 07:02:54
  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, -115.82, 0.00, 217.73, 2, math.random(12, 22))
  18. MovementLoopAddLocation(NPC, -120.40, 0.00, 219.99, 2, 0)
  19. MovementLoopAddLocation(NPC, -122.54, 0.00, 221.63, 2, math.random(12, 22))
  20. MovementLoopAddLocation(NPC, -123.75, 0.00, 218.40, 2, 0)
  21. MovementLoopAddLocation(NPC, -123.59, 0.00, 216.84, 2, 0)
  22. MovementLoopAddLocation(NPC, -123.53, 0.00, 216.87, 2, math.random(12, 22))
  23. MovementLoopAddLocation(NPC, -124.46, 0.00, 216.34, 2, 0)
  24. MovementLoopAddLocation(NPC, -125.04, 0.20, 214.67, 2, math.random(12, 22))
  25. MovementLoopAddLocation(NPC, -126.97, 0.04, 215.82, 2, math.random(12, 22))
  26. MovementLoopAddLocation(NPC, -120.83, 0.23, 214.51, 2, 0)
  27. MovementLoopAddLocation(NPC, -115.65, 0.14, 214.97, 2, 0)
  28. MovementLoopAddLocation(NPC, -113.89, 0.04, 215.76, 2, 0)
  29. MovementLoopAddLocation(NPC, -113.91, 0.03, 215.85, 2, math.random(12, 22))
  30. MovementLoopAddLocation(NPC, -116.03, 0.01, 216.05, 2, 0)
  31. MovementLoopAddLocation(NPC, -122.32, 0.00, 219.49, 2, math.random(12, 22))
  32. end