a_rat.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : a_rat.lua
  3. Script Purpose : Waypoint Path for a_rat.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 03:20:22 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, 602, -31.23, -241.01, 2, 0)
  18. MovementLoopAddLocation(NPC, 609.41, -35.26, -229.93, 2, 0)
  19. MovementLoopAddLocation(NPC, 612.4, -35.72, -231.92, 2, 0)
  20. MovementLoopAddLocation(NPC, 604.44, -35.79, -244.07, 2, 0)
  21. MovementLoopAddLocation(NPC, 605.41, -36.45, -244.94, 2, 0)
  22. MovementLoopAddLocation(NPC, 616.26, -36.47, -229.21, 2, 0)
  23. MovementLoopAddLocation(NPC, 613.22, -35.23, -227.51, 2, 0)
  24. MovementLoopAddLocation(NPC, 603.78, -31.21, -240.71, 2, 0)
  25. MovementLoopAddLocation(NPC, 588.46, -28, -230.24, 2, 0)
  26. MovementLoopAddLocation(NPC, 603.78, -31.21, -240.71, 2, 0)
  27. MovementLoopAddLocation(NPC, 613.22, -35.23, -227.51, 2, 0)
  28. MovementLoopAddLocation(NPC, 616.26, -36.47, -229.21, 2, 0)
  29. MovementLoopAddLocation(NPC, 605.41, -36.45, -244.94, 2, 0)
  30. MovementLoopAddLocation(NPC, 604.44, -35.79, -244.07, 2, 0)
  31. MovementLoopAddLocation(NPC, 612.4, -35.72, -231.92, 2, 0)
  32. MovementLoopAddLocation(NPC, 609.41, -35.26, -229.93, 2, 0)
  33. MovementLoopAddLocation(NPC, 602, -31.23, -241.01, 2, 0)
  34. end