Jo rzp fuh bhfutcjsv ozu ich vjwhfdfr. Ji jb szi chuh. Vz bhfutc hebhdchuh, mpi mh tzsbjbihsi szi iz dfsahu zoo. Ops ofti: J dfb iurjsv iz lfxh bpuh icfi icjb ahbtujgijzs cfb fee fegcfmhib, mpi J vzi efyr. Fb pbpfe, J vzi efyr fsa J bfja ehi pb Lfxh icjb cfuahu

Zm ---> Zm
x ----> 7x+5

SOLUTION

The games are:
x2 INK
x2 Divekick
x1 Dead State: Reanmianted
x2 Grim Fandango: Remastred added.

Hall of fame:

  1. gorok
  2. blead
  3. faragona
  4. mrt39
  5. VillaNZ
  6. TheCountTR
  7. Mikalye
  8. NewGame
  9. stlpaul

Random hints/facts

Shoutout to mahv for being smart and solving the hardest part in less than a minute.

** Something for the geeks.

 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>

 #define MAXSIZE 1024

 char *encryption(char Plaintext[MAXSIZE], int A, int B)
 {
    static char Ciphered[MAXSIZE];
    int i;
    int y;
    int index;
    for(i=0;i<strlen(Plaintext)-1;i++)
    {
        if(Plaintext[i]==' ')
        {
            Ciphered[i]=' ';
        }
        else
        {
            index=(int)Plaintext[i] - 'a';
            y=(A*index+B) % 26;
            Ciphered[i]=(char)y+'a';
        }
    }
    return Ciphered;
 }

 int modularinverse(int number, int modulo)
 {
    int inverse;
    int i;
    for(i=1;i<modulo;i++)
    {
        if((number*i) % modulo == 1)
        {
            inverse=i;
        }
    }
    return inverse;
 }

 char *decryption(char Ciphered[MAXSIZE],int A, int B, int inverse)
 {
    static char NewPlaintext[MAXSIZE];
    int i;
    int x;
    int y;
    int index;
    int c;
    for(i=0;i<strlen(Ciphered);i++)
    {
        if(Ciphered[i]==' ')
        {
            NewPlaintext[i]=' ';
        }
        else
        {
            index=(int)Ciphered[i] - 'a';
            x=((inverse * (index - B) % 26) + 26) % 26;;
            NewPlaintext[i]=(char)x+97;
        }
    }
    return NewPlaintext;
 }

 int main()
 {
    int i;
    int A, B;
    char Plaintext[MAXSIZE], Ciphered[MAXSIZE];
    int inverse;
    printf("Donner votre mot/phrase: ");
    fgets(Plaintext,100,stdin);
    for(i=0;i<strlen(Plaintext);i++)
    {
        if(isupper(Plaintext[i])) /
        {
            Plaintext[i]=tolower(Plaintext[i]);/
        }
    }
    printf("Donner A et B: ");
    scanf("%d%d",&A,&B);
    printf("%s\n",encryption(Plaintext,A,B));
    inverse=modularinverse(A,26);
    printf("%d\n",inverse);
    printf("%s\n",decryption(encryption(Plaintext,A,B),A,B,inverse));
 }
8 years ago*

Comment has been collapsed.

Do you want me to make more puzzles? (Optional and has nothing to do with solving this)

View Results
Yes!
No!
Cipher my ass!

This is a hint.

8 years ago*
Permalink

Comment has been collapsed.

Since editing works here, I need to say that this doesn't make sense with the certain language.

8 years ago*
Permalink

Comment has been collapsed.

It doesn't work, at least some times.

8 years ago*
Permalink

Comment has been collapsed.

bump for easy!

8 years ago
Permalink

Comment has been collapsed.

I uncovered the text, but still can't get the right link. :/

Guess 3 a.m. does its thing.

8 years ago
Permalink

Comment has been collapsed.

Sometimes I like to mislead people. Like solving something in a wrong way, or making them search for things in the wrong place. However, I keep things in the field. If I'm going outside the field, I make sure they know.

8 years ago*
Permalink

Comment has been collapsed.

I hope you come back to solve this. Already 2 people made it to the end.

8 years ago
Permalink

Comment has been collapsed.

I didn't save the code used to crack the cipher. Damn :/

8 years ago
Permalink

Comment has been collapsed.

There are other ways to do it. Easily. Regardless of the fact taht I hid a lot of things in it.

8 years ago
Permalink

Comment has been collapsed.

Random fact: Whenever I'm stuck in something, I try to understand its source.
Random fact1: Arabs used to cipher their letters by making each character of their sentences bold.
Random fact2: I'm half Arab.
Random fact3: These facts aren't facts.
Random fact4: Someone who uses 0-indexing is probably a liar.
Random fact5: 'Palindrome' is not a palindrome. (Thanks @gorok).
Random fact6: If you multiply a number by its inverse with a modulaire you get 1.

8 years ago*
Permalink

Comment has been collapsed.

Random fact: 'Palindrome' is not a palindrome

8 years ago
Permalink

Comment has been collapsed.

The irony.

8 years ago
Permalink

Comment has been collapsed.

Bump for 2 solvers. It's pretty easy guys, you just need to be consistent.
x2 Grim Fandango: Remsatred giveaways added.

8 years ago
Permalink

Comment has been collapsed.

Bump, added hints for hints.

8 years ago
Permalink

Comment has been collapsed.

enough for today, I will do some tommorow.

8 years ago
Permalink

Comment has been collapsed.

It's really easy. You just have to look in the right place :/

8 years ago
Permalink

Comment has been collapsed.

Is it clear when I find this right place?

8 years ago
Permalink

Comment has been collapsed.

You'll know the answer when you see it. It's right in front of your eyes but also hidden.

8 years ago
Permalink

Comment has been collapsed.

So, what do I have to do if i think I've decoded it???

8 years ago
Permalink

Comment has been collapsed.

If you really decoded it. You wouldn't need to ask me!!

8 years ago
Permalink

Comment has been collapsed.

Well, I suppose I've read the decrypted text, seen and understood your first fact and now i'm confuzzled....

8 years ago
Permalink

Comment has been collapsed.

Have you read all my random facts? The obvious and the hidden?

8 years ago
Permalink

Comment has been collapsed.

I've been at this for too long . . . and from what I can make of this:
1) The cipher appears to be fairly obvious (although it's not clear to me whether I should be using the PlainText or encypted version).
2) I think the key can be easily found if you look in the right place (as you suggested).

But, I can't seem to do the basic decryption to the right solution, so I must have something wrong.

8 years ago
Permalink

Comment has been collapsed.

Well, it's been a day ago and only 3 solvers. I guess I gotta step in and help you guys.

HINT OF ALL HINTS: I am the master of misleading people, there are several(not really, just a few) pathways to do this. Some are veery necesary and can help you undersatnd what you're going and some can be ignored if you already have the knowledge. Simply put, if you think you're doing it right but you can't seem to reach the end, find a different way to do it.

8 years ago
Permalink

Comment has been collapsed.

Another thing to add. I hide things among things.

8 years ago
Permalink

Comment has been collapsed.

Y=Ax+B
Y-Ax=B
Ax=Y-B
X=(Y-B)/A (This is ilogical when it comes to alphabet numbers which are integers).
X=A^(-1)*(Y-B)

8 years ago
Permalink

Comment has been collapsed.

Decryption is not the hard part. I don't know what to do with it.

8 years ago
Permalink

Comment has been collapsed.

Make sure you read everything I said in this discussion. I've hinted to the correct steps several times. You might also want to open your eyes for hidden things, in plain sight

8 years ago
Permalink

Comment has been collapsed.

I saw them but they didn't lead me anywhere.

8 years ago
Permalink

Comment has been collapsed.

My reply to someone else

If I was the one who made the puzzle, I'd make the first step as a first random fact. Oh wait, I did!

8 years ago
Permalink

Comment has been collapsed.

Yep, been there, learnt about a Frenchman I'd never heard of before, found an example key which may or may not have been a red herring, but couldn't be used successfully in either a tabulated or algebraic method - hence getting confused as to what is real and what is deception.

8 years ago
Permalink

Comment has been collapsed.

