forum

[Answers] There are two secret messages in t​​​​​​​h​​i​​​​​​​s thread.

posted
Total Posts
33

.

.
1
12.50%
..
0
0.00%
...
0
0.00%
....
0
0.00%
.....
0
0.00%
......
1
12.50%
.......
0
0.00%
........
0
0.00%
.........
1
12.50%
..........
5
62.50%
Total votes: 8
Topic Starter
Behrauder
Today I woke up and had a new idea on how to hide a secret message, and so you guys have two secret messages in this thread to solve, you can he​​​​​​​​​​​​​​​​​​​​​​​​​​⁠​​​​​​⁠​​​​​​​​​​​​​​​​​​​⁠​​​⁠​​​​​​​​⁠​⁠⁠​​​​​​​​​​​​​​​​​⁠​​​​​​​​​⁠​​​​​​​​​​​​⁠​​​​​​​⁠​​​​​​​​​​​​​⁠⁠​​​​​​​​​​​​​​​​​​​​​⁠​​​​​​​​​​​​​​⁠​​​​​​​​​​​​​​⁠​​​​​​​​​​​​​​​​​​​​​⁠​​​​​​​​​​​​​​​​​​​​​​​⁠​​​​​⁠⁠​​​​​​​​​​​​​​⁠​​⁠​​​​​​​​​​​​​​​​​​​​​​​​​⁠⁠​​​​​​​​​​​​​​​​​​​​​​​​​⁠​​​​​​​​​​​​​​​​​​​​​⁠​​​​​​​​​​​​⁠​​​​​​​​​​​​​​⁠​​⁠lp each other by sharing ideas and things you discovered, good luck!

After someone solves it, I'll send you a video of me solving it. If you guys can't solve it even after a long time, I will also send the video.

Topic Starter
Behrauder
Just to let you guys know that none of the poll options are answers, but maybe they have a tip, or maybe they don't.
Reyalp51


well my secret weapon failed so uh gg i guess
Winnyace
import java.util.Random;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Random rng = new Random();
        Scanner scan = new Scanner(System.in);

        int num = rng.nextInt(11);
        int guesses_taken = 0;
        boolean guessed = false;

        System.out.print("Guess my number between 0 and 10: ");
        do {
            int guess = scan.nextInt();
            if (guess == num) {
                System.out.println("You guessed my number!");
                guessed = true;
                break;
            }
            else if (guess > num) {
                System.out.println("The number you gave me is lower than the number I have in my mind");
                guesses_taken++;
            } else if (guess < num) {
                System.out.println("The number you gave me is higher than the number I have in my mind");
                guesses_taken++;
            }
        } while (guesses_taken < 5);
        if (!guessed) {
            System.out.println("Sorry. You didn't guess the number I was thinking of. The number was " +num+ ". Better luck next time!");
        }
        System.out.println("Thank you for playing!");
    }
}

Jarva UwU
Topic Starter
Behrauder

Reyalp51 wrote:



well my secret weapon failed so uh gg i guess
Do you have ChatGPT-4?


Winnyace wrote:

import java.util.Random;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Random rng = new Random();
        Scanner scan = new Scanner(System.in);

        int num = rng.nextInt(11);
        int guesses_taken = 0;
        boolean guessed = false;

        System.out.print("Guess my number between 0 and 10: ");
        do {
            int guess = scan.nextInt();
            if (guess == num) {
                System.out.println("You guessed my number!");
                guessed = true;
                break;
            }
            else if (guess > num) {
                System.out.println("The number you gave me is lower than the number I have in my mind");
                guesses_taken++;
            } else if (guess < num) {
                System.out.println("The number you gave me is higher than the number I have in my mind");
                guesses_taken++;
            }
        } while (guesses_taken < 5);
        if (!guessed) {
            System.out.println("Sorry. You didn't guess the number I was thinking of. The number was " +num+ ". Better luck next time!");
        }
        System.out.println("Thank you for playing!");
    }
}

Jarva UwU
?
B0ii
1: the total number of dots in the poll add up to 55 (56 if you include the one in the poll's title or the one in the thread's title, 57 if you include both)
2: in the third image, there is a weird white streak on the bottom right side of it, I have tried converting the alpha data of it to text, same thing with the volume value of the color but I got nothing (added a black background for clarity)

Reyalp51

Behrauder wrote:

Reyalp51 wrote:

well my secret weapon failed so uh gg i guess
Do you have ChatGPT-4?
nah
Topic Starter
Behrauder

B0ii wrote:

1: the total number of dots in the poll add up to 55 (56 if you include the one in the poll's title or the one in the thread's title, 57 if you include both)
2: in the third image, there is a weird white streak on the bottom right side of it, I have tried converting the alpha data of it to text, same thing with the volume value of the color but I got nothing (added a black background for clarity)

I don't know what alpha data is, but I wouldn't do something that required someone to know what it is to solve it...
Patatitta
I found them
Winnyace

Behrauder wrote:

Winnyace wrote:

import java.util.Random;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Random rng = new Random();
        Scanner scan = new Scanner(System.in);

        int num = rng.nextInt(11);
        int guesses_taken = 0;
        boolean guessed = false;

        System.out.print("Guess my number between 0 and 10: ");
        do {
            int guess = scan.nextInt();
            if (guess == num) {
                System.out.println("You guessed my number!");
                guessed = true;
                break;
            }
            else if (guess > num) {
                System.out.println("The number you gave me is lower than the number I have in my mind");
                guesses_taken++;
            } else if (guess < num) {
                System.out.println("The number you gave me is higher than the number I have in my mind");
                guesses_taken++;
            }
        } while (guesses_taken < 5);
        if (!guessed) {
            System.out.println("Sorry. You didn't guess the number I was thinking of. The number was " +num+ ". Better luck next time!");
        }
        System.out.println("Thank you for playing!");
    }
}

Jarva UwU

?
wait, I just did this in Kotlin
import java.lang.NumberFormatException

fun main() {
    val num = (1..10).random()
    var guessesTaken = 0
    var guessed = false

    do {
        try {
            print("Guess the number in the interval [1, 10]: ")
            val guess: Int = readln().toInt()
            if (guess == num) {
                println("Congrats! That's the number!")
                guessed = true
                break
            }
            else if (guess > num) {
                print("The number I'm thinking of is lower than your current guess. ")
                guessesTaken++
                println("You have ${5-guessesTaken} guesses left.")
            }
            else {
                println("The number I'm thinking of is higher than your current guess.")
                guessesTaken++
                println("You have ${5-guessesTaken} guesses left.")
            }
        }
        catch (e: NumberFormatException) {
            println("That's not a number")
        }
    } while (guessesTaken != 5)
    if (!guessed) {
        println("Sorry. The number I was thinking of was ${num}. Better luck next time.")
    }
    println("Thank you for playing!")
}

Kotlin > Java LMAO
Winnyace

Patatitta wrote:

I found them
I hope they are as follows
pee pee
poo poo
pee pee poo poo
hehe
Topic Starter
Behrauder

Patatitta wrote:

I found them
Both? You can share with others if you want, or if you don't want to give out the answers to let others try, you can just say the easiest one...
Reyalp51
i found them
Topic Starter
Behrauder
[REDACTED]
Patatitta

Winnyace wrote:

Patatitta wrote:

I found them
I hope they are as follows
pee pee
poo poo
pee pee poo poo
hehe
dude don't spoil it
B0ii
I found one
Topic Starter
Behrauder
I thought you guys would work as a group to solve it... I think I'll give you guys another 48 hours, If none of you solve it by then, I think no one will solve it anymore.
Karmine
The secret messages are the friends we made along the way.
burgernfat
the word help in the op has something weird going on with the autocorrect. thats all i got
Patatitta

Behrauder wrote:

I thought you guys would work as a group to solve it... I think I'll give you guys another 48 hours, If none of you solve it by then, I think no one will solve it anymore.
yeah people don't seem to care enough for this, same with the post anything I will respond with something thread, I don't think anyone is looking hard into that thread either
Karmine

Patatitta wrote:

Behrauder wrote:

I thought you guys would work as a group to solve it... I think I'll give you guys another 48 hours, If none of you solve it by then, I think no one will solve it anymore.
yeah people don't seem to care enough for this, same with the post anything I will respond with something thread, I don't think anyone is looking hard into that thread either
That other thread actually has something going on? Thought it was just shitpost.

I'm too lazy and small brained for threads like this one.
Achromalia
part of the problem with engagement here might be that it requires investment in order to really persist in solving something that doesn't really appear to have a hook or anything beyond the puzzle itself

like there's no lore, no characterization, no interests facts, no sparkly flashy cute/cool images
Topic Starter
Behrauder

Achromalia wrote:

part of the problem with engagement here might be that it requires investment in order to really persist in solving something that doesn't really appear to have a hook or anything beyond the puzzle itself

like there's no lore, no characterization, no interests facts, no sparkly flashy cute/cool images
It makes sense...


burgernfat wrote:

the word help in the op has something weird going on with the autocorrect. thats all i got
It's a good start.
Kaaruumii
Corne2Plum3

Behrauder wrote:

B0ii wrote:

1: the total number of dots in the poll add up to 55 (56 if you include the one in the poll's title or the one in the thread's title, 57 if you include both)
2: in the third image, there is a weird white streak on the bottom right side of it, I have tried converting the alpha data of it to text, same thing with the volume value of the color but I got nothing (added a black background for clarity)

I don't know what alpha data is, but I wouldn't do something that required someone to know what it is to solve it...
alpha represents the transparency of a pixel. An alpha of 0 means it's invisible, and the higher the alpha the higher the pixel is more opaque
Topic Starter
Behrauder

burgernfat wrote:

the word help in the op has something weird going on with the autocorrect. thats all i got
Tip: If anyone still wants to solve this, focus on this.
Patatitta

Behrauder wrote:

burgernfat wrote:

the word help in the op has something weird going on with the autocorrect. thats all i got
Tip: If anyone still wants to solve this, focus on this.
just so you know, autocorrect doesn't work for everyone, I have set mine set on spanish so every english word wrong
Topic Starter
Behrauder

Patatitta wrote:

Behrauder wrote:

burgernfat wrote:

the word help in the op has something weird going on with the autocorrect. thats all i got
Tip: If anyone still wants to solve this, focus on this.
just so you know, autocorrect doesn't work for everyone, I have set mine set on spanish so every english word wrong
I know, that shouldn't influence anything.
Karmine
The help word has 364 zero-width spaces.
Don't know how that's useful but here you go I guess.
keremaru

Karmine wrote:

The help word has 364 zero-width spaces.
Don't know how that's useful but here you go I guess.
363 (checked w/ a character counter)
same case for the word "this" in the thread title (16 spaces)
Polyspora
and I'm discovering neither
Topic Starter
Behrauder
Unfortunately, no one managed to decipher it in time, but I think many could do it if they tried. Here are the answers:

Answers:

Answers:



Hard:



Easy:


Wimpy Cursed
thanks
Please sign in to reply.

New reply