People Playground

People Playground

View Stats:
spogmole Feb 27, 2021 @ 4:55pm
How To See Modulo2.jpg?
What Is Modulo2.jpg

Modulo2 is a jpg file that appears in the games local files after entering in the correct code on abyss. If you try to open it with photos it wont appear

How To Open Modulo2?

Im not sure yet BUT! the community might figure this one out

End

Well i will update this when we can open the file and see what it is
Last edited by spogmole; Feb 20, 2023 @ 1:44am
< >
Showing 1-15 of 44 comments
spogmole Feb 28, 2021 @ 9:13pm 
is that what the jpeg is?
im pretty sure thats the inverse teleportation machine. i have already built it
Last edited by spogmole; Feb 28, 2021 @ 9:15pm
Readynailer Feb 28, 2021 @ 10:55pm 
Originally posted by thydoopie37:
is that what the jpeg is?
im pretty sure thats the inverse teleportation machine. i have already built it
Thats the jpg hex edited.
kelvinfm Jun 20, 2021 @ 11:28am 
i cant even go into the PPG folder
fawdot Jun 20, 2021 @ 3:33pm 
This is funny
danclar2010 Jun 30, 2021 @ 7:50am 
I know how to get to see it
First, you need to open it in NOTEPAD
Then remove 1 line of the code
If you remove the right one, you will be able to view it as an image!
Last edited by danclar2010; Jun 30, 2021 @ 7:50am
yefeyks Jun 30, 2021 @ 8:28am 
This had already been solved, it is related to the Inverse Teleportation achievement, unlike what you probably saw in steam guides, etc. It's actually a lot different. You're supposed to enter 2pi into the keypad in Abbys, it will create a file called modulo2.jpg. Now, this part is a bit complicated because it was meant for programmers / people who know their stuff in computers. Every byte in this file is actually duplicated. The solution is in the file's name: "modulo 2", in programming, modulo is an operation which gives us the remainder of a division. In this case it can be thought as "remove every byte whose offset is divisible by 2". So it's basically a fancy word for "remove every second byte in the file". For doing this you need a program or a hex editor. Since the file is rather big I would suggest writing a program for it since hex editing it manually can take a long time. When you decode the file you will see the inverse teleportation machine as it was meant to be seen.
davidco7777 Jul 25, 2021 @ 12:05am 
Originally posted by daniclar2010:
I know how to get to see it
First, you need to open it in NOTEPAD
Then remove 1 line of the code
If you remove the right one, you will be able to view it as an image!
no
davidco7777 Jul 25, 2021 @ 12:06am 
It's actually fixed like this (in python 3)

f = open("modulo2.jpg", "rb")
content = f.read()
f.close()

n = open("modulo2 fixed.jpg", "wb")
n.write(content[::2])
n.close

edit: took me this long to realize i forgot to run n.close as a function
Last edited by davidco7777; Apr 4, 2023 @ 5:12pm
Sergio Oct 14, 2021 @ 1:25am 
Originally posted by davidco7777:
It's actually fixed like this (in python 3)

f = open("modulo2.jpg", "rb")
content = f.read()
f.close()

n = open("modulo2 fixed.jpg", "wb")
n.write(content[::2])
n.close
It actually worked!, thanks man
Dabatron Oct 20, 2021 @ 10:53am 
hm i really dont know but i think you can turn it into a .mp3 file after the code is removed and its really weird but theres also more to secrets like a hallway with the 2 removed radios and morse code from the old 2019 abyss radio and morse from the 12:00 AM to 3:00 AM tv and hidden hit audios and david apple and random noise 1 that sounds like screaming and when put through spetragram its just weird but ill let you guys know if theres any other secrets i can find.
davidco7777 Oct 20, 2021 @ 12:10pm 
Originally posted by Edwin 777:
hm i really dont know but i think you can turn it into a .mp3 file after the code is removed and its really weird but theres also more to secrets like a hallway with the 2 removed radios and morse code from the old 2019 abyss radio and morse from the 12:00 AM to 3:00 AM tv and hidden hit audios and david apple and random noise 1 that sounds like screaming and when put through spetragram its just weird but ill let you guys know if theres any other secrets i can find.
Can you please look 4 comments above you before you post?
Last edited by davidco7777; Oct 20, 2021 @ 12:11pm
safeygd Oct 27, 2021 @ 9:16pm 
Originally posted by davidco7777:
It's actually fixed like this (in python 3)

f = open("modulo2.jpg", "rb")
content = f.read()
f.close()

n = open("modulo2 fixed.jpg", "wb")
n.write(content[::2])
n.close
Had to figure out how python worked but once i did it had to tweak it a little {i just put the actual locations where the modulo2.jpg and modulo2 fixed.jpg) and it worked. thank you that is so cool
crazytime050 Nov 6, 2021 @ 2:27am 
Originally posted by Safey:
Originally posted by davidco7777:
It's actually fixed like this (in python 3)

f = open("modulo2.jpg", "rb")
content = f.read()
f.close()

n = open("modulo2 fixed.jpg", "wb")
n.write(content[::2])
n.close
Had to figure out how python worked but once i did it had to tweak it a little {i just put the actual locations where the modulo2.jpg and modulo2 fixed.jpg) and it worked. thank you that is so cool
well i tried what you did to put the fixed one in documents but it just says it cant decode bytes in positions 2-3
Trader Nov 8, 2021 @ 4:55am 
Originally posted by davidco7777:
It's actually fixed like this (in python 3)

f = open("modulo2.jpg", "rb")
content = f.read()
f.close()

n = open("modulo2 fixed.jpg", "wb")
n.write(content[::2])
n.close
Thanks it worked!
< >
Showing 1-15 of 44 comments
Per page: 1530 50

Date Posted: Feb 27, 2021 @ 4:55pm
Posts: 44