This puzzle indeed has a lot of rabbit holes and deceptions. But I made sure that when you see the answer, you know it's the one you seek. How hard is it to see this ?

8 years ago
Permalink

Comment has been collapsed.

In the original message - easy; elsewhere, hard.

8 years ago
Permalink

Comment has been collapsed.

Misleading you means making you think this is hard, whilst it's easy ;)

8 years ago
Permalink

Comment has been collapsed.

Don't you feel amazed how people can make a discussion as a reply?

8 years ago
Permalink

Comment has been collapsed.

Yep, doesn't help. I've never played with modulo or keys before, and while they're fairly easy to pick up, it's hard to follow when there are rabbit holes along the way, so I have no clue as to whether I'm on the right path or not until I hit the correct solution. Unfortunately for me there are too many possibilities to follow while being blind in doing so (I think I'd be more successful if the path was more clearly linear).

I'll chalk this one up to experience and look forward to seeing the solution.

8 years ago
Permalink

Comment has been collapsed.

What if the encrypted message IS a rabbit hole? I made a lot of pathways as a part of the puzzle, but their end would always lead you back to the beginning with more gear.

8 years ago
Permalink

Comment has been collapsed.

Well, I was already halfway through, but I dropped it when I heard the decrypted message leads to nowhere. For sure I'm coming back to this after work tomorrow. Bump.

8 years ago
Permalink

Comment has been collapsed.

It does lead to something. It's simply a piece of information you might need.

8 years ago
Permalink

Comment has been collapsed.

To save you guys from doing bullshit math. The modular multiplicative inverse of 7 is 15. Then X=A^(-1)(Y-B) comes in handy.

8 years ago
Permalink

Comment has been collapsed.

So much time spent on deciphering the whole message... I deciphered it. But for nothing? :( That's plain evil...
Also the "simple hidden thing" did not help at all, even ciphered and deciphered it, and it was still a useless clue.... You can't expect us to be in your mind on what to do after the deciphering. This is crazy man...

8 years ago*
Permalink

Comment has been collapsed.

Deciphering the message is somewhat necessary for people who don't know what they're doing. It can be ignored if you already found the true hidden message.(You already did btw). You probably missed several other hints.

You know hiding can also be done in comments ;)

8 years ago
Permalink

Comment has been collapsed.

I've read your comments indeed but they helped me not. I seriously don't know what "I'm supposed" to do next, so I'll just wait for the posted solution in the end... This has already took too much of my time, sorry, and it just makes no sense to me what you expect us to do/understand...

8 years ago*
Permalink

Comment has been collapsed.

"The simple hidden thing" IS the fist step. I hid a hint in a veeery obvious place since I made it soo big and shiny, that tells you what to do with it. Don't lose hope, please!

8 years ago
Permalink

Comment has been collapsed.

Bump for massive amount of red herrings.
Don't let your habits hinder your progress. :)

8 years ago
Permalink

Comment has been collapsed.

Thanks for the bump. This guy over here solved it, I indeed put a lot of red herrings, but they can be easily ignored.

8 years ago
Permalink

Comment has been collapsed.

LOL

8 years ago
Permalink

Comment has been collapsed.

LOL

8 years ago
Permalink

Comment has been collapsed.

Shouldn't letter 'D' be '3', with 0-indexing? It's 5 in your hint on the original post.

8 years ago
Permalink

Comment has been collapsed.

Haha yeah you're right, honest mistake.

8 years ago
Permalink

Comment has been collapsed.

I think he is just referring to it, in order to demonstrate that it's necessary to also count "0" in the function.. It's just an example.

8 years ago
Permalink

Comment has been collapsed.

Yeah, it was an example indeed. But good catch from his side.

8 years ago
Permalink

Comment has been collapsed.

I had actually seen that from the beginning, but never cared to mention it, since it was an example of a function that "would not work" as far as the necessity of 0 goes. :P but oh well...

8 years ago
Permalink

Comment has been collapsed.

Yep, although I re-read every word there has been put as a hint and I always try to find a meaning behind them.

8 years ago
Permalink

Comment has been collapsed.

