how do i get the complex achievement (im playing on the browser version which is a later update so dont atme if you think this achievement doesnt exist)
A level that has n prerequisite levels (n≥1) gets unlocked either when you solve all of those levels or when you solve n-1 of them as well as all prerequisite levels of the one you don't. In this context, root is treated as normal solve.
In your case, since all are solved except F5, you'll need to solve both F1 and F4.
Oops. I meant to put this with the other comment i made, which is about the solutions in the Server Data section. I still don't fully get how the Test command interacts with the "GOTO" statements. I know that after a test, it will skip to a certain goto, and go there, but just, how?
Edit: I forgot to fully expand the image, so I can see that it does a sort of depth furst search in the paths, but I can't see how the code works! Oh, nvm, i see it collapses the path tree on one path, and then it does the next one. Good code! Sorry for wasting your time.
I clicked on the server data button and in the solutions i found some weird numbers in the program, i understand its for converting to progtamming languages but how?
← Return to game
Comments
Log in with itch.io to leave a comment.
how do i get the complex achievement (im playing on the browser version which is a later update so dont atme if you think this achievement doesnt exist)
ROT13 encoded:
Fbzr yriryf yrg lbh trg n uvture fpber jvgu ebbg guna jvgubhg.
I did E1, G4, and F3, but I haven't unlocked X1? am i missing something?
You also need to solve two out of E3, G2 and F5.
I beat E3
and G2
but skipped F5
. Do I need to do F5 to unlock X? or is it just any of the 2?
F3 and G4 are rooted if that changes anything btw
A level that has n prerequisite levels (n≥1) gets unlocked either when you solve all of those levels or when you solve n-1 of them as well as all prerequisite levels of the one you don't. In this context, root is treated as normal solve.
In your case, since all are solved except F5, you'll need to solve both F1 and F4.
kk! Thanks for the info!
I got that, but how does the Test command work? Also, your code is to complex for mortal minds to comprehend.
Are you talking about this? I was just following the platform's conventions...
Try this version, which demonstrates
Oops. I meant to put this with the other comment i made, which is about the solutions in the Server Data section. I still don't fully get how the Test command interacts with the "GOTO" statements. I know that after a test, it will skip to a certain goto, and go there, but just, how?
Edit: I forgot to fully expand the image, so I can see that it does a sort of depth furst search in the paths, but I can't see how the code works! Oh, nvm, i see it collapses the path tree on one path, and then it does the next one. Good code! Sorry for wasting your time.
Is there a walkthrough for this game? I love it, but am getting stuck on some levels, preventing progress lol
There are videos covering the first ~30 levels, beyond that the best place for tips is the player community in Discord.
Ok! Thanks!
Show post...
a puzzle game that have a working highscore... its going to be complex
Doubly so!
I clicked on the server data button and in the solutions i found some weird numbers in the program, i understand its for converting to progtamming languages but how?
Non-negative numbers represent jumps to previous commands (loops), and -1 means termination.
For example, see Try it online.