asewagerat392425.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --[[
  2. Script Name : SpawnScripts/ThievesWay/asewagerat392425.lua
  3. Script Purpose : Waypoint Path for rat11001.lua
  4. Script Author : Rylec
  5. Script Date : 09-22-2019 06:22:23
  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, -159.07, 1.58, 61.85, 2, math.random(10, 18))
  18. MovementLoopAddLocation(NPC, -161.49, 1.22, 61.91, 2, math.random(10, 18))
  19. MovementLoopAddLocation(NPC, -158.01, 1.49, 61.89, 2, 0)
  20. MovementLoopAddLocation(NPC, -155.59, 1.34, 60.93, 2, 0)
  21. MovementLoopAddLocation(NPC, -155.45, 1.34, 60.98, 2, math.random(10, 18))
  22. MovementLoopAddLocation(NPC, -158.67, 1.58, 61.96, 2, 0)
  23. MovementLoopAddLocation(NPC, -160.46, 1.22, 61.90, 2, math.random(10, 18))
  24. MovementLoopAddLocation(NPC, -161.81, 1.22, 61.73, 2, 0)
  25. MovementLoopAddLocation(NPC, -162.05, 1.22, 61.61, 2, math.random(10, 18))
  26. MovementLoopAddLocation(NPC, -160.73, 1.22, 61.86, 2, math.random(10, 18))
  27. MovementLoopAddLocation(NPC, -158.96, 1.58, 60.94, 2, math.random(10, 18))
  28. MovementLoopAddLocation(NPC, -153.72, 1.34, 60.76, 2, math.random(10, 18))
  29. MovementLoopAddLocation(NPC, -154.61, 1.34, 61.02, 2, math.random(10, 18))
  30. MovementLoopAddLocation(NPC, -154.42, 1.34, 62.07, 2, 0)
  31. MovementLoopAddLocation(NPC, -154.11, 1.34, 62.22, 2, math.random(10, 18))
  32. end