kitten.lua 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --[[
  2. Script Name : kitten.lua
  3. Script Purpose : Waypoint Path for kitten.lua
  4. Script Author : Devn00b
  5. Script Date : 04/13/2020 01:39:12 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, 634.15, -16.45, 181.23, 2, 30)
  18. MovementLoopAddLocation(NPC, 633.86, -16.45, 177.94, 2, 0)
  19. MovementLoopAddLocation(NPC, 635.62, -16.45, 177.45, 2, 0)
  20. MovementLoopAddLocation(NPC, 638.65, -16.45, 177.3, 2, 0)
  21. MovementLoopAddLocation(NPC, 639.86, -16.45, 183.18, 2, 0)
  22. MovementLoopAddLocation(NPC, 634.06, -16.45, 184.98, 2, 0)
  23. MovementLoopAddLocation(NPC, 641.22, -16.45, 184.04, 2, 0)
  24. MovementLoopAddLocation(NPC, 639.66, -16.45, 175.35, 2, 0)
  25. MovementLoopAddLocation(NPC, 642.9, -16.45, 174.4, 2, 0)
  26. MovementLoopAddLocation(NPC, 644.94, -16.45, 174.26, 2, 0)
  27. MovementLoopAddLocation(NPC, 644.43, -16.45, 178.29, 2, 0)
  28. MovementLoopAddLocation(NPC, 651.87, -16.45, 180.09, 2, 0)
  29. MovementLoopAddLocation(NPC, 646.75, -16.45, 175.02, 2, 0)
  30. MovementLoopAddLocation(NPC, 649.11, -16.45, 173.09, 2, 0)
  31. MovementLoopAddLocation(NPC, 651.36, -16.45, 172.71, 2, 0)
  32. MovementLoopAddLocation(NPC, 652.4, -16.45, 174.89, 2, 30)
  33. MovementLoopAddLocation(NPC, 651.36, -16.45, 172.71, 2, 0)
  34. MovementLoopAddLocation(NPC, 649.11, -16.45, 173.09, 2, 0)
  35. MovementLoopAddLocation(NPC, 646.75, -16.45, 175.02, 2, 0)
  36. MovementLoopAddLocation(NPC, 651.87, -16.45, 180.09, 2, 0)
  37. MovementLoopAddLocation(NPC, 644.43, -16.45, 178.29, 2, 0)
  38. MovementLoopAddLocation(NPC, 644.94, -16.45, 174.26, 2, 0)
  39. MovementLoopAddLocation(NPC, 642.9, -16.45, 174.4, 2, 0)
  40. MovementLoopAddLocation(NPC, 639.66, -16.45, 175.35, 2, 0)
  41. MovementLoopAddLocation(NPC, 641.22, -16.45, 184.04, 2, 0)
  42. MovementLoopAddLocation(NPC, 634.06, -16.45, 184.98, 2, 0)
  43. MovementLoopAddLocation(NPC, 639.86, -16.45, 183.18, 2, 0)
  44. MovementLoopAddLocation(NPC, 638.65, -16.45, 177.3, 2, 0)
  45. MovementLoopAddLocation(NPC, 635.62, -16.45, 177.45, 2, 0)
  46. MovementLoopAddLocation(NPC, 633.86, -16.45, 177.94, 2, 0)
  47. MovementLoopAddLocation(NPC, 634.15, -16.45, 181.23, 2, 30)
  48. end