标题确切地说。
除了“ creep.transferEnergy(Game.controller);”,我尝试了许多其他方法。是唯一未返回错误的代码。

最佳答案

我很确定transferEnergy()对控制器不起作用,这是我发现的用于简单自动化升级过程的代码。

if(creep.carry.energy < creep.carryCapacity) {
    var sources = creep.room.find(FIND_SOURCES);
    creep.moveTo(sources[0]);
    creep.harvest(sources[0]);
}
else {
    creep.moveTo(creep.room.controller);
    creep.upgradeController(creep.room.controller)
}

关于javascript - 如何使用transferEnergy(creep)定位房间 Controller ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31902112/

10-09 21:29