#terraria-pc

1 messages Β· Page 720 of 1

final hull
#

how do i get the aether pylon guys?

vivid bolt
#

Has noSpiderCavesILiedMoreSpiderCaves been found yet?

neat nova
#

ill try this in a bit when my meeting is done rofl

final hull
#

how to get aether pylon?

coarse igloo
#

build at the aether

#

get an npc who likes it

neat nova
#

@vivid bolt

craggy mural
final hull
coarse igloo
#

my guess would be wizard?

craggy mural
final hull
#

who does like wizard?

wooden perch
craggy mural
#

Can confirm, does not work on Arch

neat nova
coarse igloo
#

or steampunker, she had the pylon next to her in the trailer

uneven python
#

conclusion to my Research, no one is getting Catira or FoxFire on a normal run or there is some obscure mechanic behind the encounter ,______

final hull
#

man i cant buy aether pylon

#

they keep selling cavern

uneven python
neat nova
#

would the chunk limit also explain why blocks disappeareds if you tried building in the missing chunks

uneven python
#

drop any pylon in shimmer

neat nova
#

the blocks would stay for like 10-20 seconds and then just break

craggy mural
#

Happens when you use a storage mod and load up the storage system with a loooooot of items too

#

Had to load the map in singleplayer and split up the storage into multiple chunks for the chunk to appear again on server

#

Maybe someone accidentally published a version with a lower boundary for that to trigger

neat nova
#

nvm just tried it again on the steam version

#

it breaks there too

craggy mural
#

also in singleplayer?

neat nova
#

ill check again to make sure, it seemed to work properly yesterday

#

yeah singleplayer works

craggy mural
#

Then chunk data might be too much or it somehow contains something servers cant handle yet

neat nova
#

even if you load the "broken" world genereated on the server

#

if you load it in singleplayer it then works properly

craggy mural
#

Yeah the server cant handle the chunk then xd

neat nova
#

ggs

#

wonder where that is set

#

if you can just bytepatch the server to support it

craggy mural
#

I would look but do not have the source

obtuse falcon
#

how to make world with very long dungeons?

craggy mural
obtuse falcon
#

😭

craggy mural
#

Otherwise "dual dungeons"

neat nova
#

I tried searching for things like "ChunkLimit" "Limit" etc but couldnt really find relevant stuff

craggy mural
neat nova
#

ill have a look

craggy mural
#

What are you using to inspect the code? Id like to also see for myself

neat nova
#

dnSpy

obsidian latch
#

ILSpy

#

its pretty easy to decompile the game using it

neat nova
neat nova
craggy mural
#

Oh its a VS extention

#

Unfortunate

obsidian latch
signal lantern
#

game wont launch on pc, previously working, just trys to start and just fails, any tips? already uninstall reinstall and verified throuhg steam, im stumped.

neat nova
craggy mural
#

Ilspy works on VSC nice

graceful hazel
#

rahhh

obsidian latch
gray shale
#

Spinal tap or meteor whip what’s better?

coarse igloo
#

what's the meteor whip's bonus again

halcyon geyser
craggy mural
#

@neat nova its using the "NetMessage" class to do the data transfer but uh

#

Holy smokes

halcyon geyser
neat nova
craggy mural
#

3000 lines and a MASSIVE switch case

#

Cases are just ints

obsidian latch
#

the worldgen code gave me a heartattack

craggy mural
#

Lmao "sendWater"

neat nova
obsidian latch
#

if if if if if if if...

craggy mural
#

Oh its "SendSection" not "SendChunk"

neat nova
#

at least for c++ binaries

craggy mural
#

SendData case 10

#

Oh good heavens

modern saffron
granite stump
craggy mural
#

Going all the way to the socket I can not locate any explicit limits @neat nova

neat nova
#

actually im playing on the same world and dedi server I did yesterday now (that worked completely fine yesterday)

#

but now its broken after restart

#

what the fuck lmao

craggy mural
#

I have a slight guess

#
public const int readBufferMax = 131070;
public const int writeBufferMax = 131070;
#

This is part of the MessageBuffer class

neat nova
#

interesting

craggy mural
#

This is the class written to for all the data compression

neat nova
#

question is if those are "hardcoded"/compiled inline elsewhere, like when creating some data objects

#

or if it'd be fine to just change them

prime imp
neat nova
#

what the fuck

coarse igloo
#

was there any changes to luck related stuff this update

craggy mural
#

This is the only space where I can find any reference to this and it seems to handle basically all netcode messages

craggy mural
#

I doubt its the netcode then

neat nova
#

its running on a beefy PC

craggy mural
#

Hosting via steam should use the same logic

neat nova
#

ill try a different host machine i guess

craggy mural
#

And I was hosting yesterday so

neat nova
#

yeah I was too, and it was broken at first

#

but then it suddenly started working

#

it shouldn't be my net setup because im playing localhost

#

super weird

#

Host & Play works fine it seems, at least for me when I'm the hoster

halcyon geyser
neat nova
craggy mural
#

Host and play via steam

neat nova
#

yaeh that seems to work properly

#

its the dedi that's just borked

craggy mural
#

But it should use the same class to transfer

neat nova
#

You would think so

coarse igloo
#

can you MAKE mob statues?

craggy mural
#

I hope the raw ints are just a symptom of a decompile

neat nova
craggy mural
#

Otherwise that seems like a very fun codebase

neat nova
#

/constexpr variables

craggy mural
#

It could also just be an enum that was reduced

neat nova
#

131070 is 2^17

craggy mural
#

I meant more the big switch case

neat nova
#

ahh

#

yeah

#

probably a symptom of compilation lmao

craggy mural
#

I hope so for the sake of the devs mental health

grand solar
neat nova
#

well, its close enough

grand solar
#

not in base 10, anyway

grand solar
neat nova
#

might just be 2 bytes reserved for some type of header or similar

#

doesnt really matter anyways

craggy mural
#

Its 65535 * 2

#

Which is curious

#

the highest value of a ushort * 2

#

I would not be surprised if it was just ushort.MaxValue at some point and that was not enough in some cases

#

and they just went "yknow what, double it"

neat nova
#

LOL

#

honestly a good guess

#

hilarious

craggy mural
#

Something I would totally do

#

