ataintedfalcon1587681.lua 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/ataintedfalcon1587681.lua
  3. Script Purpose : Waypoint Path for ataintedfalcon1587681.lua
  4. Script Author : Rylec
  5. Script Date : 06-01-2020 10:07:59
  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, 253.84, 2.5, 124.54, 2, math.random(10, 24))
  22. MovementLoopAddLocation(NPC, 236.49, 2.4, 117.63, 2, 0)
  23. MovementLoopAddLocation(NPC, 231.08, 2.2, 110.85, 2, math.random(10, 24))
  24. MovementLoopAddLocation(NPC, 240.46, 2.7, 99.37, 2, 0)
  25. MovementLoopAddLocation(NPC, 257.32, 3.1, 87.99, 2, math.random(10, 24))
  26. MovementLoopAddLocation(NPC, 243.87, -1.2, 101.98, 2, math.random(10, 24))
  27. MovementLoopAddLocation(NPC, 252.78, -0.2, 112.9, 2, 0)
  28. MovementLoopAddLocation(NPC, 256.51, 0.9, 121.17, 2, 0)
  29. MovementLoopAddLocation(NPC, 259.59, 1.5, 124.71, 2, math.random(10, 24))
  30. MovementLoopAddLocation(NPC, 254.99, 0.5, 118.75, 2, 0)
  31. MovementLoopAddLocation(NPC, 250.55, -0.7, 109.25, 2, 0)
  32. MovementLoopAddLocation(NPC, 244.29, -1.2, 101.32, 2, math.random(10, 24))
  33. MovementLoopAddLocation(NPC, 257.28, 0.9, 104.41, 2, 0)
  34. MovementLoopAddLocation(NPC, 263.88, 1.5, 104.65, 2, math.random(10, 24))
  35. MovementLoopAddLocation(NPC, 252.17, 0.3, 103.19, 2, 0)
  36. MovementLoopAddLocation(NPC, 236.76, -1.3, 98.56, 2, math.random(10, 24))
  37. MovementLoopAddLocation(NPC, 266.84, 2.6, 108.01, 2, math.random(10, 24))
  38. MovementLoopAddLocation(NPC, 257.01, 3.43, 82.15, 2, 0)
  39. MovementLoopAddLocation(NPC, 254.14, 3.73, 64.42, 2, 0)
  40. MovementLoopAddLocation(NPC, 253.81, 4.27, 35.24, 2, math.random(10, 24))
  41. MovementLoopAddLocation(NPC, 254.25, 2.6, 66.46, 2, 0)
  42. MovementLoopAddLocation(NPC, 258.31, 1.5, 73.17, 2, math.random(10, 24))
  43. MovementLoopAddLocation(NPC, 231.65, 5.32, 99.14, 2, math.random(10, 24))
  44. MovementLoopAddLocation(NPC, 240.46, 4.2, 112.49, 2, 0)
  45. end