Skip to content

Instantly share code, notes, and snippets.

@chickenfoot88
Created January 25, 2019 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chickenfoot88/1f0c5b80a434c98faa9e60d087759c03 to your computer and use it in GitHub Desktop.
Save chickenfoot88/1f0c5b80a434c98faa9e60d087759c03 to your computer and use it in GitHub Desktop.
var roleUpgrader = {
/** @param {Creep} creep **/
run: function(creep) {
if(creep.carry.energy == 0) {
var sources = creep.room.find(FIND_SOURCES);
if(creep.harvest(sources[0]) == ERR_NOT_IN_RANGE) {
creep.moveTo(sources[0]);
}
}
else {
if(creep.upgradeController(creep.room.controller) == ERR_NOT_IN_RANGE) {
creep.moveTo(creep.room.controller);
}
}
}
};
module.exports = roleUpgrader;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment