ataintedfalcon1587709.lua 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedfalcon1587709.lua
  3. Script Purpose : Waypoint Path for ataintedfalcon1587709.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:09:31
  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, 226.69, 3.35, -61.92, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 232.96, 3.04, -63.91, 2, 0)
  23. MovementLoopAddLocation(NPC, 240.61, 2.57, -63.84, 2, 0)
  24. MovementLoopAddLocation(NPC, 257.81, 2.1, -70.24, 2, math.random(10, 24))
  25. MovementLoopAddLocation(NPC, 244.04, 2.38, -77.23, 2, 0)
  26. MovementLoopAddLocation(NPC, 238.87, 2.86, -83.82, 2, 0)
  27. MovementLoopAddLocation(NPC, 237.43, 3.1, -88.6, 2, math.random(10, 24))
  28. MovementLoopAddLocation(NPC, 231.67, 2.72, -87.71, 2, 0)
  29. MovementLoopAddLocation(NPC, 210.43, 2.05, -91.49, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 210.51, 2.55, -86.83, 2, 0)
  31. MovementLoopAddLocation(NPC, 208.23, 3.35, -77.93, 2, math.random(10, 24))
  32. MovementLoopAddLocation(NPC, 214.16, 2.77, -73.86, 2, 0)
  33. MovementLoopAddLocation(NPC, 230.8, 2.07, -60.14, 2, math.random(10, 24))
  34. MovementLoopAddLocation(NPC, 222.54, 2.8, -45.86, 2, 0)
  35. MovementLoopAddLocation(NPC, 221.98, 3.05, -42.89, 2, math.random(10, 24))
  36. MovementLoopAddLocation(NPC, 227.12, 1.73, -38.66, 2, 0)
  37. MovementLoopAddLocation(NPC, 236.32, -0.75, -35.09, 2, 0)
  38. MovementLoopAddLocation(NPC, 240.36, -1.5, -31.39, 2, math.random(10, 24))
  39. MovementLoopAddLocation(NPC, 228.61, 4.6, -62.6, 2, math.random(10, 24))
  40. MovementLoopAddLocation(NPC, 236.15, 3.54, -72.28, 2, 0)
  41. MovementLoopAddLocation(NPC, 239.73, 2.86, -83.32, 2, 0)
  42. MovementLoopAddLocation(NPC, 241.6, 2.07, -93.7, 2, math.random(10, 24))
  43. MovementLoopAddLocation(NPC, 247.28, 2.14, -89.34, 2, 0)
  44. MovementLoopAddLocation(NPC, 259.29, 2.19, -72.83, 2, 0)
  45. MovementLoopAddLocation(NPC, 260.5, 2.22, -68, 2, 0)
  46. MovementLoopAddLocation(NPC, 266.21, 2.24, -62.77, 2, math.random(10, 24))
  47. MovementLoopAddLocation(NPC, 258.93, 2.16, -66.6, 2, 0)
  48. MovementLoopAddLocation(NPC, 251.58, 2.09, -64.84, 2, 0)
  49. MovementLoopAddLocation(NPC, 247.43, 2.05, -65.86, 2, math.random(10, 24))
  50. MovementLoopAddLocation(NPC, 231.23, 2.76, -64.4, 2, 0)
  51. end