Mendenbarr

Road Repair

Sep 23rd, 2015
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var target = creep.pos.findClosestByPath(FIND_STRUCTURES, {
  2.         filter: function(object) {
  3.             return object.hits < object.hitsMax && object.structureType === STRUCTURE_ROAD;
  4.         }
  5.         });
  6.         if(target) {
  7.             creep.say('repairing');
  8.             creep.moveTo(target);
  9.             creep.repair(target);
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment