Hi, I have used this code in the Script tab
if(creep.room.controller) {
var creep1 = Game.creeps.Worker1;
creep1.moveTo(creep1.room.controller);
creep1.upgradeController(creep1.room.controller);
return;
}
But it does not work
I tried to use this code in the console
Game.creeps.Worker1.moveTo(Game.creeps.Worker1.room.controller);
But it is an error -7
Kasper
@Kasper
1
Posts
657
Profile views
0
Followers
0
Following
Posts made by Kasper
-
RE: How to upgrade room controller to level 2?