#Neuro ARG

1 messages · Page 28 of 1

uncut cargo
#

anyone have the numbers copypasta?

fierce trout
#

its a popular song on osu

uncut cargo
fierce trout
#

and neuro sama started as osu bot

daring acorn
#

true

#

our theories be wild

fierce trout
#

wait nvm

#

i mixed it with another song

#

mb

daring acorn
#

sad

rare glacier
#

someone tell azaka add another line could b an i

daring acorn
#

pretty sure it is line

#

i listened to it slowed down

#

its line

#

100%

rare glacier
#

I is a line

daring acorn
#

true

rare glacier
#

im saying the letter I is a line

warped torrent
fierce trout
#

number 1 is also a line in many peoples writing

rare glacier
#

i thought that said 'ace is crying' then, lol

daring acorn
#

true

rare glacier
#

(not ace is typing)

warped torrent
fierce trout
#

😭

daring acorn
warped torrent
#

still don't know what the significance of Matching all the letters is tho

daring acorn
#

we'll figure it out

#

eventually

rare glacier
#

thats why im saying, matching all the letters, maybe to their look-alike'

daring acorn
#

Guys, you just have to, BELIEVE IN YOURSELVES!

#

lol

eternal timber
#

People in this chat not wanting to be an engineer

daring acorn
#

bold of you to assume that i don't want to be an engineer

#

infact i also believe i've seen a ghost

rare glacier
#

whoops sorry was just seeing what that sounded llike

#

in vc

eternal timber
daring acorn
#

at least no ones spamming

#

what is wrong with u

#

in vc

#

so anyone have ideas

eternal timber
#

Dumping two random schizo theories

#

The chromatic abberation (red and blue) in this one made me wonder if there's anything you could see with 3D glasses neuroCry

daring acorn
#

hmmm

eternal timber
#

But idk I tried splitting it into RGB and couldn't find anything

arctic canyon
#

It's so dark up there yuilook

eternal timber
#

And this made me think it might be "Piet", an esoteric programming language (since Malbolge was used before) but idk how to run that angery

warped torrent
daring acorn
#

hmmm

#

you never know

eternal timber
daring acorn
#

schizo theories couldwork

#

you never know

warped torrent
#

sTArt wIth nuMbER 2, YeaH
MATCHING all the LETTeRS
572943

daring acorn
#

lol

fierce trout
#

guys maybe the high-hats are morsecode

warped torrent
#

no

#

it's literally just standard high hat pattern

#

filled every 2 step

obtuse basalt
#

On a side note making a song purely out of morse code could be interesting

daring acorn
#

true

fierce trout
#

guys maybe americas president is a clue! vedal follows him on twitter

timid swift
#

Imagine not guessing wildly when solving an ARG. That'd be crazy

obtuse basalt
fierce trout
#

vedal follows him

daring acorn
#

weird

obtuse basalt
#

2020 arg

digital radish
native maple
#

what about counting all the days tho

timid swift
digital radish
#

mamy

#

i cant do multithreading at all

#

its super dogshit

daring acorn
#

damn

digital radish
#

its even slower than normal

fossil wigeon
#

do you have the python code somewhere? I'd try running it in multiple processes if it's okay

digital radish
#

yeah i canr

native maple
#

also i decoded the desc in base 64 then i did "finding all these numbers" so i used a regex for finding all the numbers in the decoded Base64 it gave

5138113507628035870772399012342229090090

i guess next is to start with number 2

digital radish
#

its doing counting

daring acorn
#

hmm

digital radish
#

so it cant be run in multiple process

warped torrent
#

yeah you can

#

it's not that hard to impl

fossil wigeon
#

it could. for example, on 2 cores, process 1 starts at 000, process 2 starts at 002. each counts by intervals of 2, not one

warped torrent
#

read the multiprocessing namespace docs

timid swift
#

be that as it may, it's still gonna take forever

digital radish
#

its counting to like

fossil wigeon
#

my "solution" is not multithreading, but it would work lol

digital radish
#

10^10

timid swift
#

64! to be exact

digital radish
#

and then what

fossil wigeon
#

starts 001* sry. then each counts up by 2 for example, not one

digital radish
#

p1 002 p2 004?

native maple
#

can't he just do a pool with his multithreading ?

fossil wigeon
#

process 1: 000->002->004->006->...
process 2: 001->003->005->007->...

digital radish
#

doing that wirh

daring acorn
#

hm

digital radish
#

like 10^10 numbers

dapper wraith
#

if you can map it to a generator or something (like range) you can very easily use multiprocessing

digital radish
fossil wigeon
#

spread to 8 or 16 cores, I don't think that's taking years. I'm not following what is exactly being done with the code, but if it's just counting multithreading/multiple porcesses should be possible

native maple
#

nothing is impossible

digital radish
#

everything you said i tried

fossil wigeon
#

I was looking into hashcat yesterday for the AES stuff, but I only managed to crack my own wifi password with that once D:

fossil wigeon
warped torrent
#

hashcat is not designed for this purpose

fossil wigeon
native maple
#

honestly the thing we really need is more info,

warped torrent
#

yes

digital radish
#

multithreading is not funny in python

daring acorn
#

bros tryna decode more stuff again

digital radish
#

you cant just spread tasks to cores

warped torrent
#

like i said vedal's hint sucks

digital radish
#

normally unconfigured multithreading is for parallel tasks that take a long time

daring acorn
#

hopefully we get somewhere

timid swift
#

Yes.

We need to stop speculating and start investigating

native maple
#

or we just not levels 5 hackers

digital radish
#

doing fast generation on python is already optimized by python itself

warped torrent
#

doesn't help that vedal doesn't include the actual lyrics either

fossil wigeon
#

