ataintedfalcon428996.lua 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedfalcon428996.lua
  3. Script Purpose : Waypoint Path for ataintedfalcon428996.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:09:16
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "3")
  10. waypoints(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. spawn(NPC)
  17. end
  18. function waypoints(NPC)
  19. MovementLoopAddLocation(NPC, 270.68, 2.53, -0.23, 2, math.random(10, 24))
  20. MovementLoopAddLocation(NPC, 264.42, 2.28, -9.39, 2, 0)
  21. MovementLoopAddLocation(NPC, 260.07, 2, -23.73, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 267.23, 3.09, -5.56, 2, math.random(10, 24))
  23. MovementLoopAddLocation(NPC, 241.51, 2, -8.19, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 238.21, 3.21, -21.32, 2, 0)
  25. MovementLoopAddLocation(NPC, 238.57, 3.96, -31.63, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 252.32, 4.12, -15.37, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 241.94, 3.73, -41.02, 2, 0)
  28. MovementLoopAddLocation(NPC, 243.32, 3.51, -46.19, 2, 0)
  29. MovementLoopAddLocation(NPC, 247.3, 3.22, -50.97, 2, 0)
  30. MovementLoopAddLocation(NPC, 252.29, 2.93, -53.08, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 244.39, 2.52, -44.67, 2, 0)
  32. MovementLoopAddLocation(NPC, 241.99, 2.03, -40.38, 2, 0)
  33. MovementLoopAddLocation(NPC, 245.02, 1.29, -31.6, 2, 0)
  34. MovementLoopAddLocation(NPC, 253.23, 0.22, -27.44, 2, 0)
  35. MovementLoopAddLocation(NPC, 268.86, -1.01, -22.81, 2, 0)
  36. MovementLoopAddLocation(NPC, 273.03, -1.43, -18.73, 2, math.random(10, 24))
  37. MovementLoopAddLocation(NPC, 267.46, -0.84, -20.57, 2, 0)
  38. MovementLoopAddLocation(NPC, 247.82, 0.71, -21.37, 2, 0)
  39. MovementLoopAddLocation(NPC, 242.78, 1.68, -25.01, 2, 0)
  40. MovementLoopAddLocation(NPC, 238.47, 1.96, -25.57, 2, math.random(10, 24))
  41. MovementLoopAddLocation(NPC, 237.95, 2.09, -20.85, 2, 0)
  42. MovementLoopAddLocation(NPC, 241.97, 2.29, -8.99, 2, 0)
  43. MovementLoopAddLocation(NPC, 241.27, 2.4, 1.67, 2, math.random(10, 24))
  44. MovementLoopAddLocation(NPC, 258.43, 1.5, 1.94, 2, math.random(10, 24))
  45. end