Good job realising that. I indeed hinted all of the steps(except for the last one) in every comment I made, I even hid stuff in my comments. Here, I said it!!

8 years ago
Permalink

Comment has been collapsed.

I'm probably blind then, or fail to understand basic things, cause I can't see a single thing that helps in your comments. Anyway I give up...

8 years ago
Permalink

Comment has been collapsed.

There is a big giant massive vast comment that says this is a hint.

8 years ago
Permalink

Comment has been collapsed.

I've seen this a thousand times. :P Does not change anything. xD sorry

8 years ago
Permalink

Comment has been collapsed.

I can't Control U

8 years ago
Permalink

Comment has been collapsed.

When you see a hint, you check everything about it.

8 years ago
Permalink

Comment has been collapsed.

Yes of course I'm checking what I can on hints. But you guys are obviously a different level than me in puzzle-solving... In any case this is my last post here, I think I've spammed enough... You are all crazy to be able to solve this...

8 years ago*
Permalink

Comment has been collapsed.

Spamming is kinda welcomed in puzzle threads, as it gives more exposure :P

View attached image.
8 years ago
Permalink

Comment has been collapsed.

You're free to spam as much as you want. Just solve this and make me proud.

8 years ago
Permalink

Comment has been collapsed.

Well, sorry to disappoint, but I have no idea of what is even required... :( Found all kinds of hints totally useless in this... :/

8 years ago
Permalink

Comment has been collapsed.

The only thing requires is patience and consistency. It took me 2 hours to solve a jigsaw puzzle yesterday because I knew I can do it. You also do know you can do it, you already have the right pieces, just make sure you understand them.

8 years ago
Permalink

Comment has been collapsed.

Bump for solved. And I must say, this has been a very interesting trip.

8 years ago
Permalink

Comment has been collapsed.

Congratulations. It feels good to know people can actually solve this, eventhough it's easier than you'd expected.

8 years ago
Permalink

Comment has been collapsed.

Ok, progress with the latest hints, but I'm still missing something . . .

Back to the hints again.

8 years ago
Permalink

Comment has been collapsed.

You're close. Don't lose hope. Just don't!

8 years ago
Permalink

Comment has been collapsed.

Should I be going back over the hints? Do I need to use maths?

8 years ago*
Permalink

Comment has been collapsed.

Yes, definitely. All the hints are necessary to undersantd what you need to do.

8 years ago
Permalink

Comment has been collapsed.

Reading the very end of the puzzle doesn't require maths.

8 years ago
Permalink

Comment has been collapsed.

And I'm at the end (bar a couple of things)?

8 years ago
Permalink

Comment has been collapsed.

The end is a itstoohard puzzle.

8 years ago
Permalink

Comment has been collapsed.

Ok, so it's just the answers to the questions I need. Should I still be hunting for hints?

8 years ago
Permalink

Comment has been collapsed.

The hints for that part exsit in that very part. Not here.

8 years ago
Permalink

Comment has been collapsed.

I might need to come back to these . . . a bit too abstract for me at the moment.

8 years ago
Permalink

Comment has been collapsed.

Patterns.

8 years ago
Permalink

Comment has been collapsed.

I had tried that . . . but got tripped up on punctuation.

8 years ago
Permalink

Comment has been collapsed.

Thank you. Thank you. Thank you VillaNZ. I too made the same error as you and had you not made that comment, I would have taken even more time on that one.
Thanks again.

8 years ago
Permalink

Comment has been collapsed.

Not a problem . . . except now you've taken me to your new puzzle which looks very interesting!
You know these puzzles feel a lot like work. I get through one and feel like I deserve a break, and then bang, I'm slapped with another one to tackle. My addictive personality being like a dog with a bone doesn't help as I can't just walk away.

8 years ago
Permalink

Comment has been collapsed.

My new year's resolution was one per week. So far, I remain on course.

8 years ago
Permalink

Comment has been collapsed.

I suppose I should just get in the habit of figuring them out sooner.

8 years ago
Permalink

Comment has been collapsed.

I first looked and I thought: Hell no
But then switched off the dark SG theme.

Wish me luck, bud. I'm going in.

View attached image.
8 years ago
Permalink

Comment has been collapsed.

YOU CAN DO IT KITTEN.

8 years ago
Permalink

Comment has been collapsed.

Bump for solved after numerous clues from Meatrock. Frustrating, complex, frustrating, simple and frustrating would be how to describe it. I can finally sleep at night!

8 years ago
Permalink

Comment has been collapsed.

Congratulations. Another example of how simple this puzzle is.

8 years ago
Permalink

Comment has been collapsed.

Very simple - in fact it only took a few minutes if you ignore all the time I wasted doing things that only confused me further.

8 years ago
Permalink

Comment has been collapsed.

It took me 5 minutes to make the puzzle. :D

8 years ago
Permalink

Comment has been collapsed.

Congratz man! Did you facepalm in the end like I did? :P

8 years ago
Permalink

Comment has been collapsed.

No, I decided against that. My face is pretty sore after bashing it against a brick wall for that past two days. In hindsight, I should have just used the gate.

8 years ago
Permalink

Comment has been collapsed.

Bump for solved

8 years ago
Permalink

Comment has been collapsed.

Congratulations. I'm proud of you!

8 years ago
Permalink

Comment has been collapsed.

Bump for solved. I thought that the puzzle was solveable with all the hints, but I am not sure that there was a reasonable way along the path without the hints.

8 years ago
Permalink

Comment has been collapsed.

Two people solved it without the hints.

8 years ago
Permalink

Comment has been collapsed.

Oh I recognize that, and good on them. However from my perspective, this is a puzzle that has a very large number of red herrings, things that look cool, but ultimately go nowhere. This leaves you fundamentally with three options:
1) Get lucky. Happen upon one of the correct paths soon, and hooray, you get there
2) Spend a lot of time. Chase down each of the red herrings, and work out whether it is real
3) Use the hints to eliminate a number of the red herrings, reducing the time commitment to what you have available.

