Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I hope you are using the copy paste feature to import/export to notepad.
I felt that the minimal steps solutions added nothing of value to the game. Once you find the minimal commands solution, or even just any solution at all, often the step challenge is trivial and only boring to code. But overall that means what, that I felt like wasting my time for 10-15 minutes spent unrolling some code? Not too bad considering I spent near 30 hours to beat the whole game.
If the minimal commands solutions sometimes feel hacky to you, my advice is to first solve the floor in whatever way, then look at your code. Question the use and emplacement of every command that is duplicated. Question the way you arrange the jump commands. Remember that "bump" does 2 things at once, for example. Look for sections of code where the order between lines does not matter and imagine what would happen if they were in another order, would it open new possibilities?
Whatever happens, I'd never look for the challenges solutions and say "floor done". If I ever got stuck for 10 hours on a floor that is not a dead end, thus blocking my access to some game content, I suppose I would have opened a guide, copy pasted the solution for that floor, let it run once and then delete the solution. All while trying to not look at the code at all. Come back and redo that floor later if feeling like it.
That's it. I can generally be patient and I'd say that sometimes, I do think a bit like a programmer would, even if I'm not one. So that would explain a lot. But in the end if you get more enjoyment out of the game by copy pasting the solutions of 3-4 floors, then what? It's certainly better than banging your head on a wall for 20 hours without results.
Right. For example in floor 39 I saved a single line of code and 4 steps by not initializing a variable and using an add function instead of a copyfrom.
I'm not familiar enough with assembly to know if this is a skill with real world applications, but in my head it feels more "proper" to output from a stored variable rather than tossing the output from a bump or an add mid loop.
Also yeah the copy/paste to notepad is a lifesaver, and I've only looked up full solutions once I've already beat both challenges to see if there was a better way.
Why sit there wracking your brain when someone else before you has already done it? If everyone literally reinvented their version of everything - which isn't so far removed from the truth, as how many different kinds of chairs are there in the world, and how many of the same kind do we really need (it's like a memory leak of redundancy) - it would take forever to accomplish anything. There is no guilt. Seeing examples, and utilizing existing code, helps you begin thinking and seeing the process which furthers your skills and abilities, that you can begin seeing and writing the necessary code to accomplish your tasks.
Rome wasn't built in a day. Keep the faith.