aneedlefang427573.lua 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/aneedlefang427573.lua
  3. Script Purpose : Waypoint Path for aneedlefang427573.lua
  4. Script Author : Rylec
  5. Script Date : 11-03-2019 05:46:19
  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, -96.68, -12.32, 208.17, 2, math.random(10, 20))
  18. MovementLoopAddLocation(NPC, -99.22, -14.86, 238.1, 2, math.random(10, 20))
  19. MovementLoopAddLocation(NPC, -104.56, -11.89, 238.74, 2, 0)
  20. MovementLoopAddLocation(NPC, -109.24, -12.01, 238.84, 2, 0)
  21. MovementLoopAddLocation(NPC, -127.37, -13.24, 231.18, 2, 0)
  22. MovementLoopAddLocation(NPC, -132.23, -13.75, 225.16, 2, math.random(10, 20))
  23. MovementLoopAddLocation(NPC, -116.89, -13.79, 231.54, 2, math.random(10, 20))
  24. MovementLoopAddLocation(NPC, -119.92, -13.02, 227.61, 2, 0)
  25. MovementLoopAddLocation(NPC, -139.93, -12.41, 223.17, 2, math.random(10, 20))
  26. MovementLoopAddLocation(NPC, -120.38, -14.16, 200.47, 2, 0)
  27. MovementLoopAddLocation(NPC, -109.01, -14.96, 197.65, 2, math.random(10, 20))
  28. MovementLoopAddLocation(NPC, -106.08, -13.54, 197, 2, 0)
  29. MovementLoopAddLocation(NPC, -97.66, -12.6, 192.91, 2, 0)
  30. MovementLoopAddLocation(NPC, -83.86, -12.1, 187.82, 2, 0)
  31. MovementLoopAddLocation(NPC, -76.22, -12.12, 182.99, 2, math.random(10, 20))
  32. MovementLoopAddLocation(NPC, -82.14, -11.07, 186.78, 2, 0)
  33. MovementLoopAddLocation(NPC, -94.27, -11.14, 192.13, 2, 0)
  34. MovementLoopAddLocation(NPC, -101.4, -12.4, 196.43, 2, 0)
  35. end