Created
March 10, 2017 00:02
-
-
Save drusepth/2c3492f830b18faf1c41d035ea19e535 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var roleBuilder = { | |
/** @param {Creep} creep **/ | |
run: function(creep) { | |
if(creep.memory.building && creep.carry.energy == 0) { | |
creep.memory.building = false; | |
creep.say('🔄 harvest'); | |
} | |
if(!creep.memory.building && creep.carry.energy == creep.carryCapacity) { | |
creep.memory.building = true; | |
creep.say('🚧 build'); | |
} | |
if(creep.memory.building) { | |
var targets = creep.room.find(FIND_CONSTRUCTION_SITES); | |
if(targets.length) { | |
if(creep.build(targets[0]) == ERR_NOT_IN_RANGE) { | |
creep.moveTo(targets[0], {visualizePathStyle: {stroke: '#ffffff'}}); | |
} | |
} | |
} | |
else { | |
var sources = creep.room.find(FIND_SOURCES); | |
if(creep.harvest(sources[0]) == ERR_NOT_IN_RANGE) { | |
creep.moveTo(sources[0], {visualizePathStyle: {stroke: '#ffaa00'}}); | |
} | |
} | |
} | |
}; | |
module.exports = roleBuilder; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment