I'm running this in the console not in game. I meant to specify that in my post but it looks like I forgot that part.
s00ner
@s00ner
3
Posts
643
Profile views
0
Followers
0
Following
Posts made by s00ner
-
RE: Code that works in game give error in simulation
-
RE: Code that works in game give error in simulation
Messed up the formatting and can't edit. Should be:
Code:
for(var name in Game.creeps) { var creep = Game.creeps[name]; }
Error:
SyntaxError: Unexpected token for
at Object.c.runCode:5:34191
-
Code that works in game give error in simulation
Just a basic for loop. Works fine in game but gives an error in the simulation.
Code:
`for(var name in Game.creeps) { var creep = Game.creeps[name]; }Error:
'SyntaxError: Unexpected token for
` at Object.c.runCode:5:34191