screeps/role.sourceminer.js

12 lines
452 B
JavaScript

let rolesourceMiner = {
run: function(creep) {
//if(Game.getObjectById(creep.memory.destsource.id)==undefined){creep.memory.destsource=undefined}
let ignorecreeps=true
//console.log('running sourceminer')
let mysource=Game.getObjectById(creep.memory.destsource.id)
if(creep.harvest(mysource) == ERR_NOT_IN_RANGE) {
creep.travelTo(mysource);
}
}
};
module.exports = rolesourceMiner;