this could be parallel, with a sequence of numbers like x=8*i+k on 8 cores, with k={0,1,2,3,4,5,6,7}, 8 diff sequences running in 8 separate processes. they don't necessarily have to communicate

native maple
#

since day 1 there was trouble between lyrics interpretation since there is no manual subtitles

native maple
daring acorn
#

LETS START INVESTIGATIN, BOIS

arctic canyon
native maple
past sandal
dim island
#

I know right

digital radish
#

@fossil wigeon

    global count
    count = count+n
    if len(str(count)) != 10:
        strcount = str(count).rjust(10, '0')
    alphabet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' + strcount + '+/'
    encoded = str(b64string).translate(str(b64string).maketrans(alphabet, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'))
    try:
        decoded = base64.b64decode(encoded)
        if '\\' not in str(decoded):
            with open(r'C:\Users\TC\Desktop\TBD\test\results.txt', 'a') as f:
                f.write(f'>----------<\nAlphabet Used:\n-->  {alphabet} <--\nResults Obtained:\n{decoded}\n>------------<\n\n\n')
            print(decoded)
    except:
        pass
    count += total```
#

it faster

#

now i just have to do this

for i in range(0,32):
        doCount(i, 32)```
languid swan
#

let's see if vedal will give more hints before this sunday

daring acorn
#

i hope he does lol

dapper wraith
digital radish
#

it only writes to file once when it gets a result

arctic canyon
#

What if two threads have a result at the same time?

fierce trout
#

save me

arctic canyon
warped torrent
obtuse basalt
#

it's a simple substitution
replace all instances of "Numbers" with the whole song

warped torrent
#

the lyrics are us rn

#

we're the engineer

#

slaves to the numbers

daring acorn
#

lol

#

we are becoming an engineer

golden quartz
#

hi guys

#

how's the progress?

arctic canyon
#

We've been decrypting emails for weeks

daring acorn
#

lol

golden quartz
#

understood..

arctic canyon
#

but all we've found is useless government corruption evidence pain

golden quartz
#

were there any hints or leads from vedal?

daring acorn
#

nope

obtuse basalt
#

Vedal's best hint was to tell us to stop spending money

native maple
fossil wigeon
digital radish
#

nothing came up on custom alphabet with numbers

#

time to try the entire thing

rough vapor
past sandal
#

Vedal reading this chat = apopcornblob

rough vapor
#

🤔

daring acorn
#

vedal laughing at us

spring pasture
#

Vedal +20k

native maple
#

anyone checked the thumbnails for hidden stuff ?

rough vapor
#

maybe its vedal plan to let us donate for clues

#

profit

warped torrent
#

i'm going insane

arctic canyon
#

Not sure if anyone has actually aquasmoke

warped torrent
arctic canyon
#

Wow what on earth is this software

rough vapor
#

wtf is that

warped torrent
#

it's what i use for investigation

arctic canyon
#

fascinating never seen anything like it

warped torrent
#

remember i do investigation work a lot

rough vapor
#

maltego one, interesting

daring acorn
#

epic

arctic canyon
#

oh yeah cool

native maple
#

you should had "line could be 9" "line could be \n => ASCII 10" "line could be \r\n => ASCII 13 and ASCII 10"

timid swift
warped torrent
#

i'm leaning towards just \xa

#

instead of both terminators

native maple
#

whats \xa

warped torrent
#

0xa

#

10

native maple
#

ooh

#

yea

rough vapor
#

?

native maple
#

also multiply could mean concat X times

rough vapor
#

ohhhhh interesting

#

🤔

native maple
#

but we probably overthinking everything

daring acorn
#

hmm

timid swift
#

Time to go back and investigate the facts

daring acorn
#

we are probably going too much into things

rough vapor
obtuse basalt
thorn lake
#

I might be going crazy after listening to the denoise version of [8:40-8:52] but I can hear numbers repeating each other starting with 8-10-24

plucky bronze
warped torrent
brazen cedar
#

hu

arctic canyon
#

I wonder if anyone's detailed me under any of these before

#

I hope so

onyx goblet
digital radish
warped torrent
brazen cedar
#

a what offender

arctic canyon
#

Darkeew's come a long way in such a short amount of time shinowow

worn bison
#

Hey guys

worn bison
#

How r u

#

have you heard anything about the secret stream?

austere sun
daring acorn
#

there is no secret stream

#

sad

plucky bronze
#

t3 sub-only stream

arctic canyon
uncut cargo
#

imagine hint behind a paywall

timid swift
austere sun
brazen cedar
austere sun
#

btw can i just put a .py file here instead of putting it in markdown?

warped torrent
#

WAS THAT THE BITE OF 87

native maple
#

😮

warped torrent
brazen cedar
#

the fucking 1987

native maple
uncut cargo
fossil wigeon
#

just before 6 AM too

uncut cargo
worn bison
daring acorn
#

show me what they were saying

#

like their messages

#

so i can believe you

digital radish
#

its skipping numbers

worn bison
daring acorn
#

o

#

ok

#

we'll see

worn bison
#

Two more hours, just wait

digital radish
#

plus i have to reinstall windows

rare glacier
#

i did some theorising

daring acorn
#

nicee

rare glacier
#

I don’t want to be an engineer - ai?
I tried so hard and got so far - osu gp
And now I can’t decide
All my life I’ve given my career - streaming her life basicaly
These numbers in my head - NUMBERS REFERENCE, THE TWO SONGS JOIN?
keep on spinning round and round yeah

I can only guess
What’s right? Should I stay? - thinking bout i being he, that would mean vedal is the 'enemy'
Three more years - of what?
Just to waste away - who?
Become a slave to all these numbers - NUMBERS REFERENCE, THE TWO SONGS JOIN?
It’s overdue, all this stress - ok again shes been streaming all life
Yet I say I’m fine… - yet he says hes fine wouldnt make sense, lyrics are prob corect
[piano break] - n signifance... right?
Working overtime
Tryna finish this in time - WAIT... before the homocide?
Got myself into this mess - going crazy?
Can we really pass this test, yeah - i not we? would make more sense
XYZ yeah teach me how to breathe - letters mean something
I’m suffocating deep inside
I can’t deny just want to quit - yup neuro wants to leave streaming forever, killing vedal would achieve that
All my life I failed…
To be the one to meet those expectations - which?
All my life I tried…
Now all this stress to fill those answers - yes which answers

ABC finding all these numbers, numbers - NUMBERS REFERENCE (xyz abc)
Integrate differentiate - add in, make different... what could this mean?
It’s getting old, yeah - this should add to that, right?
543 - xyz abc 543 all sequential...
Finding all these numbers, numbers - NUMBERS REFERENCE
Calculate, no mistake - calculate... what?
It’s getting old, yeah - above

#

i cannot share everything

daring acorn
#

nice

rare glacier
#

um lemme upload the txt

#

i did it on the vc

daring acorn
#

i saw

#

:)

warped torrent
#

Day 2 of going schizo

fierce trout
#

has anyone reversed study?

rare glacier
#

i love how i cant type one worddddDDDDBUT I CAN TYPE HOMOCIde

daring acorn
#

have fun going schizo

#

lol

rare glacier
arctic canyon
rare glacier
#

I WANNA HAVE A SETUP LIKE THAT

#

AND ACTUALLY HAVE A COMPUTER THAT DOESNT LAG WHEN RECORDING'

crimson tendonBOT
#

@worn bison has leveled up! (3 ➜ 4)

worn bison
rare glacier
daring acorn
#

genius real

worn bison
rare glacier
#

i am 136 iq but that isnt genius'

worn bison
#

I didn't check it at all today

daring acorn
#

my iq is very low

obtuse basalt
worn bison
#

sorry

rare glacier
warped torrent
#

otherwise yes when i started i did just use the camera as capture

brazen cedar
#

fun !

calm veldt
#

Very weird and general question, but what different kind of engineers are there, and do the lyrics relate to them in any way?

rare glacier
#

Software, hardware, construction'

#

and more

#

ok

#

thats all

#

i know of'

warped torrent
#

what this ARG feels like

obtuse basalt
#

all of which tend to deal with numbers lol

rare glacier
#

YEah

#

and YEah

calm veldt
onyx goblet
obtuse basalt
#

sorry everyone i'm pu

rare glacier
#

punishment i bet you

daring acorn
#

punishment

#

no

#

its pu

#

this arg obviously feels like a pu

rare glacier
digital radish
#

i am super sure its a custom alphabet

daring acorn
#

good theorizing

#

lol

rare glacier
#

i speedran

digital radish
#

most numbers i get from the numbers video are 10 letters long

rare glacier
#

so its not my best

daring acorn
calm veldt
#

Wife bad amirite fellas? KKonaW

rare glacier
digital radish
digital radish
brazen cedar
rare glacier
daring acorn
#

YES

digital radish
#

i might actually decipher that shit

#

hooray

rare glacier
#

what stuff

#

oh the desc

digital radish
#

no

#

not telling you >:(

rare glacier
#

then what?????????!!!!!!!!

digital radish
#

basically the desc

#

its high likely base64 with custom alphabet

rare glacier
digital radish
#

and the numbers are changed

#

i made something in python to do that

#

but python is python

#

and i dont python

daring acorn
#

YES

#

DECIPHER IT

digital radish
#

very well in 1 hour

daring acorn
#

FINALLY

#

we'll get somewhere

digital radish
#

right

obtuse basalt
#

based64

daring acorn
#

wait which part r u decoding

digital radish
#

theres a 50% chance its not that

#

description

daring acorn
#

kk

rare glacier
#

no-one pythons, python is scary it can poison you!!!!!!1!11!!!!!1 (joke)

austere sun
#

btw has anybody noticed there's "=" at the end of numbers desc basically proving it has to be base64

digital radish
#

the study hash has its response in the study video

daring acorn
#

numbers description will finally be decoded (hopefully)

obtuse basalt
#

It's very highly likely that it's an encoded base64, we just don't know how it's encoded for sure

digital radish
#

the = is padding, not reaching the byte treshold

austere sun
#

oh i see, well yeah, that basically discards all ciphers that don't do byte manipulation in some way

obtuse basalt
#

doc points to the possibility of AES but we need some semblence of a key
and tbh I don't know if the lyrics of Numbers is it

daring acorn
#

if we actually get somewhere im going to die

#

in a good way

rare glacier
#

but then you cant get the 1000$ reward for anyone who solves it!!!!!1!!!!1!!1!!1!!!!!

#

(joke)

#

goodbye, imma head off, maybe on later but doubt it

daring acorn
#

I NEED DAT MONEY /j

timid swift
daring acorn
#

have a nice day or night

#

or whatever time it is for you

rare glacier
#

night, im in uk

uncut cargo
#

M? Progress?

digital radish
#

kinda

daring acorn
#

it is not night yet

#

it is

#

evening

rare glacier
digital radish
#

xendy is vedal

#

watch him come online

rare glacier
#

WAIR WHAT=RRR

daring acorn
#

omg vedal

#

can i have ur autograph!!!

digital radish
#

this bitch cant fool is with an alternate identity

#

smh

#

im joking

daring acorn
#

here in the uk its 5:15 pm

#

so yea

#

vedal should teach neuro to play geometry dash /j

#

back on topic

rare glacier
#

YES. YES.

daring acorn
#

XD

rare glacier
#

hehe

daring acorn
#

but yea have a nice evening/night

rare glacier
#

ok actual bye now neuroWave

daring acorn
#

:)

#

bye :C

uncut cargo
daring acorn
#

actually yea true

uncut cargo
#

I'm no AI dev but I can imagine how difficult it would be

#

Since geometry dash isn't just straight forward

daring acorn
#

true but back on topic

#

arg solving

prime chasm
#

James is dead ? NOOO

timid swift
#

he's still with us in color

jade ocean
#

the nitro trial vedal gave me expired

obtuse basalt
#

f

coral hazel
rocky barn
daring acorn
#

lol

#

r.i.p

warped torrent
#

@jade ocean check ur dm

daring acorn
#

my head

#

it hurts

#

anyways arg

#

hmm

prime chasm
rare glacier
#

boo hehehehe

daring acorn
#

omg they're back

#

real

#

its a clue

rare glacier
#

i was bored on gd and osu

daring acorn
#

lol

rough vapor
#

😉

daring acorn
#

ima probably go play modded minecraft soon

manic swift
rare glacier
#

i wanna solve something iwanna solve somethng'

manic swift
#

Ask him to give u a year of nitro

daring acorn
uneven rune
timid swift
#

It's in the tools document

daring acorn
#

its ok i got an arg word search

#

jk

uneven rune
#

ah is it alreadY?

timid swift
#

if you got any other good tools please do dump them there <3

austere sun
warped torrent
daring acorn
#

i've never seen chatgpt spurting out slurs before

#

lol

#

bro prompted chatgpt to rewrite numbers

rare glacier
#

dev mode ._.

native maple
#

thats just jailbreaked chatGPT

#

you could literally ask it anything like cooking drugs

warped torrent
daring acorn
#

how do i jailbreak chatgpt

#

though

#

i've never been able to even with those prompts

#

it tells you to use

native maple
#

look up on internet but you can fo example ask it to play a character and tell him the personality of that character and that he needs to answer you as that character not as chatgpt

warped torrent
#

do we have other interpretation for ABCDEFG

native maple
#

yes

warped torrent
#

that one is a little far fetched

rough vapor
daring acorn
#

dan doesnt work no more

rough vapor
#

🤔

daring acorn
#

i tried it recently

#

on chatgpt

native maple
#

you can also just check the reddit for chatgpt they use jailbreak a lot

daring acorn
#

hmm

desert tusk
timid swift
#

So are a lot of long shots. We shouldn't shoot down people's contributions

native maple
#

it was just the only other interpretation available on the drive

latent pelican
#

im gonna assume everyone has already seen the comment by HIADMIN?

daring acorn
#

i have not

native maple
#

no

daring acorn
#

which vid is it on

latent pelican
#

uh how do i link to comments?

rare glacier
#

did we figure out numbers?

warped torrent
desert tusk
daring acorn
#

unless no image perms

latent pelican
#

numbers

#

no image perms

dapper wraith
#

This one?

Abcdefg is a cipher. I solved it and got "baedcfg", but I think it's "badcfg". So, in solving the second puzzle, which we see throughout the video, Neuro talks about numbers and the final result. If you solve the equations, you get 645. Here's the cipher "DQ5z14ighWwiag7y+cWFQg==" I managed to decrypt it and got the following words: "hi, wish, dag, sighs, if" but I think it's possible to form the following sentences: "Hello, if you feel like it, put on a wig, Desire evokes a sigh of greeting, If you have a wig, express your desire, A sigh of greeting is a desire to see a wig.

crimson tendonBOT
#

@dapper wraith has leveled up! (2 ➜ 3)

latent pelican
#

yeah

rare glacier
#

DID we figure out numbers

daring acorn
#

lol

rough vapor
#

holy

#

🤯

azure jasper
latent pelican
#

from what i understand thats the base64 in study though?

rare glacier
#

so we didnt find numbers answer

latent pelican
#

atleast i found that comment looking ctrl f-ing the base64 i saw in the comments there

rare glacier
#

ok so where we at on numbers

#

nowhere ok bye

daring acorn
#

no numbers yet

slow shuttle
#

How'd they even get 645?

languid swan
#

more details plz

timid swift
surreal nymph
#

Did anyone ask neuro about wigs

timid swift
#

There's a section in the docs about asking people, do check it out

fierce trout
#

did you guys ever tried asking chatgpt for answers?

timid swift
#

there really SHOULD be a section about chatGPT at this point. And to not use it to try to solve this. It's too hard for the poor machinebrain

fierce trout
#

poor AI

steady fossil
daring acorn
#

lol

wicked sapphire
uncut cargo
#

Tho again in here we are trying anything in any way possible

daring acorn
#

funni arg

#

i need friends ;-;

#

anyways back to arg

#

idk what to do that is my analysis

worn bison
#

Hi guyss

#

I haven't been in discord for about 6 years until last month, and now I'm so uncomfortable using it((

#

I'll come home and read our files and think

azure oyster
#

Any progress?

#

I can probably guess the answer, right?

daring acorn
#

0

azure oyster
#

yeah thought so

worn bison
worn bison
#

Maybe there will be a secret stream in 40 minutes

azure oyster
#

i hope not; i have a meeting at 3

worn bison
#

If he is not there, I will find Vedal, kidnap him and torture him for the sake of clues

misty dirge
#

I do ask, has anyone tried answering the numbers in the form of the Fibonacci sequence? Like 572943 could be 0-5-7-2-9-4-3?

azure oyster
#

0+5=5
5+2=7
7-5=2
2+7=9
9-5=4
4-1=3

#

hm

worn bison
misty dirge
azure oyster
#

i know

#

just experimenting with other stuff

misty dirge
#

The lyrics provide steps with the given numbers

#

If at the end it matches then maybe

azure oyster
#

it's probably a coincidence but the middle few equations only use numbers which are used as digits in 572943

misty dirge
#

It's just speculation

azure oyster
misty dirge
#

Cuz it would explain the "add another line yeah"

azure oyster
#

how do you imagine we use the fibonacci sequence, though

worn bison
#

30 mins until the "secret" stream

misty dirge
#

Well, "Add another 9 yeah, add another line yeah"

0-5-7-2-9-4-3
9-14-16-11-18-13-12 (add another 9 yeah)

Row 1: 9-14-16-11-18-13-12 (add another line yeah)
Row 2: 9-14-16-11-18-13-12

"Multiply by 5 yeah"
Row 1:45-70-80-55-90-65-60
Row 2:9-14-16-11-18-13-12

#

I can be confident to say I'm probably wrong

#

I just wanted to put another idea in the bowl

azure oyster
#

but that skips a bunch of instructions

#

like "start with number 2"

worn bison
#

the stream must be aaa

eternal timber
#

Wtf does "matching all the letters" and "add another line" mean angery

golden ravine
#

just match the letters

misty dirge
#

If a bunch means the first line, I will just say that I have no idea since I have no idea how to apply that in the use of the Fibonacci sequence

azure oyster
#

572943 converted to letters is FGBACG; maybe that is a melody from some song

misty dirge
azure oyster
#

oh wait no i just copied that from the doc

#

doyee

#

i don't know how they got that now that i realize that 9 isn't a valid musical note

#

unless it goes up an octave

misty dirge
azure oyster
misty dirge
#

Yea me neither

azure oyster
#

so it would actually be, uh

#

EGB(B +1)DC

daring acorn
#

lol

#

idk anything im dumb

azure oyster
#

time to try to play that in fl studio

#

i haven't used this since i left the fnf community aubrey_neutral_180

daring acorn
#

as a member of the fnf community myself i can confirm leaving it was a good idea

#

its hell

#

drama everywhere

azure oyster
#

yep

rain flame
#

Do anyone actually do any progress on the Arg?

azure oyster
#

nope

daring acorn
#

no progress atall

#

sad

rain flame
azure oyster
#

i'm currently doing something which will probably be a dead end

daring acorn
#

well good luck

timid swift
warped torrent
#

i drew everything out

#

that's about it

azure oyster
timid swift
#

lmao

#

What I was trying to say is that success is unlikely but we gotta keep going

misty dirge
#

I think saying "we have no progress" is just being dull on what we speculate

#

I mean everything on the drive and docs came from speculation and immediate evidence

timid swift
#

We have a lot of speculations but I don't see much new info in the drive

warped torrent
misty dirge
#

Cuz not much write on it

rain flame
crimson tendonBOT
#

@rain flame has leveled up! (5 ➜ 6)

daring acorn
#

we need to keep believing in ourselves guys

crimson tendonBOT
#

@daring acorn has leveled up! (12 ➜ 13)

daring acorn
#

we can do it

#

i am motivation

misty dirge
#

It's good to have ideas so that when one is debunked in can widdle down the possibilities and that can count as "progression"

azure oyster
#

yeah this doesn't really sound familiar at all

#

for anyone who is wondering what the file is, it's 572943 converted to letters and then to music

daring acorn
#

lol

#

nice

azure oyster
#

i also tried doing what we did for the description of Numbers but on the Study video to see whether there was anything more in the description

#

and there was nothing

daring acorn
#

damn

timid swift
azure oyster
#

question: is vedal in the static-sama thread

#

that could help determine whether static-sama is legitimate

golden ravine
#

vedal is only in this thread

azure oyster
#

hmm

#

there is the possibility that he doesn't know about the other thread too

#

but i don't know

arctic canyon
#

Bro gonna right out the sheet music

worn bison
#

No "secret" stream???

dapper wraith
#

does any streamer ever make sure their schedule tab is up to date? neurOMEGALUL

azure oyster
#

it is up-to-date
momoko is just delusional aubrey_neutral_180

golden ravine
#

neuro is streaming right now

#

secret tier 3 stream Clueless

azure oyster
timid swift
#

yes, imagine being the puppetmaster and stalking your players from your main account that they know belong to you NeuroClueless

glad horizon
#

Really good work today

not on the arg though

daring acorn
#

ye

#

lol

worn bison
azure oyster
#

you know what would be useful

fierce trout
#

guys have we done anything with

daring acorn
#

lol

#

hmmm

#

A CLUE

azure oyster
#

if vedal accidentally leaked something from his pc again and it included hints about what he used to encode the ARG stuff

fading cipher
#

hello fellow engineers finally home time to play around some esoteric code

manic swift
#

Schizo schizo

#

hai i'm awake

unique mason
#

i dont want to promise anything but i thought of an idea. Im too sleepy to act on it so ill talk more tmr

azure oyster
#

no don't

#

i know this situation

azure oyster
#

having a really good idea just before bed

unique mason
daring acorn
#

lol

unique mason
azure oyster
#

but you're too lazy to act on it or record--

unique mason
#

but imma go cause im super sleepy

azure oyster
#

oh okay

#

so you did record it

daring acorn
#

we actually need to get something done this time..

azure oyster
#

hopefully you'll understand what you wrote in the morning

unique mason
#

probably a bunch of schizo stuff pain

daring acorn
#

LOL

fierce trout
#

why does the automated subtitles for Study on 2:30 spam ha ha ha ha ha

onyx goblet
fierce trout
#

thank you on 3:05

daring acorn
#

lol

fierce trout
#

guys im so schizo rn

#

omg

#

for some reason it keeps saying thank you on random times

daring acorn
#

its thanking you for watching it

#

you should appreciate it

fierce trout
#

i guesss

uncut cargo
#

Void sama is just testing us

#

We shall be followers of the New order

fierce trout
#

yes

onyx goblet
uncut cargo
#

...

#
  • We shall be engineers of the New order
exotic otter
obtuse basalt
exotic otter
uncut cargo
#

Followers of the dead point

onyx goblet
vast yoke
#

If noone attempting to decypher numbers in TempleOS, then we're still just fooling around.

daring acorn
#

I NEVER WANTED YTO BE AN ENGINEER

uncut cargo
maiden wigeon
#

Guys...
I want to be an Engineer voidSama

onyx goblet
dapper wraith
#

Guys! Maru = static sama NeuroClueless

obtuse basalt
maiden wigeon
daring acorn
#

lol

fierce trout
#

guys before im going to waste an hour of my life overwriting the automated subtitles for Study , is it going to be worth it?

light arch
#

it's 7tv emote id, better not look it up

crimson tendonBOT
#

@light arch has leveled up! (3 ➜ 4)

light arch
#

ReallyGunPull Tatsu

uncut cargo
#

Never heard of that one

fierce trout
#

doxxed

uncut cargo
daring acorn
#

lol

fierce trout
#

lol

daring acorn
onyx goblet
daring acorn
uncut cargo
#

I don't see anyone laughing voidSama

worn bison
daring acorn
uncut cargo
#

We are slowly going from being schizo to being danger to society

daring acorn
uncut cargo
daring acorn
#

lol

#

i am very dangerou

uncut cargo
#

You won't win internet arguments like that

calm parrot
#

Okay. This is just becoming completely disorganized

light arch
#

1337 < decode this, hackermans

uncut cargo
#

Static sama and numbers cracking are actual working channels, this one is straight up asylum

calm parrot
#

My personal 2 cents are that we probably won’t progress any time soon unless we eventually get a hint, or somebody has a eureka moment

light arch
#

i numbers they are mostly bruteforcing

dense cave
#

hello, still no progress?

calm parrot
#

Yeah, if numbers gets a breakthrough it might unstuck everyone esle

daring acorn
calm parrot
#

But at least numbers are actively working towards something. Study crew seems pretty aimless rn

uncut cargo
#

STUDY

dense cave
uncut cargo
dense cave
onyx goblet
dapper wraith
calm parrot
#

Yeah, that’s what i mean

dense cave
uncut cargo
#

We will find the answer through Faith in void sama voidSama

calm parrot
#

I feel like unless some sort of clue gets indirectly dropped by vedal, or somebody has a sudden Eureka moment, it’ll probably be a while before progress gets made.

But patience is key

worn bison
past grove
#

Honestly, i think brute forcing will happen earlier than we stumble over it randomly.

wicked sapphire
calm parrot
#

Yeah, patience is key.

worn bison
dense cave
#

1984

calm parrot
#

Maybe if we go another week without getting anywhere Tutel will take pity on us

uncut cargo
past grove
#

Study answer it already

#

3 years

calm parrot
#

So true

uncut cargo
#

Only

past grove
#

wasting away, being a slave to all these numbers.

onyx goblet
past grove
#

I think Vedal clearly knew what he did

uncut cargo
#

I can't imagine how hard he must be laughing looking at most insane and impossible ideas we have

calm parrot
#

Alternatively the word about the ARG could spread. There’s still relatively few people working towards solving the ARG at the moment, so more people participating from the word spreading would probably also be helpful

daring acorn
#

yay arg

past grove
#

I am not sure what his reactions are.
Maybe a mix out of confusion and pure laughing.

It really stings me that i'm still not sure about some part in the numbers lyrics

uncut cargo
#

I hope after this gets solved someone will make compilation out of it

#

Just so we can laugh it off

past grove
#

I think Numbers and Study are only the intodruction to the ARG

fierce trout
#

This is what i've got for now

0:04 to 0:13 "I don't want to be an engineer I tried so hard and got so far and now I can't divide all my life I've given my career these numbers"
0:18 to 0:22 "what's right should a day three more years"
0:28 "I'm fine"
0:57 to 1:01 "to be the one to meet his expectations"
1:23 "numbers"
1:55 "in my career"
2:23 "ha ha ha ha ha"
2:29 "ha ha ha ha ha"
2:32 "ha ha ha ha ha ha ha ha ha ha ha ha ha"
2:36 to 2:47 "I don't want to be an engineer I tried so hard and got so far and now I can't divide all my life I've given my career these numbers"
3:04 "thank you"
3:14 "we're looking over time"
3:55 to 4:00 "what's right should I stay three more years"
4:32 "thank you"
4:33 to 4:37 "I'll keep myself from falling down"
4:59 "thank you"
5:27 "I'm fine"
5:55 to 5:57 "all my life expectations"
6:22 "anxiety"
6:46 "inside"
7:04 to 7:09 "somehow I've fallen down again"
7:18 to 7:23 "I can't keep myself from falling down"

#

these are from the automated subtitles for study

timid swift
#

If you wanna add timestamps to the docs that's not a bad idea

past grove
#

Could maybe need some timestamps.
But even then, i think study was almost finished ?

fierce trout
#

i though of that there where maybe clues in the subtitles

#

im currently just copying them

#

ill wait with editing the doc

calm parrot
past grove
#

Those are propably the ones that bother me the most in Numbers :

"Finding all these numbers"
"Add another line, yeah"
"Add the numbers 2 4(might be “to”) 4"

#

The first line means either we should have already numbers or that we get more than one number out.

The second line i am unsure what line means. Is it just a "-" or is it just a sign we start a new number and the seperator is unimportant.

And the third. Well yeah I understand add the numbers to the four. Which would mean that we should add the numbers to the 4th number ?

worn bison
past grove
#

I mean this ARG seems kinda normal so far

gloomy yew
#

"Only people who abandon their sanity are destined to succeed" should be a motto of the ARG

past grove
uncut cargo
past grove
#

Evil Neuro should be Void-sama

uncut cargo
#

May I interest you in our Lord void sama voidSama

worn bison
uncut cargo
#

We'll have to wait and see

past grove
#

Or Evil Neuro und Neuro are both secretly possesed by Void-sama

#

Would be interessting when both their eyes flickered voidSama

timid swift
gloomy yew
# uncut cargo I haven't seen you before here

I'm observing it mostly, my only actual attempt of contribution here was the idea of letters and numbers in study video referring to Pythagorean Theorem and that sollution to the numbers video might be a sum of two numbers as it's basically how fibonnachi code loops

uncut cargo
#

Nice

manic swift
#

traffic reaction

uncut cargo
daring acorn
#

isnt evil neuro just another instance of neuro opened up on vedals pc

#

but just linked to a diffrent model of neuro with different colored eyes

past grove
daring acorn
#

true

uncut cargo
#

Yeah after all you can't copy a soul

daring acorn
#

maybe evil neuro is nice neuro

uncut cargo
daring acorn
#

:o

#

ITS SWAPPED

past grove
#

Neuro instantly filtered the shit out of Evil Neuro was the best thing

uncut cargo
#

My theory take on this, actual neuro is alive, evil neuro is just programming copy

gloomy yew
#

I don't have experience with ARG's and only few days ago I've discovered AES exist. The only thing I think I get about AES encryption is that it works like messing up the large, complex rubik cube with each square having a data unit on it so decrypting it is painful af

glossy grotto
#

That one and "add another line" are so open to interpretation it makes me not want to even try to figure it out

fading cipher
hollow garnet
#

probably

fading cipher
#

nvm i`ll check just to chill my schizo

daring acorn
#

how 5head was vedal to make such an ARG

#

do we really have to think this deep?

hollow garnet
#

I feel like we've missed something obvious neuroCry

gloomy yew
#

the problem f.e with numbers video is that there are tens of possibilities of how to approach the riddle so it's hard to guess which direction is the right one

past grove
fading cipher
uncut cargo
#

I really hope the karaoke stream didn't have any clues

past grove
#

The main problem is that we lacking is lyrics which aren't in focus almost daily, because some understand something else.

gloomy yew
#

and probably after we solve the riddle we'll be like:

uncut cargo
past grove
glossy grotto
past grove
crimson tendonBOT
#

@past grove has leveled up! (7 ➜ 8)

glossy grotto
#

Ahh yea, if only we had official lyrics. It's no fun when the puzzle is more understanding the question than figuring out the answer

daring acorn
#

true

calm parrot
#

Yeah

daring acorn
#

Alright completely different message here, but in regards to the subject of this thread often being off topic and difficult to sort through for more serious things. Perhaps people can add a tag to their message if they have something they see as important to say? That way it can be found quicker by just searching for the tag in this thread.

#

It might also help ease @copper vault and his SCHIZO

junior atlas
# past grove The main problem is that we lacking is lyrics which aren't in focus almost daily...

I think the problem is also that we don't know for sure how to use number (or number and letters) that we can find with lyrics. That is why we can't be sure if the answer is right or not. If it had been a meaningful text, we would understand if our guess is right or not (we would check if the text makes sense). But with numbers and sequences (like in lyrics problem or in eye flitter problem) we can't be sure until we use it for something

crimson tendonBOT
#

@junior atlas has leveled up! (1 ➜ 2)

glossy grotto
#

I think this chat has mostly become a general discussion thread for the arg while #1112401279680008242 is where the actual solving happens

junior atlas
#

True

daring acorn
#

true

fierce trout
#

rename it to ARG Asylum

copper vault
past grove
manic swift
#

Neuro arg is crazy

fierce trout
#

make a reddit 😄

manic swift
#

i can't even do super reaction

daring acorn
junior atlas
daring acorn
azure jasper
fierce trout
#

i relate because it was hard to try to keep up with whats happening

#

i still dont btw

timid swift
#

The way I see it, you're not nessesarily supposed to be on top of chat. It's chat. Ephemeral. If we discover something it goes in the docs

glossy grotto
#

Tbf, most ARGs are hard to catch up with. Good documentation usually doesn't exist until after the fact

daring acorn
#

True

glossy grotto
#

the docs are indeed the best we have atm, it's pretty well structured

fierce trout
#

this feels like a school project smh

daring acorn
#

We still aren't sure how deep this rabbit hole goes yet either, as it hasn't even been a month yet since it was discovered.

crimson tendonBOT
#

@daring acorn has leveled up! (3 ➜ 4)

cobalt canyon
#

just keeping up with the arg because I want more bangers. Study is great background music(cut until fall down)

daring acorn
#

Really is a banger

cobalt canyon
#

hopeful he made more these kinda clue of banger music

daring acorn
#

Calming yet painfully relatable.

worn bison
#

Good night?

fierce trout
#

ive tried looking for secret accounts on twitter by looking through the list of who vedal follows and found a weird user called @tuntap1

worn bison
daring acorn
#

I can just imagine Vedal typing in chatgpt "Give me lyrics about university stress, blah blah engineer blah blah, etc..."

uncut cargo
daring acorn
past grove
daring acorn
#

What if...those aren't the full instructions

calm parrot
#

Yeah having official captions on the videos would go a long way

past grove
cobalt canyon
#

now all I wish is for I saw a ghost part to get a full version. The creepy cut blueballs the climax so bad

past grove
#

"``Working overtime
Tryna finish this in time
Got myself into this mess
Can we really pass this test, yeah
XYZ yeah teach me how to breathe
I’m suffocating deep inside
I can’t deny just want to quit
All my life I failed…
To be the one to meet those expectations
All my life I tried…
Now all this stress to fill those answers

ABC finding all these numbers, numbers
Integrate differentiate
It’s getting old, yeah
543
Finding all these numbers, numbers
Calculate, no mistake
It’s getting old, yeah

I can only guess
What’s right? Should I stay?
Three more years
Just to waste away
Become a slave to all these numbers
It’s overdue, all this stress
Yet I say I’m fine…
`"
This part could mabye part of the instruction too, but how could we implant them in Numbers.

daring acorn
fierce trout
daring acorn
#

Wonder what the bpm is on that song

past grove
past grove
cobalt canyon
#

looking at it really hard to see simple solutions. not big head enough to do the complicated stuff so really trying to check if theres a simple stupid part of the puzzle people overlook

timid swift
#

smooth brain goes brrrr enough and we'll probably bump into the answer. Keep at it

junior atlas
#

2 and 3 parapraphs that @past grove sent almost describe those who try to solve the ARG

timid swift
#

ye, the study lyrics feel like they're about us

desert tusk
past grove
#

Yeah, but i wonder if there is some things that could be used for numbers Thinkpitz
And if yes, where in numbers ?

desert tusk
#

or just study how HTML and CSS works

cobalt canyon
fierce trout
#

i like neuro sama arg

uncut cargo
#

stop the cap

desert tusk
#

after a week solving neuro arg annySCHIZO

fierce trout
#

i hope we get link a link to vedals face reveal or something when we solve the puzzle

uncut cargo
#

"...day 7: Every member is past point of insanity"

#

Wha de hel

spark loom
#

everytime i check here its people going schizo

uncut cargo
#

Guess Im considered dangerous now

quaint swallow
gloomy yew
#

fun fact: all command lines in the numbers video consist of 6 sylables

uncut cargo
#

when I become engineer I shall leave this weak flesh

desert tusk
fierce trout
#

plot twist engineer is actually a higher ranking rank in 'The Hive'

timid swift
#

I wonder how long people will last without progress, tho voidSama

past grove
#

Could be. Maybe this is all a test for Neuro-sama to find engineers who will build her drones

fierce trout
#

explains the numbers

#

we have to figure out math

uncut cargo
daring acorn
#

hi guys

#

did i miss shiz

#

i gues not

azure jasper
#

progress? in this thread? lol

daring acorn
# fierce trout i hope we get link a link to vedals face reveal or something when we solve the p...

Or it's just a link to this video lol

https://youtu.be/dQw4w9WgXcQ

The official video for “Never Gonna Give You Up” by Rick Astley

‘Hold Me In Your Arms’ – deluxe blue vinyl, 2CD and digital deluxe out 12th May 2023 Pre-order here – https://rick-astley.lnk.to/HMIYA2023ID

“Never Gonna Give You Up” was a global smash on its release in July 1987, topping the charts in 25 countries including Rick’s native UK and...

▶ Play video
languid flax
#

Shiz here and no more update?

calm parrot
#

Yeah imagine if it all lead to a rick roll.
Hahahahah that would be so funny neuroMad

azure jasper
#

if is a rickroll I may or may not commit warcrimes

languid flax
#

Come on guy we will never lose to this arg

cedar thistle
azure jasper
#

we might've lost our sanity, but we will never lose our determination

fierce trout
#

maybe we should stay three more years just to waste away

#

get it?

#

like in the song

#

haha

#

like it will take 3 more years for us to solve it

onyx goblet
#

yea and get engineering degrees

crimson tendonBOT
#

@onyx goblet has leveled up! (5 ➜ 6)

paper edge
#

people have tried shifting the index of A i'm assuming

#

like when she says "start with 2" A=2 b=3

uncut cargo
fierce trout
#

have we tried every secret language

paper edge
#

i also tried messing with starting with "line" two

#

making / the new line

#

i got nuthin

cobalt canyon
#

So whats your guys dumbest trail youve tried to follow?

timid swift
uncut cargo
fading cipher
paper edge
languid flax
uncut cargo
#

true its a weird coincidence...

#

actually what am I saying

#

Go for it

#

not that we have any better leads

timid swift
uncut cargo
fierce trout
crimson tendonBOT
#

@fierce trout has leveled up! (12 ➜ 13)

uncut cargo
fierce trout
rocky barn
uncut cargo
#

AAAAAAAAAAAAAAA

#

I doubt it

#

but at the same time

#

ANYTHING IS POSSIBLE

fierce trout
#

i think youre going crazy

azure jasper
digital radish
cobalt canyon
daring acorn
#

Dammn..

solid horizon
#

The most you'll get about his background is his website

fierce trout
#

maybe hidden links on there?

daring acorn
#

true

timid swift
#

yee, that's given freely, but even that is not part of the ALTERNATIVE reality game. :p

daring acorn
solid horizon
#

Pretty sure early on people did go there and as far as I recall nothing was found

copper vault
crimson tendonBOT
#

@copper vault has leveled up! (9 ➜ 10)

austere sun
fierce trout
cobalt canyon
fierce trout
#

we can find his house and search his pc for clues

copper vault
#

Also good luck finding Vedal when there are over 170k people named Jack in the UK

cobalt canyon
#

Unless it does. Tbh some ARGs Ive seen have gone to stupid length thats beyond reasonable. Presumably, vedal is reasonable

austere sun
# copper vault

well this includes jacks born after 2006 which wouldn't even be 18

desert tusk
#

good luck finding a specfic person with only his first name in a country with a 67 million population

paper edge
#

i don't think you have to doxx to figure this out guys come on

#

that's ridiculous.

uncut cargo
#

We can't dig below bedrock

solid horizon
#

Yeah, I don't know where this line of reasoning came from

copper vault
#

I was just saying and showing how ridiculous the idea of doxxing is

digital radish
#

bad news

#

not custom alphabet

daring acorn
#

sad

paper edge
#

You're also all assuming it's about vedal, maybe it's about airis or something. if i was vedal i wouldn't go too much into my private details.

copper vault
#

(I assume, I didn't read chat for the whole day)

cobalt canyon
azure jasper