scruffy.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. --[[
  2. Script Name : scruffy.lua
  3. Script Purpose : Waypoint Path for scruffy.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 03:20:13 PM
  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, 595.9, -24.92, -221.45, 2, math.random(0,8))
  18. MovementLoopAddLocation(NPC, 604.07, -21.25, -226.35, 2, math.random(0,8))
  19. MovementLoopAddLocation(NPC, 594.68, -24.82, -221.97, 2, math.random(0,8))
  20. MovementLoopAddLocation(NPC, 589.18, -28.06, -231.33, 2, math.random(0,8))
  21. MovementLoopAddLocation(NPC, 602.88, -31.22, -239.9, 2, math.random(0,8))
  22. MovementLoopAddLocation(NPC, 611.53, -35.22, -228.98, 2, math.random(0,8))
  23. MovementLoopAddLocation(NPC, 602.88, -31.22, -239.9, 2, math.random(0,8))
  24. MovementLoopAddLocation(NPC, 589.18, -28.06, -231.33, 2, math.random(0,8))
  25. MovementLoopAddLocation(NPC, 594.68, -24.82, -221.97, 2, math.random(0,8))
  26. MovementLoopAddLocation(NPC, 604.07, -21.25, -226.35, 2, math.random(0,8))
  27. MovementLoopAddLocation(NPC, 595.9, -24.92, -221.45, 2, math.random(0,8))
  28. end