blackcat.lua 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --[[
  2. Script Name : blackcat.lua
  3. Script Purpose : Waypoint Path for blackcat.lua
  4. Script Author : Devn00b
  5. Script Date : 04/13/2020 01:25:43 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, 615.56, -12.22, 144.88, 2, 30)
  18. MovementLoopAddLocation(NPC, 593.87, -11.18, 141.7, 2, 30)
  19. MovementLoopAddLocation(NPC, 590.38, -10.33, 139.65, 2, 0)
  20. MovementLoopAddLocation(NPC, 587.59, -10.34, 118.01, 2, 0)
  21. MovementLoopAddLocation(NPC, 576.39, -9.99, 119.16, 2, 0)
  22. MovementLoopAddLocation(NPC, 556.9, -9.99, 118.07, 2, 0)
  23. MovementLoopAddLocation(NPC, 533.96, -9.99, 118.41, 2, 0)
  24. MovementLoopAddLocation(NPC, 530.12, -9.99, 119.6, 2, 0)
  25. MovementLoopAddLocation(NPC, 509.88, -9.99, 118.64, 2, 0)
  26. MovementLoopAddLocation(NPC, 497.04, -11.27, 114.89, 2, 0)
  27. MovementLoopAddLocation(NPC, 493.63, -11.27, 115.43, 2, 0)
  28. MovementLoopAddLocation(NPC, 483.9, -11.27, 112.86, 2, 30)
  29. MovementLoopAddLocation(NPC, 493.63, -11.27, 115.43, 2, 0)
  30. MovementLoopAddLocation(NPC, 497.04, -11.27, 114.89, 2, 0)
  31. MovementLoopAddLocation(NPC, 509.88, -9.99, 118.64, 2, 0)
  32. MovementLoopAddLocation(NPC, 530.12, -9.99, 119.6, 2, 0)
  33. MovementLoopAddLocation(NPC, 533.96, -9.99, 118.41, 2, 0)
  34. MovementLoopAddLocation(NPC, 556.9, -9.99, 118.07, 2, 0)
  35. MovementLoopAddLocation(NPC, 576.39, -9.99, 119.16, 2, 0)
  36. MovementLoopAddLocation(NPC, 587.59, -10.34, 118.01, 2, 0)
  37. MovementLoopAddLocation(NPC, 590.38, -10.33, 139.65, 2, 0)
  38. MovementLoopAddLocation(NPC, 593.87, -11.18, 141.7, 2, 30)
  39. MovementLoopAddLocation(NPC, 615.56, -12.22, 144.88, 2, 30)
  40. end