Skip to content

Game UI and basic scripting

Warren Earle edited this page Jun 21, 2016 · 30 revisions

Game UI and basic scripting

Screeps is a game for programmers. If you don't know how to code in JavaScript, you can learn the fundamentals of JavaScript at the Code Academy free courses https://www.codecademy.com/learn/javascript

The game world consists of multiple playing fields and a single playingfield is called a "room". In the real game, rooms are connected to each other with exits, but in the simulation mode only one room is available to you.

The game world consists of interconnected rooms. A room is a closed space 50x50 cells in size. It may have 1-4 exits to other rooms. A number of rooms in the world is limited, but increases as new players join the game. So the single game world is really huge and constantly expanding, like the Universe itself.

The object in the center of the screen is your first spawn, your colony center.

Clone this wiki locally