ataintedfalcon1587713.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedfalcon1587713.lua
  3. Script Purpose : Waypoint Path for ataintedfalcon1587713.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:09:41
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SpawnSet(NPC, "level", "3")
  10. SpawnSet(NPC, "hp", 75)
  11. SpawnSet(NPC, "power", 45)
  12. waypoints(NPC)
  13. end
  14. function hailed(NPC, Spawn)
  15. FaceTarget(NPC, Spawn)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end
  20. function waypoints(NPC)
  21. MovementLoopAddLocation(NPC, 243.47, 6.08, -58.66, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 242.12, 2.77, -87.93, 2, 0)
  23. MovementLoopAddLocation(NPC, 241.43, 2.07, -91.04, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 216.64, 2.46, -62.68, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 215.37, 2.58, -70.34, 2, 0)
  26. MovementLoopAddLocation(NPC, 212.01, 2.66, -77.78, 2, 0)
  27. MovementLoopAddLocation(NPC, 210.45, 2.76, -83.34, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 220.46, 4.31, -49.81, 2, math.random(10, 24))
  29. MovementLoopAddLocation(NPC, 223.46, 4.27, -51.49, 2, 0)
  30. MovementLoopAddLocation(NPC, 248.15, 4.14, -75.37, 2, math.random(10, 24))
  31. MovementLoopAddLocation(NPC, 239.94, 3.06, -64, 2, 0)
  32. MovementLoopAddLocation(NPC, 232.91, 2.14, -44.48, 2, math.random(10, 24))
  33. MovementLoopAddLocation(NPC, 231.09, 2.76, -49.18, 2, 0)
  34. MovementLoopAddLocation(NPC, 226.54, 3.38, -52.27, 2, math.random(10, 24))
  35. MovementLoopAddLocation(NPC, 229.1, 4.2, -57.53, 2, math.random(10, 24))
  36. MovementLoopAddLocation(NPC, 232.81, 3.2, -51.73, 2, 0)
  37. MovementLoopAddLocation(NPC, 239.59, 2.8, -47, 2, math.random(10, 24))
  38. MovementLoopAddLocation(NPC, 236.16, 2.81, -43.65, 2, 0)
  39. MovementLoopAddLocation(NPC, 234.74, 2.82, -40.67, 2, 0)
  40. MovementLoopAddLocation(NPC, 234.29, 2.84, -36.31, 2, math.random(10, 24))
  41. MovementLoopAddLocation(NPC, 240.2, 2.36, -65.16, 2, 0)
  42. MovementLoopAddLocation(NPC, 241.7, 2, -91.1, 2, math.random(10, 24))
  43. MovementLoopAddLocation(NPC, 216.36, 2.06, -62.91, 2, math.random(10, 24))
  44. MovementLoopAddLocation(NPC, 215.81, 2.34, -69.59, 2, 0)
  45. MovementLoopAddLocation(NPC, 211.87, 2.76, -77.62, 2, 0)
  46. MovementLoopAddLocation(NPC, 210.4, 2.9, -83.67, 2, math.random(10, 24))
  47. MovementLoopAddLocation(NPC, 215.62, 3.42, -62.2, 2, 0)
  48. MovementLoopAddLocation(NPC, 220.67, 4.26, -49.88, 2, math.random(10, 24))
  49. end