Netcode is always super impressive to me

wary basin
#

Is the perma christmas seed not permanent? Just got a message saying the spirit of christmas has faded, implying its over

obsidian latch
hearty zealot
#

Does anyone know the radius of the crafting from nearby chests

neat nova
#

so im not sure how the c# compiler acts

craggy mural
prime imp
craggy mural
#

It is honestly interesting to me how many magic numbers there are

#

Like a very odd chest limit of 8000

#

I always wonder how those kinds of values come to be

neat nova
#

its crazy how they just dont just use like Main.chests.size

mighty fjord
#

YO can I please play terraria wit sb? i wanna play it but not alone

neat nova
#

null-terminated chest array is hilarious

mighty fjord
#

its pretty depressing alone

#

PLEASE bru jesus christ

viscid sand
obsidian latch
craggy mural
halcyon geyser
obsidian latch
#

like its still the 90s and IRC is the only way to communicate

craggy mural
#

If I had the time I woould love to look at the data compression code for some things because I do really wanna know how item data is sent over

neat nova
obsidian latch
#

ah thank goodness

viscid sand
obsidian latch
#

i was about to ask what lgfb is then realised

#

I also kinda prefer to call it Zenith over getfixedboi

queen orbit
#

did you get help with your problem?

obsidian latch
#

zenith sounds cooler

craggy mural
#

And yknow what, it works so why change it

neat nova
#

That uh, doesnt seem too efficient

craggy mural
#

To be fair

#

Its far less data than like the chunk data

delicate whale
#

Any new found since 27 (negative infinity)?

neat nova
#

Does TrySendData add it to a queue and send it in batches? or does it actually send a packet for each item

obsidian latch
delicate whale
#

Oh shoot whatd we get?

obsidian latch
#

.5 is the mobile dualdungeon seed

viscid sand
#
Terraria Wiki

Secret world seeds are world seeds that, when used, generate a modified world. Unlike special world seeds, secret world seeds do not appear on the world seed menu and must be input manually in the seed selection. Secret world seeds can be combined both with each other and with all of the special world...

obsidian latch
#

we found echopaint surfaceinfection and a few more

#

here's the mandatory list response

delicate whale
#

fishmox??

craggy mural
obsidian latch
#

apparently

#

thecarebearsmovie makes sense but my god

delicate whale
#

Okay that one makes a bit of sense

obsidian latch
#

what an obscure reference

delicate whale
#

Invisible plane god why didnt i try that

#

So close

craggy mural
obsidian latch
#

my guess that comes from cactus' dictionary attack

delicate whale
#

Desert and Dungeon still evading us?

obsidian latch
#

unfortunately yea

#

dungeon is a .5 since we kinda do and don't have it simultaneously

delicate whale
#

Invisible plane could be both a superhero reference like xray vision, but also the 'plane' of existance being invisible

#

Man hopefully someonell crack it

craggy mural
#

Same

delicate whale
#

I mean with Carebears now here it seems like we've got a good timeframe for movie references

obsidian latch
#

carebears is ancient

delicate whale
#

Im so happy extra floating islands was found though Ive been wanting that

lilac spear
#

do trees actually drop less wood now?

obsidian latch
long frigateBOT
delicate whale
#

But we also have Night of the living dead and beam me up

obsidian latch
#

< literally hasnt played since the update (just seed maintaining)

delicate whale
#

As well as royal with cheese

obsidian latch
delicate whale
#

All references from the mid to late 1900s

obsidian latch
#

all of startrek

#

that does help actually

#

Zelda 2 with iamerror

delicate whale
#

Since carebears also fits that, being 1980s, we could start looking there for desert and dungeon

obsidian latch
#

castlevania with WAHNTHAC

humble owl
#

anyone try covid related things for the world is infected seed?

obsidian latch
#

not really

humble owl
#

social distancing maybe

delicate whale
#

How on earth did we get fishmox though?

humble owl
#

no bloody clue πŸ’€

obsidian latch
#

fish - word
mox - word
conclusion:
cactus' dictionary attack

delicate whale
#

Ahhh

obsidian latch
#

@sharp cape is this true?

craggy mural
#

What other desert series are there outside of dune

delicate whale
#

That makes sense, fishmox also a broad spectrum for antibiotics for animals and an aquarium cleaner

#

We're looking for desert references from the mid to late 1900s, think 1980s stuff

obsidian latch
#

i'd love if "thegovernment" was like the infected seed

#

in reference to those "you're telling me the government is corrupt?" and then putting a purple filter over the whitehouse

delicate whale
#

And you know what the issue is-
Yeah Dune is from the 1980s

#

So is Mad Max

obsidian latch
delicate whale
#

Anyone tried anything from Lone Runner?

obsidian latch
#

nope

delicate whale
#

Wait what about Raiders of the Lost Ark as well?

craggy mural
#

The corrupt one could also reference the dryad

obsidian latch
#

whydidithavetobesnakes

delicate whale
#

Ill start trying references from both

neat nova
#

@craggy mural ive done some more testing, it might be my box or windows version that breaks it

#

everything works perfectly on Win10 and Win11 25H2, but on my 24h2 box it doesnt work

obsidian latch
outer zodiac
#

im back, any new seeds?

obsidian latch
outer zodiac
#

dangit

delicate whale
#

Trying out Raiders of the Lost Ark/ Lone Runner references

outer zodiac
obsidian latch
#

current search is on desert

obsidian latch
#

lmao

#

i can't react so i respond with an emote

delicate whale
#

Indiana jones honestly feels like a good avenue

obsidian latch
#

there's also laura croft

delicate whale
#

Waiting for terraria to load and then gonna start putting stuff in

obsidian latch
#

tomb raider was 2001

#

slightly out of scope by 2 years but 100% a possibility

coarse igloo
#

mole people seed sounds like fun

obsidian latch
last ruin
#

