initial commit, tutorial level scripts

This commit is contained in:
2024-04-30 21:37:16 +02:00
parent d672727d9b
commit efa3d8df5c
48 changed files with 8250 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
var roleHarvester = require('role.harvester');
module.exports.loop = function () {
for(var name in Game.creeps) {
var creep = Game.creeps[name];
if(creep.memory.role == 'harvester') {
roleHarvester.run(creep);
}
}
}