├── .gitignore ├── README.md ├── main.js ├── mapLib.js ├── role.attacker.js ├── role.builder.js ├── role.claimer.js ├── role.defender.js ├── role.explorer.js ├── role.filler.js ├── role.harvester.js ├── role.harvester_external.js ├── role.harvester_mineral.js ├── role.notifier.js ├── role.repair.js ├── role.upgrader.js ├── roleLib.js ├── structure.link.js └── structure.tower.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/README.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/main.js -------------------------------------------------------------------------------- /mapLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/mapLib.js -------------------------------------------------------------------------------- /role.attacker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.attacker.js -------------------------------------------------------------------------------- /role.builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.builder.js -------------------------------------------------------------------------------- /role.claimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.claimer.js -------------------------------------------------------------------------------- /role.defender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.defender.js -------------------------------------------------------------------------------- /role.explorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.explorer.js -------------------------------------------------------------------------------- /role.filler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.filler.js -------------------------------------------------------------------------------- /role.harvester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.harvester.js -------------------------------------------------------------------------------- /role.harvester_external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.harvester_external.js -------------------------------------------------------------------------------- /role.harvester_mineral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.harvester_mineral.js -------------------------------------------------------------------------------- /role.notifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.notifier.js -------------------------------------------------------------------------------- /role.repair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.repair.js -------------------------------------------------------------------------------- /role.upgrader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/role.upgrader.js -------------------------------------------------------------------------------- /roleLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/roleLib.js -------------------------------------------------------------------------------- /structure.link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/structure.link.js -------------------------------------------------------------------------------- /structure.tower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dragonissa/ScreepsAi/HEAD/structure.tower.js --------------------------------------------------------------------------------