any progress on the dual dungeons seed :--(?

#

it looks so cool #NeedThat

delicate whale
#

Sadly no

obsidian latch
last ruin
#

wallahi

delicate whale
#

We're thinking its references from the mid/late 1900s from the pattern so far

obsidian latch
#

current list

delicate whale
#

Mole people is also from the 1950s

last ruin
#

right ok so they're mostly pop culture references?

obsidian latch
#

looks to be it

#

but doom has turned up blanks for desert

craggy mural
#

also mostly old ones

obsidian latch
#

and so has many dnd variants for duo dungeon

coarse igloo
#

id suppose it is

frail plinth
#

Lf someone to play Fresh Vanilla with, preferably someone who actually wants to play and not disappear after a day...

delicate whale
#

So Im about to try out Raiders of the lost ark and Lone Runner refs to see if we get anything

obsidian latch
#

... has anyone tried "preparefortroubleandmakeitdouble" or any variations of that?

obsidian latch
#

the original pokemon anime is 90s media right?

craggy mural
#

Have not tried

delicate whale
#

If my Terraria would load, man the steam cloud

last ruin
#

neither does something like doubletrouble etc

frail plinth
delicate whale
#

Np

obsidian latch
#

or long hold if you're on mobile

craggy mural
#

I do wonder how we were supposed to find some of these

obsidian latch
#

discord has it off by default for some bizarre reason

craggy mural
#

I also feel like the dungeon one must have a hint in the patch notes as it otherwise would be the only one from the patch notes without a hint

delicate whale
#

What about Labyrinth (the movie) stuff? For the dungeon one

obsidian latch
#

yes this is a jojo reference

humble owl
#

how many times do we have to teach you this lesson old man

#

πŸ˜‚

#

if that's it I'm buying a lotto ticket

vague sorrel
#

typing abandonedmanor doesnt come up with a secret seed for me? am i just typing it wrong somehow

long frigateBOT
#
Terraria Wiki

Secret world seeds are world seeds that, when used, generate a modified world. Unlike special world seeds, secret world seeds do not appear on the world seed menu and must be input manually in the seed selection. Secret world seeds can be combined both with each other and with all of the special world seeds.
Seeds can be input with any capitalization or spacing. Non-alphanumeric symbols are skipped by the game, so beammeup, `bEam-me_U…

delicate whale
#

Abandonedmanors

obsidian latch
#

whatever, go my /wiki title:Secret world seeds

vague sorrel
#

ah whoops

obsidian latch
#

in a different discord we have /wiki query: with a custom built bot lmao

edgy ledge
#

who can play terraria with me?

gloomy locust
obsidian latch
obsidian latch
#

put it there big fella

edgy ledge
#

i dont have permision

obsidian latch
#

don't you see a button that says "create LTP message"?

humble owl
#

imagine if the seed for world is desert is in hieroglyphics

obsidian latch
#

no thanks

humble owl
#

the curse of ra, the Pharaoh's curse

delicate whale
#

I tried both of those sadly

humble owl
#

bummer

#

it wouldn't surprise me

delicate whale
#

Nothing indiana jones related worked from what i could find

viscid sand
#

Return the slab

obsidian latch
#

could it be night in the museum related???

hollow terrace
#

the carebears movie is crazy how was that found

obsidian latch
#

the tablet of akmunrah

humble owl
#

πŸ’€

delicate whale
#

Makes sense in retrospective, the carebears live in a huge set of cloud islands

obsidian latch
#

me and some friends beat shimmering skies pre 1.4.5 in legendary mode btw with a smaller world than small so the wall fight is harder

craggy mural
#

I do think the hint for the dungeon might be in the actual patch notes though

#

All other seeds mentioned in the list have their seed somewhere in there

#

The flood and vampire ones for example

spark juniper
#

try stuff relating to dead cells or changes to the dungeon in 1.4.5 for the dual dungeon seed

#

maybe also try stuff relating to gothic themes

delicate whale
#

We've tried that but sadly nothing so far

spark juniper
#

:(

viscid sand
#

I can confirm that the desert is not "litterbox"

craggy mural
#

the text for the water seed for example contains the seed phrase

delicate whale
#

Its a good idea to keep checking though

last ruin
#

bored would love to dig around

craggy mural
#

"Another seed that is splashing down in this update might make you want to bring a towel or an umbrella, because the forecast is rain"

spark juniper
#

i tried "much like sandworms" as the phrase is mentioned in the inventory management section of the patch notes but it didnt work

last ruin
#

right ok

delicate whale
#

What about just sandworms?

craggy mural
# last ruin right ok

"Hm, what this needs is more holes!"? Well, for those of you wishing to explore a world of jagged peaks and craggy rocks

spark juniper
craggy mural
#

So I would not be surprised if "For example, if you ever thought that the Dungeon is too small, there are too few of them, and you don't spend a lot of time there, then good news! We have a seed that solves all three of those problems!" contained the seed somewhere

ionic sage
#

Hi, I have a question: does anyone know if crossplay is included in yesterday's update 1.4.5? Two of my friends play on Xbox and I play on PC.

spark juniper
#

just tried "dungeonistoosmall" and it didnt work

craggy mural
#

I tried a lot already

spark juniper
#

dungeonistwosmall didnt work either

craggy mural
#

I unfortunately cant check more as I have a job to doo

vagrant oyster
chilly cairn
craggy mural
#

I tried "threebirdswithonestone"

spark juniper
craggy mural
#

I dont think we can base it off off knowledge we have from datamining

hasty cypress
#

is there any difference between chillit and ignis chillit that people have found

craggy mural
#

As this one is hinted at in the blog post

hasty cypress
#

i found two eggs and got one each

#

is one the "shiny" version

#

also, is there a new seed beyond zenith

#

in terms of the max difficulty seed i mean

olive pagoda
#

Theres no way extrafloatingispands is the carebears movie lmao

hasty cypress
#

i started my new playthrough on zenith but if there is something even harder, i want that for sure

craggy mural
hasty cypress
#

gotcha

craggy mural
#

Currently at 31.5 / 35 found iirc

delicate whale
#

I thought it was 30.5?

craggy mural
#

COuld be

chilly cairn
delicate whale
#

Yeah we're still missing four

olive pagoda
#

zenith + skyblock is honestly easier

#

At least after the start

craggy mural
#

Yeah basically zenith + all secrets, no skyblock

#

I want the dual dungeons one the most

olive pagoda
#

The only more difficult thing is that, you spawn in with litterally nothing and evil biome enemies spawn on flesh blocks

craggy mural
#

I am quite sure though that the dungeon one might be hinted at in the actual changelog

mental forge
craggy mural
olive pagoda
#

I would explore it on console but id have to update my modded switch

craggy mural
#

Next update for consoles and mobile will make it use the code we dont have yet

craggy mural
mental forge
#

Lol yea... Maybe dual dungeons is misleading people to think about the number 2. The dungeon is very large and could be broken up into more than 2 areas with multiple starting points

ionic sage
craggy mural
loud dagger
#

i need worldIsInfected one 😭

viscid sand
#

Good news, Yoraiz0r has identified the liquid rendering crash that ruined my world and is implementing a fix.

bad news is that i still need to restart my playthrough for now

viscid sand
#

Kinda bummed about it, i had soo much progress for a day 1 LGFB Skyblock

olive pagoda
#

Hopefully mine isnt bugged cause i plan on streaming today

viscid sand
frail plinth
#

why is everyone in Eu rn, where all the Us night owls at?

odd saffron
#

It's a weird question but how do you guys farm for mushrooms ? The classic one that is sued to make the food item, not the glowing mushrooms. I want a lot of them for the feywood furniture :)

viscid sand
#

It's nice that we can copy the actual seed for these special world types now

delicate whale
#

Ay I ain't in the EU, its 6am for me right now and Im here to hunt for secret seeds until I start putting in jibberish

olive pagoda
#

Idk how to get mushrooms in skyblock without the shroom seed

odd saffron
viscid sand
#

It's about to be 7AM for me, im gonna get off work in about an hour and go home to restart my playthrough

frail plinth
olive pagoda
#

I went to sleep and i just woke up and its 8 am

viscid sand
#

Just play solo like most people

delicate whale
#

I'm gonna find this desert one or be here when its found

#

I yearn for the sand

olive pagoda
#

At least i woke up to care bears

frail plinth
olive pagoda
#

I want to eat the sand

frail plinth
#

bruh

delicate whale
#

I swear its strange we havent found the desert one by now

#

'Winter is Coming' was like, immediately

frail plinth
#

yall tried something to do with sand?

olive pagoda
#

Winter is coming doesnt sound that hard

viscid sand
olive pagoda
#

I have a couple ideas for possible seed names im gonna try them out in a bit

viscid sand
delicate whale
#

Weve tried the desert and sand avenues, what about like, just heat?

#

Or summer?

frail plinth
#

mars?

viscid sand
#

I even tried M6-117

tidal sentinel
#

I really thought it would be Dune related, but it seems people tried that already

frail plinth
#

that would make sense

olive pagoda
#

Maybe its oasis related

west plover
#

back before the big boulder update the drunk worlds was numbers signifying an important date, maybe the missing seeds are similar?

delicate whale
#

We've tried so many dune related ones but like thats the biggest desert reference I can think of

craggy mural
tidal sentinel
#

same

viscid sand
frail plinth
#

you tried bin laden?

olive pagoda
#

It could be pharaoh related

craggy mural
modern saffron
outer zodiac
#

nothing for another hour?

craggy mural
#

yep

outer zodiac
#

or is it taking 30 years for the hash program to find a match

craggy mural
#

I think cactus is not available atm

#

I wonder how hard it would be to help with that as I do have a 4090 and 3080ti sitting around doing nothing rn

tidal sentinel
#

Im guessing people tried Mad Max referenced too?

delicate whale
#

Some MadMax refs were tried, not sure how many

modern saffron
#

is there any dictionary with api that can somehow get words related to others (like words related to "desert")

shell dew
#

hi guys gonna do a expert summoner run first time, should i try any seceret seed if yes which one

craggy mural
#

all of them

shell dew
#

dang

viscid sand
outer zodiac
#

then again we can't currently do all of them

viscid sand
outer zodiac
#

we're missing 4, and one is bugged on pc

shell dew
outer zodiac
#

dual dungeon is bugged

delicate whale
#

We do have confirmation atleast that dual dungeons DOES have a code we havent found

frail plinth
modern saffron
delicate whale
#

Its not bugged for PC, its bugged for mobile

outer zodiac
#

desert, hallow, infected world, and portals in chests are missing

shell dew
delicate whale
#

We have confirmation from Loki that the mobile thing is a bug and not the intended seed, so dual dungeons is still unfound

outer zodiac
#

so we stil need the teased secret code after all

#

its gotta be a chippy reference

olive pagoda
delicate whale
#

We need dualdungeons, surfacehallow, infectedworld, portalguninchests, and surfacedesert

last ruin
#

anybody got a world file for the mobile dualdungeons then?

delicate whale
#

We tried that, its going to give the bugged world seed

olive pagoda
last ruin
shell dew
craggy mural
delicate whale
#

Id rather find the phrase honestly, if your looking to just play the world theres already ways to do that without it

last ruin
#

yeah hoiw

#

😊

outer zodiac
modern saffron
outer zodiac
#

2 or 3 words at a time

delicate whale
#

Check on the forums/reddit, or the steam workshop, people have already posted/started posting how to there

craggy mural
olive pagoda
#

Although iamerror makes chest loot random so if you dont want that then, maybe go with abandonedmanors

last ruin
lilac spear
#

blinkroot glows now?

craggy mural
#

Always has

#

Just has to be blooming

odd crag
humble owl
#

interesting

odd crag
#

prob to make all seed runs more painful

olive pagoda
humble owl
#

so everything lgfb isn't gonna have huge progression skips

mild vapor
#

Good morning everyone ✨️

craggy mural
#

Thats so messed up lmao

humble owl
#

even finding a zenith wasn't gonna save us lol

delicate whale
craggy mural
#

God what does one have to do to get the last few seeds

delicate whale
#

Desert has to be obvious but something we havent thought of

#

Cactus related? Antlion related?

craggy mural
#

I think ironically enough actually anything desert related lol

mild vapor
#

Be continuing playing today soon πŸ™ Hmmm, you know, there an item I have never seen ones and I do wonder if this are teleporters that I don't have to walk all the way to get back home but dang, my money it's on low πŸ’«

#

I think it's called Pylons

#

And the thing it's so expensive

craggy mural
#

Could also try computer virus related things for the infected seed

mild vapor
#

Is there a good way to earn easy coins so I can have the Pylons?

spark juniper
#

cant wait to do a run with all 43 seeds (excluding gfb as that gets auto enabled when its components are selected)

humble owl
#

did they fix crystal dupes? that's hardmode but still

#

I'm doing an everything seed run on legendary except for skyblock when all the seeds are found

craggy mural
delicate whale
#

What about vulture related?

humble owl
#

RIP

mild vapor
#

I know I barely started yesterday, but any good way to earn easy lot of coins early pre hardmode?

humble owl
#

I never really felt a need to use it but it was def a fast way

craggy mural
wicked frigate
#

pls join my post πŸ₯Ί

humble owl
#

the way I usually farm money is killing eyes of cthulhu or king slimes

#

it's not mega efficient but it helps

gloomy locust
native plaza
#

secret seed count check?

#

how many have been found

spark juniper
#

31 i think?

#

or 30 idk

mild vapor
humble owl
#

you can craft it pretty easily

native plaza
#

it was 31 earlier so it probably hasnt shrunk back to 30

spark juniper
#

ok

humble owl
#

just farming demon eyes at night a lot

mild vapor
#

Might had to look at the Ice Caverns because I remember I went there and found insane good weapons

humble owl
#

unless they changed the recipe

#

it was 6 lens' at an altar

novel stump
#

Did they change abigails flower rates? Im trying to get one but I cant get one while I have around 6 graves with space inbetween

humble owl
mild vapor
#

Also hmmm, I saw this dark ores the last time I played yesterday, I need to farm those essential

delicate whale
mild vapor
native plaza
#

ok

craggy mural
#

Portal, Desert, Corruption, Dual Dungeons, Hallowed

olive pagoda
#

yeah i tried my ideas and they didn't work

humble owl
#

it's a solid weapon early game yes, and yes it's in ice cave chests

past parrot
lavish hamlet
#

does anyone have a zenith seed world theyve beaten they can send me the file of

humble owl
#

my old one was on skeletron sadly

#

I'm redoing it anyways for the new everything seed

mild vapor
humble owl
#

explore everywhere

#

good luck

lavish hamlet
#

the moon lord torso is in locked chests in the dungeon right

mild vapor
#

Dang I remember I played that biome a lot and yeah I was kinda farming a lot of stuff there lol

craggy mural
#

Guess imma check back here later xd

mild vapor
#

I can't wait to fight the Eye of Cthulhu once I'm prepped and got everything (still need to look for it)

past parrot
#

does the angel statue glitch still work or is it patched

humble owl
mellow sluice
#

I'm sad.

mild vapor
#

Still, too early to fight it, I need good armor and I need to find that weapon they told me

mellow sluice
#

I tried to play vanilla terraria after the update for the first time in a while and my pc crashed.

hollow maple
#

realized i hit 1000hrs now

olive pagoda
#

i have over 1000 if i added my hours on switch

prime imp
#

Spent the last hour feeding hundreds of possible codes (thanks "glorified autocorret") into an extracted version of the checker (which still seemed to work on the 5 known codes I tested against), no dice. I need sleep, good luck all.

humble owl
#

o7

craggy mural
#

Tbf

#

Base64 -> Hash is evil

#

Its basically made to not be brute forced

spark juniper
#

so some of the seeds have just been dumb luck ig

tidal sentinel
#

its still kinda early, Im guessing devs will give us some hints if it takes a really long time to get the remaining ones

spark juniper
#

either that or red will be evil

last ruin
#

hooray! i got the world to work by porting from mobile

spark juniper
#

also tried some desert related memes and desert stuff from star wars and nothing has worked so far

craggy mural
#

Someone mentioned that most references are dated 1980s

#

I doubt all of them will be

coarse igloo
#

is it possible to beat the game in the underground seed?

delicate whale
#

1950s-1980s/2000s

craggy mural
#

So everything lol

olive pagoda
delicate whale
#

Early early 2000s I mean. Like pre 2002

spark juniper
olive pagoda
#

idk how you would get wyverns in Moles

delicate whale
#

Dune's been tried over and over

olive pagoda
#

so wings might not be possible

dull depot
#

mad max takes place in a desert right

barren cloud
#

EnterTheThunderdome?

#

maybe?

#

could be a seed with a shitton of lightning storms

coarse igloo
#

hmm

#

warneverchanges?

#

for the funny

ornate cosmos
#

nope for both :/

coarse igloo
#

say the line john fallout4

barren cloud
#

checked both yea

spark juniper
#

just tried saguaro (like the cactus) and it didnt work

craggy mural
spark juniper
#

yeah

#

but then again it could be an obscure word as noInfection was fishmox and it took a while to crack

delicate whale
#

Maybe its a pun??

spare moss
#

i created a world yesterday and i heard theres a new update, my world creation date is <t:1769500200:f>, should i create a new world and character for the new update?

hoary nimbus
#

Yes

fossil yew
#

So funny from yesterday when I finally logged in I got the achievement immediately for the shellphone but because I had a Rod of Harmony I didn't get the one for the Rod of Discord which I think is an oversight. Oh well it looks like it's back to making a Hallowed Farm...

spare moss
hoary nimbus
#

I dont think that would matter

spare moss
hollow terrace
#

anything new?

hoary nimbus
#

Yes

delicate whale
olive pagoda
#

sad, i hope people figure out these last 5 seeds

#

ill try thinking of more seed ideas

coarse igloo
dull depot
#

what in the actual world is fishmox

#

people be finding things

viscid sand
#

Mox of a fish

crisp peak
#

Well..looks like blank world seed isn't real

slate plume
#

I thought about something with RGB by the hollowOnTheSurface but I don’t know how to write it in words

ornate cosmos
frozen monolith
#

What is the difference between secret seeds and special seeds?

crisp peak
viscid sand
#

Special seeds are now seen in a menu, secrets have to be manually entered

crisp peak
#

Its Shame there is no blank world seed though

#

It would be cool idea for secret seed

frozen monolith
#

And there is no way quckly access secrets seeds after creating a world with them once? Some games have that πŸ€”

solar osprey
#

has anybody else seen a boulder over the dot of the I on the titlescreen?

gloomy locust
delicate whale
#

I feel like its gotta have 'bigger ___ deeper dungeon' I just don't know what would fit for the 'too few of them' and would match the other two

#

Or if the paragraph in the patch notes is even a clue at all or a red herring

modern saffron
rain elk
#

What is fishmox a reference to?

obsidian latch
#

broad spectrum antibiotics

rain elk
#

Ohhhh

dull depot
#

antibiotics for a no infection seed

#

genius

modern saffron
#

does noInfection prevents the infection in hardmode?

obsidian latch
rain elk
#

Good question

obsidian latch
dull depot
#

i wonder if worldisinfected references some kind of specific plague then

delicate whale
#

bubonic? Covid?

modern saffron
#

nope

craggy mural
nova rain
#

how i can play with my friend pc/ps5 ?

daring swift
#

does anyone know how to fix cursor lag in terraria. I am 144hz and ik the game is locked at 60 but is there anyway to get my mouse better it feels choppy

craggy mural
#

Checked the code

gloomy locust
rain elk
#

That care bear movie one is so dumb istg

nova rain
#

oh... that sadly

#

fa pepe

delicate whale
#

Maybe fully infected is something related to what the dryad says when the world is fully corrupted? 'Things are grim indeed' ?

rain elk
#

Tried

outer zodiac
#

most things we say, people have tried

delicate whale
#

Doesnt hurt to try them

craggy mural
#

Tried all negative quotes

livid trench
#

1.4.5 broke item id chest names :(

#

they're doubled for some reason

olive pagoda
craggy mural
#

Thats hilarious

olive pagoda
#

which ids are doubled?

livid trench
#

look at the items lol

obsidian latch
rain elk
#

I’ve tried a lot of diseases.

Common cold, influenza, the plague, bubonic plague, Covid, pestilence, small pox, chicken pox, etc.

Don’t think it’s disease

obsidian latch
#

iirc its like [i:1234]

craggy mural
#

It looks like it now used 2 different rendering configurations because someone wrote a new version and then forgot to remove the old one from the code block

livid trench
olive pagoda
#

so the item id of the items inside the chest?

delicate whale
livid trench
#

Also it feels like a lot of the 1.4.5 things arent intergrated well, with the new animations when crafting and when getting the best reforge they couldve at least done this yk

rain elk
#

We can try more general. Fishmox was just very specific

livid trench
#

or changed up the whole dialogue box instead of slapping the (good) portraits on the side

craggy mural
olive pagoda
rain elk
#

Good question

craggy mural
#

Dictionary

obsidian latch
#

fish and mox are two different words

olive pagoda
#

ohh its an antibiotic

#

lmao

delicate whale
#

Fishmox is a general antibiotic yeah

livid trench
#

plus the new backgrounds are super out of place, I can't prove it but im sure theyre a higher res than the old ones

obsidian latch
craggy mural
#

We have the result codes and the method to encode a word so we can brute force

blissful oracle
#

hey guys, before the patch you were able to swing a Staff of Regrowth at a non-blooming wild plant (e.g. a deathweed in the crimson during the day) and it would still drop the plant + a seed, but now when I target the plant the staff can't break it at all? Is this nerf in the patch notes?

olive pagoda
#

i guesss that makes sense for No infection

craggy mural
#

Actually just accidentally came accross the codes again while checking the no infection seed code

obsidian latch
#

can no longer harvest a blooming plant with staff of regrowth / axe of regrowth

livid trench
# obsidian latch ❌

Im not saying theyre bad theyre out of place. The new retextures are amazing, much better than before but most things still having old textures feels off. I usually play with the Prime texture pack, and the new 1.4.5 stuff fits exactly that pack, not vanilla terraria

obsidian latch
#

axe also got nerfed to 125%

blissful oracle
#

Now only yields extra seeds and herbs from mature herbs if used to harvest them, rather than as long as it's held.

#

that doesnt seem related to my issue

#

im swinging the staff of regrowth and directly targetting the herb

rain elk
#

It’s not mature

blissful oracle
#

it is mature, just not blooming

#

cant attach a screenshot here

obsidian latch
#

shrug man i skimmed the notes and have been exahausted for the past day

#

seed finding

delicate whale
#

If its not blooming you probably cant harvest it

blissful oracle
#

thats my issue

craggy mural
#

Likely a qol improvement

blissful oracle
#

its not qol to not let me get deathweed seeds outside of a full moon

#

its a nerf

#

if it's intended

livid trench
#

honestly the best background is the lake one (for forest). Not too detailed or shaded because it's the background, the forests are far back instead of the new ones (and some older ones) having gigantic trees in your face as if you're using a telescopic lens

delicate whale
#

Its most likely intended to stop people from accidentally breaking their plants

rain elk
#

I always have hated the massive trees

blissful oracle
#

I'm talking about wild herbs that you find in the world, not plants you planted in a planter box

#

you used to be able to break them and get seeds even when the plant isnt blooming

craggy mural
#

My favorite background is the new beach one cuz look at that lil guy in the background

livid trench
rain elk
#

Wrong reply

livid trench
#

true

#

sorry marta

delicate whale
#

I don't think Ive ever been able to harvest wild plants just off the ground with a staff of regrowth, only a pickaxe
Then again I only use the staff of regrowth on potted plants

blissful oracle
#

well, you were able to do that last patch and it'd drop seeds

#

and now it doesnt break the plant at all

delicate whale
#

Do you perhaps have the book that stops you from breaking plants in your inventory

blissful oracle
#

i'd always use it to get deathweed seeds without waiting for a full moon

blissful oracle
livid trench
#

can't wait for tmod 1.4.5 so i can have my Fancy Lighting, tooltip mods, overhauled item animations, native cursor, No Mount Blur and High FPS support

#

also for texture packs to be updated but im guessing thatll be quick as to adjust the sprite sheets mostly

olive pagoda
#

i hope 1.4.5 doesnt break too much

#

for my mod

cursive vine
#

i have a question: does anybody else get an fps drop ever since the new lighting was introduced? its fine when im underground and it stays at a stable 60, but when im at the surface its drops to 30. Is my computer just shitty or is there another reason?

delicate whale
#

Gimme just a second to check

livid trench
livid trench
#

ohhhh

#

mb

olive pagoda
livid trench
#

fair, i doubt much will change about that

delicate whale
#

And you're sure the plant is mature Marta?

blissful oracle
olive pagoda
#

i have a boss designed id like to make, so i hope the rest of the stuff ive done doesnt break

livid trench
#

does anyone know all of the post ML items in 1.4.5? Like the mitey titey? stuff thats not progression based

viscid sand
#

here I go again, hopefully I don't get a corrupted file because of world gen this this time.

rigid summit
#

Does 1.4.5 came with crossplay?

modern saffron
#

btw, hallow surface + no infection will give you pure hallow in the world

livid trench
#

also how's the Health Fountain (or whatever the dead cells health potion refill called) obtained

olive pagoda
#

IL edit might break, ill have to decompile the game again if i want to fix it

modern saffron
rain elk
#

Fire world name

livid trench
gloomy locust
rigid summit
#

Bummer

rain elk
olive pagoda
#

oh wait you said pure hallow i thought you said yellow hallowed

#

im still waking up

mint hornet
#

any1 up to play dou run

abstract bone
#

any more seeds since yesterday? last count i saw was 26/35

craggy mural
abstract bone
#

wow four more, what are they :o

craggy mural
#

Now missing only Portals, Hallowed Surface, Infected Surface, Desert Surface and Dual Dungeons

#

But its been a while since progress has been made

delicate whale
#

Fishmox for no infection, thecarebearsmovie for MoreFloating Islands

#

And invisible plane for echopaintedworld

#

Those were the new ones + negative infinity from yesterday

#

Desert and Dungeon still evading everyone despite being the ones with the most put into

craggy mural
#

I genuinely have no clue how "fishmox" was supposed to be found legit

delicate whale
#

Its a broad spectrum antibiotic

craggy mural
#

Who would guess that

#

Idk

delicate whale
#

Specifically for animals/fish

#

Fish mox is just another brand of Amoxicillin, just not sure how we'd get to guessing fish antibiotics of all things

coarse igloo
#

can you even get the palworld stuff in a skyblock world

#

considering most of it consists in exploring

stoic sierra
#

I wish the crafting window was an option you could permanently toggle instead of having to click that button every time you open your inventory

inland python
mint hornet
#

any1 up to play duo run masters w me

delicate whale
#

Actually wait no your joke is right

modern saffron
delicate whale
#

The corruptions based on HP Lovecraft, whos known for cosmic horror mostly centered on the ocean

#

And decay, aka rot

#

It woulda taken a minute but kinda works

craggy mural
#

Also red: haha gas station

delicate whale
#

Yep

#

But yeah just kinda hit a brick wall with these others, back to throwing darts at a wall

native jungle
#

I might just throw more compute at it

delicate whale
#

I could try finding a list of desert terms/movies/shows to give to ya cactus

dull depot
#

we tried cowboy related stuff?

strange cosmos
#

how do i get life crystals skyblock

delicate whale
#

Not fully

native jungle
#

Sure, will probably just combine those with common English words

dull depot
#

i tried the good the bad and the ugly yesterday but that aint work

craggy mural
slate plume
visual lark
#

pls help me. When i join the game and try to get an achievment it freezes and after a minute it closes and steam crashes too. After the crash i dont get the achievement. I asked chatgpt but he isnt helping. pls help

native jungle
#

I think I did something stupid with my code before, was 50k/s on a 5090 and 40k/s on a 4090. 5090 should’ve been significantly faster. Actually sorting beforehand makes a difference but annoying with the massive lists lol

obsidian latch
native jungle
silent pumice
#

Has anyone found the bat transformation?

craggy mural
native jungle
#

There’s additional optimizations I can do but was in a rush yesterday

visual lark
native jungle
#

Yeah both would be pretty good

craggy mural
#

Take your time, work atm

obsidian latch
#

i have a 3060

#

i can provide compute if needs be

oblique creek
#

Whats a Lucky Clover for?

craggy mural
#

Also should likely add some kind of indexing so we can all work on separate parts

obsidian latch
oblique creek
#

Oh fun

#

does it stack with more lucky clovers?

craggy mural
#

And we should also filter out compund words

obsidian latch
#

the one time i'd be ok with a CQS is being able to terminate the job at any time and the code reports to the server where i was up to

craggy mural
#

we dont need candid if we have can+did really

craggy mural
#

But maybe thats a bit aggressive

obsidian latch
#

i can hardly write python to save my life

#

idk what the issue would be

delicate whale
#

I can supply compute as well, my computers pretty beefy

visual lark
#

ok ill keep talking to chatgpt to see if he can do something

delicate whale
#

More hands on deck the faster we'd find it

obsidian latch
#

chatgpt will never give you the answer

#

it isn't omnicient

spark juniper
#

i have a 5070 and 64gb of ram

barren stirrup
#

guys idk what to do, my game is lagging horribly after 1.4.5 and it wasnt like that in 1.4.4, someone said it possibly was the launch options but when I switch to open gl as my launch option, it worked for 10 minutes then completely broke when it started thundering. plssssss help I wanna play this update but I cant!!!!!!!

viscid sand
#

well here I go again, and I made sure it's not broken world gen πŸ˜„

coarse igloo
barren stirrup
humble owl
#

I wonder if all hallow might be a reference to sunshine, lollipops and rainbows

#

might have to try all the lyrics later lol

modern saffron
sour void
#

You know, I have filled a chest and change with different chests, which means there's over 40 furniture sets now.

modern saffron
#

are you on linux btw?

outer zodiac
#

what's this about constant + illuminant coating?

#

i just heard.

livid trench
#

lmao I just made a new world to test abagail now that she has knockback now and i found a rainbow boulder in the first cave

wind lava
#

are music boxes still obtained in hardmode?
I lowkey need a music box go record torch hod music
(The soundtrack is so stupid, I like it)

rocky crag
#

Anyone got ideas for alternative phrasing of sacred/holy ground for hallow on the surface?

junior plover
#

how do u get stone in skyblock?

rocky crag
#

Cavern layer stone slimes

junior plover
#

ohh so i need to go down

viscid sand
delicate whale
#

Finishing up a list of a bunch of words relating to sand, deserts and heat

#

Even some opposites incase its one of those thats the opposite of what it should be

tall spear
#

Hi, anyone here know a good wiki for terrari

long frigateBOT
mortal ruin
#

Normally,how many hours do you guys have to play before you have to deal with the Evil Biome spreading?

coarse igloo
#

sunflowers do the trick early game

turbid tulip
#

How many secret seed have we found

rocky crag
obsidian latch
turbid tulip
#

How did you guys even guess the noinfection one

rocky crag
obsidian latch
turbid tulip
#

Oh

obsidian latch
coarse igloo
#

how do you get the shimmer gun?

#

just shimmer the water gun?

obsidian latch
#

i think so?

coarse igloo
#

or slime gun?

obsidian latch
#

one of the two

split lagoon
#

secret seed...??

long frigateBOT
#
Terraria Wiki

Secret world seeds are world seeds that, when used, generate a modified world. Unlike special world seeds, secret world seeds do not appear on the world seed menu and must be input manually in the seed selection. Secret world seeds can be combined both with each other and with all of the special world seeds.
Seeds can be input with any capitalization or spacing. Non-alphanumeric symbols are skipped by the game, so beammeup, `bEam-me_U…

grand cloud
#

What does the no infection seed do? No world evil?

gloomy locust
obsidian latch
#

we dont know

neat nova
#

At least there doesnt really seem to be any fun ones left

coarse igloo
#

also arent altars craftable now somehow?

turbid tulip
grand cloud
#

Ok so what does the opposite one do then. World is infected?

#

Just nake the entire world evil?

obsidian latch
#

i wonder what world is infected does...

coarse igloo
turbid tulip
#

World is infected + no infection

grand cloud
#

Do we know the dungeon seed with the mixed biomes yet?

obsidian latch
neat nova
#

I will try this right now

grand cloud
#

Also if you do moleppl and planetoids it makes the planets negative space, so gaps instead of blocks

neat nova
#

rofl I just tried the worldIsInfected one

#

it makes the dryad evil

#

is that seed-specific? or can you usually shimmer her to be evil

delicate whale
#

How did you try that one? I thought we don't have the code for it yet

grand cloud
#

It is fishmox

delicate whale
#

Thats no infection

neat nova
delicate whale
#

We don't have worldisInfected

neat nova
#

I just patched the binary

grand cloud
#

My bad sorry

neat nova
#

replaced the base65 hash with a known one

obsidian latch
#

most likely just overrode the if else chain

#

or that too

grand cloud
#

Can you share a screen shot of the seed you just did?

delicate whale
#

I've got a list of desert related words if anyone wants to try dictionary forcing with it

grand cloud
#

I'm not tech savvy enough to mess with hashes

neat nova
#

it registers all seeds like

public static WorldGen.SecretSeed coatEverythingEcho = WorldGen.SecretSeed.Register(SoundID.MenuAccept, "5Czr2vSNyB9hJd1yob+TYo0qqH/5U2P9");
#

so you can just replace the hash there to a known one

#

and ez

neat nova
#

nothing else it seems

#

didnt look too deep

modern saffron
#

here is it

grand cloud
#

Did we try dry dry bones for the desert one yet?

obsidian latch
#

can people stop using imgur please

grand cloud
#

It is a mario kart course

obsidian latch
#

they dont server england any more

modern saffron
#

oh

obsidian latch
#

its really annoying PhantomGrunt

crisp peak
#

Is there a list for new shimmering recipes?????

long frigateBOT
obsidian latch
#

probably here

crisp peak
obsidian latch
#

well sorry that i havent paid that much attention to the rest of the server

delicate whale
#

How would you go about making one of those programs that checks the hash with a list of words?

barren stirrup
#

it also takes a while to load the game

obsidian latch
neat nova
#

noInfection + worldIsInfected just generates a completely normal world with a normal amount of infection

barren stirrup
#

it just started doing this after I updatrd

delicate whale
#

Or should I just start going down the list I've got and hope and pray something shows?

modern saffron
obsidian latch
#

(i got it dont worry shelly)

#

(i see)

neat nova
crisp peak
obsidian latch
#

well even on mobile you can ctrl + f

#

just search the entire server for new shimmer

neat nova
modern saffron
neat nova
#

the entire underworld is infected

#

surface is normal gen

turbid tulip
#

Now do that same combo but with molepeople

neat nova
delicate whale
#

Hey Phantom do you have any idea how to make a bruteforcing script I could run on python in the background while I manually test?

crisp peak
half flicker
#

any1 know why i cant craft true excalibur

obsidian latch
muted sail
#

The extra skyislands is...

delicate whale
#

I'd be willing to try it

#

thecarebearsmovie yes

modern saffron
muted sail
#

the care bears movie?????

obsidian latch
#

yeah

delicate whale
#

The carebears movie

muted sail
#

That's such a crazy deep cut

delicate whale
#

I wish I'd considered it, they do live on a city of cloud islands

muted sail
#

I completely forgot the movie takes place on floating islands

modern saffron
grand cloud
#

@delicate whale did you try the seed 'drydrybones'

delicate whale
#

Yeah didnt work sadly

neat nova
muted sail
#

also so what have we found?

grand cloud
#

Any word on the dungeon seed with all of the major biomes in it?

delicate whale
#

Nothing so far

viscid sand
grand cloud
#

Oh is it dry dry desert?

delicate whale
#

We have invisibleplane for Echoeverything

modern saffron
delicate whale
#

thecarebearsmovie for FloatingIslands

idle drift
#

Made a new world (with two minor secret seeds)... I just HAVE to share the spawn forest; it's immune to corruption from the outside!

delicate whale
#

and uhh fishmox for noinfection

muted sail
#

What's the portal gun code?

delicate whale
#

Nothing on it

muted sail
#

Ah. Darn

rocky crag
#

does rick and morty have a portal gun

neat nova
grand cloud
#

Yes

crisp peak
delicate whale
#

The bears live on floating islands made of clouds

crisp peak
delicate whale
#

Hoping we can get a script and I can start running a list of just desert related words

muted sail
#

I'm definitely not cultured enough.

crisp peak
#

That said though. Its Shame blank seed(no blocks world) didn't made it into full 1.4.5 and now is lost media

grand cloud
#

I wonder if slingring might be a potential portal gun seed. Because they can open up portals anywhere and we have already tried a bunch of portal quotes

modern saffron
grand cloud
#

Also red is a nerd and marvel is nerdy so it makes sense

delicate whale
#

Whats the difference?