a_rat2.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --[[
  2. Script Name : a_rat2.lua
  3. Script Purpose : Waypoint Path for a_rat2.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 03:20:26 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, 588.46, -28, -230.24, 2, 0)
  18. MovementLoopAddLocation(NPC, 595.44, -24.69, -219.5, 2, 0)
  19. MovementLoopAddLocation(NPC, 604.82, -21.23, -225.82, 2, 0)
  20. MovementLoopAddLocation(NPC, 596.64, -24.82, -220.63, 2, 0)
  21. MovementLoopAddLocation(NPC, 589.07, -28.02, -232.63, 2, 0)
  22. MovementLoopAddLocation(NPC, 602.86, -31.21, -241.33, 2, 0)
  23. MovementLoopAddLocation(NPC, 610.58, -35.23, -229.34, 2, 0)
  24. MovementLoopAddLocation(NPC, 602.86, -31.21, -241.33, 2, 0)
  25. MovementLoopAddLocation(NPC, 589.07, -28.02, -232.63, 2, 0)
  26. MovementLoopAddLocation(NPC, 596.64, -24.82, -220.63, 2, 0)
  27. MovementLoopAddLocation(NPC, 604.82, -21.23, -225.82, 2, 0)
  28. MovementLoopAddLocation(NPC, 595.44, -24.69, -219.5, 2, 0)
  29. MovementLoopAddLocation(NPC, 588.46, -28, -230.24, 2, 0)
  30. end