atoxiccrawler431021.lua 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --[[
  2. Script Name : SpawnScripts/QueensColony/atoxiccrawler431021.lua
  3. Script Purpose : Waypoint Path for atoxiccrawler431021.lua
  4. Script Author : Rylec
  5. Script Date : 05-02-2020 05:46:52
  6. Script Notes : Locations collected from Live
  7. --]]
  8. function spawn(NPC)
  9. SetInfoStructSInt(NPC, "hp_regen", 0)
  10. waypoints(NPC)
  11. end
  12. function hailed(NPC, Spawn)
  13. FaceTarget(NPC, Spawn)
  14. end
  15. function respawn(NPC)
  16. end
  17. function waypoints(NPC)
  18. MovementLoopAddLocation(NPC, 131.25, 1.5, 101.61, 2, math.random(16, 36))
  19. MovementLoopAddLocation(NPC, 124.2, 1.53, 85.98, 2, 0)
  20. MovementLoopAddLocation(NPC, 122.32, 1.57, 77.22, 2, math.random(16, 36))
  21. MovementLoopAddLocation(NPC, 124.02, 1.53, 80.13, 2, 0)
  22. MovementLoopAddLocation(NPC, 129.36, 1.35, 85.66, 2, 0)
  23. MovementLoopAddLocation(NPC, 139.57, 1.67, 99.69, 2, math.random(16, 36))
  24. MovementLoopAddLocation(NPC, 131.56, 1.5, 98.14, 2, 0)
  25. MovementLoopAddLocation(NPC, 127.58, 1.37, 95.93, 2, 0)
  26. MovementLoopAddLocation(NPC, 126.15, 1.32, 95.85, 2, math.random(16, 36))
  27. MovementLoopAddLocation(NPC, 117.73, 1.55, 107.33, 2, 0)
  28. MovementLoopAddLocation(NPC, 109.63, 1.37, 107.93, 2, math.random(16, 36))
  29. MovementLoopAddLocation(NPC, 128.55, 1.51, 82.43, 2, math.random(16, 36))
  30. MovementLoopAddLocation(NPC, 132.19, 1.3, 89.98, 2, 0)
  31. MovementLoopAddLocation(NPC, 133.36, 1.49, 93.99, 2, math.random(16, 36))
  32. MovementLoopAddLocation(NPC, 132.43, 1.3, 84.86, 2, math.random(16, 36))
  33. MovementLoopAddLocation(NPC, 130, 1.3, 91.89, 2, 0)
  34. MovementLoopAddLocation(NPC, 129.7, 1.5, 96.4, 2, 0)
  35. end