Thank you to you and your friend for checking it out! Glad you enjoyed. ๐
SuperBiasedGary
Creator of
Recent community posts
Thanks for playing! The honest answer is, I made this a bit too tricky. The lines don't always clue well. In fact, when I went to play to that point myself, I got stuck on an earlier level...
The best approach I can suggest broadly is to use the check before and after swapping lines to test your individual guesses. Look at anything you think makes sense but might be a little shaky.
But to give more exact hints, I find that it can be hard to figure out the start and end, because they by definition only have one adjacent line as a clue. So I'll rot13 them here, the first line from that screen is:
Yrg zr trg guvf fgenvtug.
And the last one is
Jryy V arire fnvq lbhe obffrf znqr zhpu frafr.
Hope that can help!
Hi there! I actually got some feedback about this a while back, but only with this comment did I notice that I never updated the screenshot example.
A shadow was added to all the colour text to help with this readability. If you check that same screenshot I have updated it to what the game looks like now, it's hopefully clearer!
I made myself this little spreadsheet cheatsheet to and found the perfect spot to get the King. ๐
... and only then discovered I need to take every piece. ๐ฅฒ
๐ | ๐ | ๐ | ๐ | ๐ | ๐ | Q | ๐ |
๐ | ๐ | ๐ | ๐ | ๐ | |||
๐ | ๐ | ๐ | ๐ | ||||
B | ๐ | ๐ | R | ๐ | ๐ | ๐ | ๐ |
๐ | ๐ | ๐ | ๐ | ||||
๐ | ๐ | P | ๐ | ||||
๐ | ๐ | ๐ | |||||
๐ | ๐ | ๐ | K |
That's definitely doable! Instead of lines like
if affectation >= 100:
elif affectation == 75:
elif affectation == 25:
else:
you could use any kind of true/false statements like
if happy == True:
elif annoyed == True:
elif angry == True:
else:
A reason I used numbers was to have things scale the whole way along a meter. But you could leave out those in between points and just use a simpler set of true/false statements.
Also my username on the discord is SuperBiasedGary. Feel free to DM if you'd want me to take a look at your specific code!