xloitl.lua 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : xloitl.lua
  3. Script Purpose : Waypoint Path for xloitl.lua
  4. Script Author : Devn00b
  5. Script Date : 06/12/2020 07:06:55 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, 26.05, -0.08, -198.85, 2, math.random(0,15))
  18. MovementLoopAddLocation(NPC, 22.72, -0.08, -195.87, 2, math.random(0,15))
  19. MovementLoopAddLocation(NPC, 23.25, -0.08, -198.16, 2, math.random(0,15))
  20. MovementLoopAddLocation(NPC, 20.32, -0.08, -200.07, 2, math.random(0,15))
  21. MovementLoopAddLocation(NPC, 16.42, -0.08, -200.95, 2, math.random(0,15))
  22. MovementLoopAddLocation(NPC, 16.32, -0.08, -203.21, 2, math.random(0,15))
  23. MovementLoopAddLocation(NPC, 22.98, -0.08, -202.38, 2, math.random(0,15))
  24. MovementLoopAddLocation(NPC, 23.68, -0.08, -205.03, 2, math.random(0,15))
  25. MovementLoopAddLocation(NPC, 25.62, -0.08, -202.86, 2, math.random(0,15))
  26. MovementLoopAddLocation(NPC, 27.05, -0.08, -202.22, 2, math.random(0,15))
  27. MovementLoopAddLocation(NPC, 28.25, -0.08, -202.17, 2, math.random(0,15))
  28. MovementLoopAddLocation(NPC, 28.4, -0.08, -198.95, 2, math.random(0,15))
  29. MovementLoopAddLocation(NPC, 25.67, -0.08, -198.75, 2, math.random(0,15))
  30. MovementLoopAddLocation(NPC, 27.26, -0.08, -196.1, 2, math.random(0,15))
  31. MovementLoopAddLocation(NPC, 25.67, -0.08, -198.75, 2, math.random(0,15))
  32. MovementLoopAddLocation(NPC, 28.4, -0.08, -198.95, 2, math.random(0,15))
  33. MovementLoopAddLocation(NPC, 28.25, -0.08, -202.17, 2, math.random(0,15))
  34. MovementLoopAddLocation(NPC, 27.05, -0.08, -202.22, 2, math.random(0,15))
  35. MovementLoopAddLocation(NPC, 25.62, -0.08, -202.86, 2, math.random(0,15))
  36. MovementLoopAddLocation(NPC, 23.68, -0.08, -205.03, 2, math.random(0,15))
  37. MovementLoopAddLocation(NPC, 22.98, -0.08, -202.38, 2, math.random(0,15))
  38. MovementLoopAddLocation(NPC, 16.32, -0.08, -203.21, 2, math.random(0,15))
  39. MovementLoopAddLocation(NPC, 16.42, -0.08, -200.95, 2, math.random(0,15))
  40. MovementLoopAddLocation(NPC, 20.32, -0.08, -200.07, 2, math.random(0,15))
  41. MovementLoopAddLocation(NPC, 23.25, -0.08, -198.16, 2, math.random(0,15))
  42. MovementLoopAddLocation(NPC, 22.72, -0.08, -195.87, 2, math.random(0,15))
  43. MovementLoopAddLocation(NPC, 26.05, -0.08, -198.85, 2, math.random(0,15))
  44. end