Now I admit it. I am time poor. I have a lot of commitments, and not a huge amount of time, which ruled out option 2 for me, and by chance I was unfortunately not lucky. That left option 3 as MY only route through. Someone else could have ended up on either of the other two options.

From my perspective, I really liked the core mechanic. I liked where and how you chose to hide the Itstoohard code. Frankly, you did not need all of the red herrings to get to a cool puzzle. You had one to start with.

8 years ago
Permalink

Comment has been collapsed.

I'd like to answer you, but I'll leave the answer until the giveaways end. Since I my answer would be the answer to the puzzle.

8 years ago
Permalink

Comment has been collapsed.

The red herrings were intended. Just wanted to make it slightly harder by confusing people. I provided hints to help you recognize the red herrings, though.

8 years ago
Permalink

Comment has been collapsed.

Bump for not solved, don't have the slightest idea after staring at screen and thinking for 30+ min

8 years ago
Permalink

Comment has been collapsed.

You don't need to think a looot. What progress you made so far?

8 years ago
Permalink

Comment has been collapsed.

I have some leads. But the math part got me so lazyyyyy, and I didn't know how to to decrypt the sentence.

I guess I saw your hint with source if you're talking about the strongs, and I saw that there's a trick somewhere, but I'm lost. Math doesn't make me want to go very far. :c

8 years ago
Permalink

Comment has been collapsed.

Well, the math part isn't entirely necessary. You can fully skip it if you know what to exactly do with the ciphered message.

8 years ago
Permalink

Comment has been collapsed.

WELP, I don't. Pain and suffering.

View attached image.
8 years ago
Permalink

Comment has been collapsed.

Can't you see that there is a hidden something over there?

8 years ago
Permalink

Comment has been collapsed.

Found out where to put, finally. But now there's a whole mess of things to search again. Hints can help here? D:

8 years ago
Permalink

Comment has been collapsed.

There is only a one hint that can help you there. It's hard to find it, but for you it might not be so hard.

8 years ago
Permalink

Comment has been collapsed.

i cant :(

8 years ago
Permalink

Comment has been collapsed.

It's funny how a huge signs says "STUFF HERE" and you just ignore it -_-

8 years ago
Permalink

Comment has been collapsed.

Closed 7 years ago by Meetrock.