Code World Reviews

In Code World you control the robot that can walk around the world and send messages to devices. Every device reacts on those messages according to its code. You will have to read this code, understand what messages to send and write your own code.
App ID708190
App TypeGAME
Developers
Publishers Fewjix
Categories Single-player
Genres Indie
Release Date11 Sep, 2017
Platforms Windows
Supported Languages English

Code World
1 Total Reviews
1 Positive Reviews
0 Negative Reviews
Negative Score

Code World has garnered a total of 1 reviews, with 1 positive reviews and 0 negative reviews, resulting in a ‘Negative’ overall score.

Recent Steam Reviews

This section displays the 10 most recent Steam reviews for the game, showcasing a mix of player experiences and sentiments. Each review summary includes the total playtime along with the number of thumbs-up and thumbs-down reactions, clearly indicating the community's feedback

Playtime: 99 minutes
I enjoyed this straightforward programming puzzle game, even if gets a little repetitive after a few levels. The interface and graphics are simple, and the soundtrack is chill focus music with an engaging tempo. For a seasoned programmer, the challenge is mostly going to be in accessing the devices and solving the math puzzle. The first 11 levels consist of sending simple commands to solve the puzzles, which gives you a sense of the mechanics and how the code interacts with the game elements. At level 12 you get the ability to edit code for certain devices going forward, which makes it much more interesting to solve the challenges. As one might expect, the puzzles increase in difficulty as you progress. It looks like there's around 50 puzzles for me to solve, and it has taken me about 90 minutes to get to the 25% mark, counting a couple of coffee breaks and a few minutes AFK to retrieve jewelry from the bathroom sink trap for the girlfriend. I'm inherently bad at solving puzzles and am okay at math, so you might finish the whole game in that amount of time (note: I'm a professional programmer with 30 years experience, so don't believe the myth that you have to be a genius to program. However, I do recommend that you learn some basic plumbing). One caveat/heads-up for the developer: When I enter the settings menu on Windows 10, if I don't apply some kind of change, and instead hit ESC key, the game crashes to desktop. I didn't incur any loss of progress due to this, it was just a little jarring. I can consistently reproduce this, and it's my personal favorite way to exit the game now.
👍 : 0 | 😃 : 0
Positive
Playtime: 7 minutes
I had technical issues running this game. Given the style of game it should be running smoothly on my rig but far from it. It stutters extremely to the point of it being unplayable. On top of this it doesn't do full screen window or ultrawide resolutions (5120 x 1440). This is on Windows 10, NVIDIA RTX 2080 Ti, Intel i9-9900K. Given that this is an old game I don't think it is going to be fixed so I decided to refund.
👍 : 0 | 😃 : 0
Negative
Playtime: 46 minutes
its a code puzzler expect math and reading code and trying to figure out someone elses code with out any comments. about as fun as being a programmer at a company that had someone writing uncommitted code. and only ever did basic projects. the game has 50 levels but the idea of showing code and solving for x or adding and subtracting while being fundamental to learning coding never seems to get to complicated. i hope that the developer of this game moves on too more projects / games like zachtronics did. or like "else heart break"
👍 : 0 | 😃 : 0
Positive
Playtime: 481 minutes
I wanted to like this game, but it's horrible. Needlessly complicated, zero instructions. You are left to figure it out on your own. I'm against holding people's hands through games, but this is a "chopping them off and tossing them into a burning pit" kind of difficulty. Also, the game's user input isn't encoded correctly.. Meaning you'll have to relearn the location of all special characters, such as: (), [], {}, ", etc.
👍 : 12 | 😃 : 2
Negative
Playtime: 542 minutes
The game is all right i guess, only took me 9 hours to complete if you know your way around programming and python. The puzzle either a beginner level programming questions or read the code(s) in the blocks and enter certain inputs to clear the level. The only problem i have encountered is that you only given a big red flashing box of error instead of the actual error, making it hard to find the problem in your code, especially if you're new to programming.
👍 : 3 | 😃 : 0
Positive
Playtime: 34 minutes
Had potential but blew it.... You send messages to devices that at least in the begining levels make them move in various ways alowing your character to move to the target star. You can be standing on the device and it will move from underneath you causing you to fall to your death. There is alot of repetative stuff and I would have liked to be able to edit the devices code. I did not go past level 4 as its not worth my time. Graphics are great, they are vector graphics so you know its gona be good. Controls are OK, would rather have had wsad as a movement option Not much else I can say about it as Ive not played very much. People wanting to learn programming by playing games do not all come from zero knowledge, I would enable the ability to edit a devices code from the start. Having to send the same command over and over again, whilst moving your character is very agrevating. I would sugest giving an option to send parameters from the start, such that you could control how far the device moves. I also sugest that if the character is standing on the object and it starts to move, to have your character move with it. The game has potential but I feel this game is not consumer ready.
👍 : 6 | 😃 : 0
Negative
Playtime: 520 minutes
The game is nice. Keep in mind this games is [b]NOT[/b] to "learn programming" (Dont know why all newbie think that), read the description of the [u]game[/u]: [b]"Do you want to test your programming skills? This puzzle game is here for you!" [/b] So any newbie in programming, go somewhere else and study... don't write bad review if you don't know how to resolve a puzzle with programming elements.
👍 : 7 | 😃 : 0
Positive
Playtime: 1608 minutes
This game does not touch upon object-oriented programming, nor does it implement try/except blocks. And that's perfectly acceptable, since I can only imagine the hassle of trying to add those. But once I found out that things like: [list] [*] string slicing [*] concatenation via multiplication (str * int) [*] the 'break' keyword [*] elif [/list] are not supported, my eyebrow finally raised. Then there are the things that are partially implemented (ie. maimed) - tuples and dynamic typing. The Python in here is extremely barebones and so is the interpreter. It provides [i]zero[/i] feedback on what went wrong, only that it did. And if you're not careful and don't use the Ctrl+C clipboard to store the latest version of your script, a syntax error will wipe all of your progress (by automatically restarting the level). All of that combined leads me to the biggest issue. The Steam description blurb for this title implies that it is a good choice for beginners to learn from scratch. That is absolutely not true! Primarily because it is too difficult. No instruction in Python [i]per se[/i] is provided, just how to operate the game. And considering that difficulty does ramp up quickly, an actual newbie is guaranteed to grind to a frustrating halt. Secondarily, because the aforementioned spotty implementation of Python could lead to some bad habits or misunderstandings becoming ingrained. A large chunk of the puzzles consists of trying to perform normally simpler tasks with almost no builtin functions - using only loops, conditional statements, variables, comparisons and math. While this is an entertaining excercise, this kind of re-inventing of the wheel doesn't much resemble real-life useful programming, especially in a high-level language like Python. On the other hand what else is there to present as a puzzle? I started learning Python in my spare time a few months ago. The knowledge I accumulated in that time turned out to be sufficient to be assertive towards the game and proceed at a good pace while still being challenged. I wanted it to reinforce what I've learned so far and for that it worked great - I've had tons of fun. The "just one more level" factor was very strongly felt. I wish there were more games like this. So it's getting a thumbs up from me with one more reminder that it is [i]not[/i] for total beginners. ...But if you are a total beginner and want to have a go anyway, check out [url=https://steamcommunity.com/sharedfiles/filedetails/?id=1376975281]my guide[/url] which has solutions to all of the levels.
👍 : 16 | 😃 : 0
Positive
Playtime: 473 minutes
It's very interesting. The code is simple, but the guide is advanced. I think it should explain more. I spent a lot of time trying to figure out each puzzle while getting confused by the code. It doesn't give any warning, which didn't bother me because I'm old enough to know better. It would be nice to have a little more help such as a small tutorial to prepare for the confusion or to just have more information from the start. I like Code World aesthetically. The cute robot mug/helmut on wheels reminds me of Bero. The setting for the world is interesting. I love the consoles - straight forward, and easy. I like how it seems as if the robot is throwing a code block. It makes me think of Bero sending a command sent via my own console through Bero's speakers unto a physical object. It's alright as a single player, offline-game. After about 20 minutes though, I want to do anything else. I will recommend it to anyone programming. It's worth it.
👍 : 19 | 😃 : 0
Positive
Playtime: 54 minutes
I would not be comfortable recommending this game for people who want to learn programming, for the following reasons. 1. One of the most basic things you can do in the game is editing variables that are stored in objects. However, you can't see current values of these variables. This means that you can't do any debugging, which is the most common activity in programming. You have to guess what the values of the variables are, which makes it much less accessible for beginners. 2. The first several puzzles were designed without beginners in mind. Instead of introducing concepts gradually, the puzzles dump a lot of new information on a player, which will easily overwhelm any beginner. The first thing that a player will see, is 10 lines of code (which is a lot for a beginner), half of which are completely unnecessary for the first puzzle. 3. The help section is incomplete. It only provides a brief description of each function, but there is no description of basic programming concepts and no explanation of how the code executes. It is impossible to play this game without previous programming knowledge. 4. It is unclear when the code executes, and there is no explanation of that.
👍 : 57 | 😃 : 0
Negative
File uploading