-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrole.upgrader.js
More file actions
24 lines (24 loc) · 793 Bytes
/
role.upgrader.js
File metadata and controls
24 lines (24 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
let roleUpgrader = {
/** @param {Creep} creep **/
run: function (creep) {
if (creep.memory.upgrading && creep.store[RESOURCE_ENERGY] == 0) {
creep.memory.upgrading = false;
creep.say("🔄 Sammeln");
}
if (!creep.memory.upgrading && creep.store.getFreeCapacity() == 0) {
creep.memory.upgrading = true;
creep.say("⚡ Upgrade");
}
if (creep.memory.upgrading) {
if (creep.upgradeController(creep.room.controller) == ERR_NOT_IN_RANGE) {
creep.moveTo(creep.room.controller, { visualizePathStyle: { stroke: "#ffaa00" } });
}
} else {
let sources = creep.room.find(FIND_SOURCES);
if (creep.harvest(sources[0]) == ERR_NOT_IN_RANGE) {
creep.moveTo(sources[0]), { visualizePathStyle: { stroke: "#ffaa00" } };
}
}
},
};
module.exports = roleUpgrader;