tabitha.lua 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : tabitha.lua
  3. Script Purpose : Waypoint Path for tabitha.lua
  4. Script Author : Devn00b
  5. Script Date : 08/04/2020 03:52:07 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, 774.57, -18.26, -323.88, 2, 0)
  18. MovementLoopAddLocation(NPC, 745.9, -17.06, -319.85, 2, 0)
  19. MovementLoopAddLocation(NPC, 720.18, -17.11, -329.29, 2, 0)
  20. MovementLoopAddLocation(NPC, 696.61, -17.37, -322.9, 2, 0)
  21. MovementLoopAddLocation(NPC, 649.03, -20.19, -279.39, 2, 0)
  22. MovementLoopAddLocation(NPC, 634.22, -19.95, -281.35, 2, 0)
  23. MovementLoopAddLocation(NPC, 617.17, -21.25, -278.33, 2, 0)
  24. MovementLoopAddLocation(NPC, 611.16, -21, -279.28, 2, 0)
  25. MovementLoopAddLocation(NPC, 605.59, -21, -279.57, 2, 0)
  26. MovementLoopAddLocation(NPC, 597.38, -21.75, -279.91, 2, 0)
  27. MovementLoopAddLocation(NPC, 592.59, -20.79, -307.8, 2, 0)
  28. MovementLoopAddLocation(NPC, 584.82, -21.27, -311.83, 2, 0)
  29. MovementLoopAddLocation(NPC, 562.32, -21.9, -311.47, 2, 0)
  30. MovementLoopAddLocation(NPC, 525.99, -19.93, -347.98, 2, math.random(0,13))
  31. MovementLoopAddLocation(NPC, 562.32, -21.9, -311.47, 2, 0)
  32. MovementLoopAddLocation(NPC, 584.82, -21.27, -311.83, 2, 0)
  33. MovementLoopAddLocation(NPC, 592.59, -20.79, -307.8, 2, 0)
  34. MovementLoopAddLocation(NPC, 597.38, -21.75, -279.91, 2, 0)
  35. MovementLoopAddLocation(NPC, 605.59, -21, -279.57, 2, 0)
  36. MovementLoopAddLocation(NPC, 611.16, -21, -279.28, 2, 0)
  37. MovementLoopAddLocation(NPC, 617.17, -21.25, -278.33, 2, 0)
  38. MovementLoopAddLocation(NPC, 634.22, -19.95, -281.35, 2, 0)
  39. MovementLoopAddLocation(NPC, 649.03, -20.19, -279.39, 2, 0)
  40. MovementLoopAddLocation(NPC, 696.61, -17.37, -322.9, 2, 0)
  41. MovementLoopAddLocation(NPC, 720.18, -17.11, -329.29, 2, 0)
  42. MovementLoopAddLocation(NPC, 745.9, -17.06, -319.85, 2, 0)
  43. MovementLoopAddLocation(NPC, 774.57, -18.26, -323.88, 2, 0)
  44. end