-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrader.js
27 lines (25 loc) · 958 Bytes
/
upgrader.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
var upgrader = {
run: function(creep) {
if(creep.memory.upgrading && creep.store[RESOURCE_ENERGY] == 0) {
creep.memory.upgrading = false;
//creep.say('🔄 harvest');
}
if(!creep.memory.upgrading && creep.store.getFreeCapacity() == 0) {
creep.memory.upgrading = true;
//creep.say('⚡ upgrade');
}
if(creep.memory.upgrading) {
var _controller = Game.getObjectById(creep.memory.controller);
if(creep.upgradeController(_controller) == ERR_NOT_IN_RANGE) {
creep.moveTo(_controller, {visualizePathStyle: {stroke: '#ffffff'}});
}
}
else {
var source = Game.getObjectById(creep.memory.source);
if(creep.withdraw(source, RESOURCE_ENERGY) == ERR_NOT_IN_RANGE) {
creep.moveTo(source,{visualizePathStyle: {stroke: '#ffffff'}});
}
}
}
};
module.exports = upgrader;