#terraria-pc
1 messages Β· Page 720 of 1
Has noSpiderCavesILiedMoreSpiderCaves been found yet?
ill try this in a bit when my meeting is done rofl
how to get aether pylon?
@vivid bolt
Thats just a condition for the noSpiderCaves one if theres enough secret seeds iirc
who does?
my guess would be wizard?
Lmao
who does like wizard?
You don't need happy npcs to buy pylons anymore
Can confirm, does not work on Arch
ie. use noSpiders and use 4 or more secret seeds and it becomes "NoILied"
or steampunker, she had the pylon next to her in the trailer
conclusion to my Research, no one is getting Catira or FoxFire on a normal run or there is some obscure mechanic behind the encounter ,______
Alright, thanks
,_
would the chunk limit also explain why blocks disappeareds if you tried building in the missing chunks
drop any pylon in shimmer
the blocks would stay for like 10-20 seconds and then just break
Yes, it usually means that the server cant actually load the chunk for players as it contains too much data
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
also in singleplayer?
ill check again to make sure, it seemed to work properly yesterday
yeah singleplayer works
Then chunk data might be too much or it somehow contains something servers cant handle yet
even if you load the "broken" world genereated on the server
if you load it in singleplayer it then works properly
Yeah the server cant handle the chunk then xd
I would look but do not have the source
how to make world with very long dungeons?
Code not found on PC yet
π
Otherwise "dual dungeons"
I tried searching for things like "ChunkLimit" "Limit" etc but couldnt really find relevant stuff
Maybe something like "SendChunk"
ill have a look
What are you using to inspect the code? Id like to also see for myself
dnSpy
probably want to use the dnSpyEx, its more up2date
ILSpy doesnt give you the ability to debug or re-compile code right?
i deleted it as soon as i had the source

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.
its a standalone executable but windows only i think
Ilspy works on VSC nice
rahhh
software engineer
has a website
must be a linux user i see
Spinal tap or meteor whip whatβs better?
what's the meteor whip's bonus again
Aye
@neat nova its using the "NetMessage" class to do the data transfer but uh
Holy smokes
set Terraria.Testing.enableDebugCommands to true
Then just press F5 in world generation screen
rofl I can imagine, ill take a look in a bit too
the worldgen code gave me a heartattack
Lmao "sendWater"
the worldgen code is decently easy to understand once you get your bearings in there
if if if if if if if...
Oh its "SendSection" not "SendChunk"
usually when its a a crazy amount of nested if's its just the compiler that have done it lmao
at least for c++ binaries
Looks fine for me
where does one change it to true
Going all the way to the socket I can not locate any explicit limits @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
I have a slight guess
public const int readBufferMax = 131070;
public const int writeBufferMax = 131070;
This is part of the MessageBuffer class
interesting
This is the class written to for all the data compression
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
And where does that config exist?
i just tried a completely vanilla world gen and dedi servers still break lol
what the fuck
was there any changes to luck related stuff this update
public const int readBufferMax = 131070;
public const int writeBufferMax = 131070;
public bool broadcast;
public byte[] readBuffer = new byte[131070];
public byte[] writeBuffer = new byte[131070];
This is the only space where I can find any reference to this and it seems to handle basically all netcode messages
Oh that is very interesting
I doubt its the netcode then
its running on a beefy PC
Hosting via steam should use the same logic
ill try a different host machine i guess
And I was hosting yesterday so
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
This is not a configuration, it is a variable within the game.
I was also able to find many hidden commands for debugging. You can see a list of them by typing the command /hh in the chat.
However, you must have the Terraria.Testing.enableDebugCommands flag set.
https://www.reddit.com/r/Terraria/comments/1qp7skx/comment/o2706uu/
Did you use Host & Play or dedicated server?
Host and play via steam
But it should use the same class to transfer
You would think so
can you MAKE mob statues?
I hope the raw ints are just a symptom of a decompile
definitely just macros yeah
Otherwise that seems like a very fun codebase
/constexpr variables
It could also just be an enum that was reduced
131070 is 2^17
I meant more the big switch case
I hope so for the sake of the devs mental health
powers of 2 don't end in 0
well, its close enough
not in base 10, anyway
yeah you were 2 off
might just be 2 bytes reserved for some type of header or similar
doesnt really matter anyways
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"
Is the perma christmas seed not permanent? Just got a message saying the spirit of christmas has faded, implying its over
isnt it cs code???
Does anyone know the radius of the crafting from nearby chests
it is, im just talking in general, i just have experience in normal assmebly reversing with ida/ghidra, not c#
so im not sure how the c# compiler acts
My guess is the same as the normal range for grabbing from a chest
Apparently I mispoke. Where is the flag located and/or what tool are you using to edit said flag? There's a lot of code, my dude!
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
yeah that one stood out to me too lol
its crazy how they just dont just use like Main.chests.size
YO can I please play terraria wit sb? i wanna play it but not alone
null-terminated chest array is hilarious
As an amateur game designer I can tell you Magic numbers make up a lot of programming game design stuff

some of the scariest people are the default discord pfps because they're nerds who don't care about pfps and use the compact mode lmao
I try to at least keep them as constants
Terraria.Testing namespace
DebugOptions class
enableDebugCommands field
like its still the 90s and IRC is the only way to communicate
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
im not nerdy enough to use compact mode, you can rest easy
ah thank goodness
I have a magic number in my netcode that if the packet sorting function returns a -1 the sever closes the connection.
Really it can return any non-zero number for the same effect, but I chose -1.

i was about to ask what lgfb is then realised
I also kinda prefer to call it Zenith over getfixedboi
did you get help with your problem?
zenith sounds cooler
Update: I was thinking too hard
for (int i = 0; i < Main.chest[chest].maxItems; i++)
{
TrySendData(32, targetPlayer, -1, null, chest, i);
}
And yknow what, it works so why change it
That uh, doesnt seem too efficient
Any new found since 27 (negative infinity)?
Does TrySendData add it to a queue and send it in batches? or does it actually send a packet for each item
30.5/35
Oh shoot whatd we get?
.5 is the mobile dualdungeon seed
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...
we found echopaint surfaceinfection and a few more
here's the mandatory list response
fishmox??
Looks like it all goes into the same MessageBuffer[]
Okay that one makes a bit of sense
what an obscure reference
the implications of this are the scarier part
my guess that comes from cactus' dictionary attack
Desert and Dungeon still evading us?
unfortunately yea
dungeon is a .5 since we kinda do and don't have it simultaneously
Invisible plane could be both a superhero reference like xray vision, but also the 'plane' of existance being invisible
Man hopefully someonell crack it
Same
I mean with Carebears now here it seems like we've got a good timeframe for movie references
carebears is ancient
Im so happy extra floating islands was found though Ive been wanting that
do trees actually drop less wood now?

But we also have Night of the living dead and beam me up
< literally hasnt played since the update (just seed maintaining)
As well as royal with cheese
beam me up (scotty) is a reference to startrek*
All references from the mid to late 1900s
Since carebears also fits that, being 1980s, we could start looking there for desert and dungeon
castlevania with WAHNTHAC
anyone try covid related things for the world is infected seed?
not really
social distancing maybe
How on earth did we get fishmox though?
no bloody clue π
fish - word
mox - word
conclusion:
cactus' dictionary attack
Ahhh
@sharp cape is this true?
What other desert series are there outside of dune
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
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
I can only think of dune
starwars was early 2000s and tatooine didn't work
Anyone tried anything from Lone Runner?
nope
Wait what about Raiders of the Lost Ark as well?
The corrupt one could also reference the dryad
anythingbutsnakes?
whydidithavetobesnakes
Ill start trying references from both
@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
it could also be laura croft
im back, any new seeds?
β
dangit
Trying out Raiders of the Lost Ark/ Lone Runner references
i read this message as extremely loud incorrect buzzer
current search is on desert

lmao
i can't react so i respond with an emote
Indiana jones honestly feels like a good avenue
there's also laura croft
Waiting for terraria to load and then gonna start putting stuff in
mole people seed sounds like fun
captin crunch's oops! all underground flavour of seed
Sadly no
β
wallahi
We're thinking its references from the mid/late 1900s from the pattern so far
current list
Mole people is also from the 1950s
right ok so they're mostly pop culture references?
also mostly old ones
and so has many dnd variants for duo dungeon
is progression fully possible in it?
id suppose it is
Lf someone to play Fresh Vanilla with, preferably someone who actually wants to play and not disappear after a day...
So Im about to try out Raiders of the lost ark and Lone Runner refs to see if we get anything
... has anyone tried "preparefortroubleandmakeitdouble" or any variations of that?
#looking-to-play Will prob help ya out
I had that as a thought too
the original pokemon anime is 90s media right?
Have not tried
If my Terraria would load, man the steam cloud
doesnt do anything
neither does something like doubletrouble etc
It wasnt showing up for me before but thx
Np
right click on this server and check "show all channels"
or long hold if you're on mobile
thx
I do wonder how we were supposed to find some of these
discord has it off by default for some bizarre reason
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
What about Labyrinth (the movie) stuff? For the dungeon one
yes this is a jojo reference
how many times do we have to teach you this lesson old man
π
if that's it I'm buying a lotto ticket
typing abandonedmanor doesnt come up with a secret seed for me? am i just typing it wrong somehow
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β¦
plural, manors
Abandonedmanors
whatever, go my /wiki title:Secret world seeds
ah whoops
in a different discord we have /wiki query: with a custom built bot lmao
who can play terraria with me?
try asking in #looking-to-play
singular braincell

put it there big fella
i dont have permision
don't you see a button that says "create LTP message"?
imagine if the seed for world is desert is in hieroglyphics
hilarious
no thanks
I tried both of those sadly
Nothing indiana jones related worked from what i could find
could it be night in the museum related???
the carebears movie is crazy how was that found
the tablet of akmunrah
π
Makes sense in retrospective, the carebears live in a huge set of cloud islands
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

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
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
We've tried that but sadly nothing so far
:(
I can confirm that the desert is not "litterbox"
the text for the water seed for example contains the seed phrase
Its a good idea to keep checking though
example of this?
bored would love to dig around
"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"
i tried "much like sandworms" as the phrase is mentioned in the inventory management section of the patch notes but it didnt work
right ok
What about just sandworms?
"Hm, what this needs is more holes!"? Well, for those of you wishing to explore a world of jagged peaks and craggy rocks
didnt work
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
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.
just tried "dungeonistoosmall" and it didnt work
I tried a lot already
dungeonistwosmall didnt work either
I unfortunately cant check more as I have a job to doo
no they said it was coming later
the quote says solved 3 problems, so yours not enough
I tried "threebirdswithonestone"
i was thinking in puns as the seed is called dual dungeons
I dont think we can base it off off knowledge we have from datamining
is there any difference between chillit and ignis chillit that people have found
As this one is hinted at in the blog post
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
Theres no way extrafloatingispands is the carebears movie lmao
i started my new playthrough on zenith but if there is something even harder, i want that for sure
Zenith + All secret seeds (we have not found all of them)
gotcha
Currently at 31.5 / 35 found iirc
I thought it was 30.5?
COuld be
zenith seed + skyblock
Yeah we're still missing four
Yeah basically zenith + all secrets, no skyblock
I want the dual dungeons one the most
The only more difficult thing is that, you spawn in with litterally nothing and evil biome enemies spawn on flesh blocks
I am quite sure though that the dungeon one might be hinted at in the actual changelog
This one is cool. I explored it on mobile a bit last night
Its a shame we only know because they still used the old code there
I would explore it on console but id have to update my modded switch
Next update for consoles and mobile will make it use the code we dont have yet
Good luck, had to do that for animal crossing
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
okay thank you
Dual dungeons is the name in code, but the hint only says it makes the dungeon bigger and adds more
i need worldIsInfected one π
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

Yay
Although
Noooo
Kinda bummed about it, i had soo much progress for a day 1 LGFB Skyblock
Hopefully mine isnt bugged cause i plan on streaming today
Copy the seed and generate a fresh copy of the world, scout the shimmer on a different character if it crashes when you get to the shimmer you are screwed

why is everyone in Eu rn, where all the Us night owls at?
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 :)
Ill try it with RTP potions
It's nice that we can copy the actual seed for these special world types now
Idk tbh
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
Idk how to get mushrooms in skyblock without the shroom seed
Np. I keep searching but apparently there isn't a "good" method anyway
It's about to be 7AM for me, im gonna get off work in about an hour and go home to restart my playthrough
lol, ive been up since 3am playing mincraft alone, I wanna play the new update but got no friends and lfg isnt going to well
I went to sleep and i just woke up and its 8 am
At least i woke up to care bears
lol
I want to eat the sand
bruh
I swear its strange we havent found the desert one by now
'Winter is Coming' was like, immediately
yall tried something to do with sand?
Winter is coming doesnt sound that hard
Well it's not camp green lake
I have a couple ideas for possible seed names im gonna try them out in a bit
mars?
I really thought it would be Dune related, but it seems people tried that already
that would make sense
Maybe its oasis related
back before the big boulder update the drunk worlds was numbers signifying an important date, maybe the missing seeds are similar?
We've tried so many dune related ones but like thats the biggest desert reference I can think of
I have tried "spice" "atreides" "lisan al gaib"
same
you tried bin laden?
It could be pharaoh related
You could try like "The spice must flow"
nothing
nothing for another hour?
yep
or is it taking 30 years for the hash program to find a match
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
Im guessing people tried Mad Max referenced too?
Some MadMax refs were tried, not sure how many
is there any dictionary with api that can somehow get words related to others (like words related to "desert")
hi guys gonna do a expert summoner run first time, should i try any seceret seed if yes which one
all of them
dang
all of them
Well secret seeds have been changed to special seeds and while 35 new seeds are the "secret seeds" now
then again we can't currently do all of them

we're missing 4, and one is bugged on pc
which one
dual dungeon is bugged
We do have confirmation atleast that dual dungeons DOES have a code we havent found
oof
it's most likely bugged on mobile and consoles
Iamerror and jaggedrocks
Its not bugged for PC, its bugged for mobile
desert, hallow, infected world, and portals in chests are missing
i will give those a try
oh damn, in reverse?
We have confirmation from Loki that the mobile thing is a bug and not the intended seed, so dual dungeons is still unfound
And if you really want to make it wacky, save the rainforest
We need dualdungeons, surfacehallow, infectedworld, portalguninchests, and surfacedesert
anybody got a world file for the mobile dualdungeons then?
We tried that, its going to give the bugged world seed
what does it do
Alot more living trees
just to play on 
got it
I do think it might be one with a hint in the changelog itself, just like all others listed there
Id rather find the phrase honestly, if your looking to just play the world theres already ways to do that without it
type in every quote in the changelog in order
i can upload world to workshop
2 or 3 words at a time
Check on the forums/reddit, or the steam workshop, people have already posted/started posting how to there
Unfortunately not gonna work as jagged rocks is also hinted at in there but not as a single phrase
Although iamerror makes chest loot random so if you dont want that then, maybe go with abandonedmanors
can i get a point in the right direction

blinkroot glows now?
i think the chests become balanced with 6 seeds or more active
interesting
prob to make all seed runs more painful
ohhhhhhhhhh okay
so everything lgfb isn't gonna have huge progression skips
Good morning everyone β¨οΈ
Thats so messed up lmao
even finding a zenith wasn't gonna save us lol
Heres where someone rendered the seeds that don't have codes, try here if I had to pick anywhere https://www.reddit.com/r/Terraria/s/ft0vSNhI9w
God what does one have to do to get the last few seeds
Desert has to be obvious but something we havent thought of
Cactus related? Antlion related?
I think ironically enough actually anything desert related lol
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
Could also try computer virus related things for the infected seed
Is there a good way to earn easy coins so I can have the Pylons?
cant wait to do a run with all 43 seeds (excluding gfb as that gets auto enabled when its components are selected)
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
Think I heard someone mention that, yes
What about vulture related?
RIP
I know I barely started yesterday, but any good way to earn easy lot of coins early pre hardmode?
I never really felt a need to use it but it was def a fast way
At this point im genuinely hoping that cactus will just return from their slumber and go "we now have all of them lmfao"
pls join my post π₯Ί
the way I usually farm money is killing eyes of cthulhu or king slimes
it's not mega efficient but it helps
kill a boss (like Eye of Cthulhu) again and again and sell all the loot
Still I haven't seen the item to summon the Eye of Cthulhu yet, I need to keep looking and I need to get good armor and weapon to beat it
you can craft it pretty easily
it was 31 earlier so it probably hasnt shrunk back to 30
ok
just farming demon eyes at night a lot
Might had to look at the Ice Caverns because I remember I went there and found insane good weapons
5 remain
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
ya snow cannon is really fun pre eye
Also hmmm, I saw this dark ores the last time I played yesterday, I need to farm those essential
Its 30, dual dungeons on mobile is a bug and not the actual phrase
Huh what? Is it really good weapon? Can I find it at the Ice Caverns?
ok
Portal, Desert, Corruption, Dual Dungeons, Hallowed
yeah i tried my ideas and they didn't work
it's a solid weapon early game yes, and yes it's in ice cave chests
what about the angel statue?
does anyone have a zenith seed world theyve beaten they can send me the file of
I need to explore there and look for it, if I need to keep exploring down then I will
the moon lord torso is in locked chests in the dungeon right
Dang I remember I played that biome a lot and yeah I was kinda farming a lot of stuff there lol
Guess imma check back here later xd
I can't wait to fight the Eye of Cthulhu once I'm prepped and got everything (still need to look for it)
does the angel statue glitch still work or is it patched
just make one at a demon altar or a crimson altar with lens' if you can't find it
I'm sad.
Now that you mention, I can craft one lol, I forgot I can, I did saw two altars in the caverns
Still, too early to fight it, I need good armor and I need to find that weapon they told me
I tried to play vanilla terraria after the update for the first time in a while and my pc crashed.
realized i hit 1000hrs now
i have over 1000 if i added my hours on switch
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.
o7
so some of the seeds have just been dumb luck ig
its still kinda early, Im guessing devs will give us some hints if it takes a really long time to get the remaining ones
either that or red will be evil
hooray! i got the world to work by porting from mobile
also tried some desert related memes and desert stuff from star wars and nothing has worked so far
is it possible to beat the game in the underground seed?
1950s-1980s/2000s
So everything lol
it should be
Early early 2000s I mean. Like pre 2002
we could try stuff relating to dune then. the original movie was released in 1984
idk how you would get wyverns in Moles
Dune's been tried over and over
so wings might not be possible
mad max takes place in a desert right
nope for both :/
say the line john fallout4
checked both yea
just tried saguaro (like the cactus) and it didnt work
I feel like any one word seed wouldve been cracked by now
yeah
but then again it could be an obscure word as noInfection was fishmox and it took a while to crack
Maybe its a pun??
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?
Yes
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...
including character?
I dont think that would matter
so just the world?
anything new?
Yes
Still 30/35
sad, i hope people figure out these last 5 seeds
ill try thinking of more seed ideas
theres new stuff in new worlds but you dont need to create a new character
Well..looks like blank world seed isn't real
I thought about something with RGB by the hollowOnTheSurface but I donβt know how to write it in words
https://forums.terraria.org/index.php?threads/in-another-dungeon-seed.133086/ found an old post on the terraria forums from 2024 suggesting to add a seed with multiple dungeons π€
don't think this will help finding the seed but thought it was neat
What is the difference between secret seeds and special seeds?
Special have A LOT more impact
Special seeds are now seen in a menu, secrets have to be manually entered
And there is no way quckly access secrets seeds after creating a world with them once? Some games have that π€
has anybody else seen a boulder over the dot of the I on the titlescreen?
i really hope they add that eventually, having them be permanently unlocked for us to use as we want would be great
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
probably only after we actually find them all
What is fishmox a reference to?
broad spectrum antibiotics
Ohhhh
does noInfection prevents the infection in hardmode?

Good question
we dont jnow
i wonder if worldisinfected references some kind of specific plague then
bubonic? Covid?
nope
I can check rq
how i can play with my friend pc/ps5 ?
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
It does not
Checked the code
crossplay is a later update
That care bear movie one is so dumb istg
Maybe fully infected is something related to what the dryad says when the world is fully corrupted? 'Things are grim indeed' ?
Tried
most things we say, people have tried
Doesnt hurt to try them
I tried this too
Tried all negative quotes
wdym?
Thats hilarious
which ids are doubled?
look at the items lol
you can use itemIDs on any text field
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
iirc its like [i:1234]
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
probably what happened yeah lol
so the item id of the items inside the chest?
Did you try general/scientific terms for plagues? What about ones that affect animals/plants more than people?
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
We can try more general. Fishmox was just very specific
or changed up the whole dialogue box instead of slapping the (good) portraits on the side
Thats 100% a bug someone would cause, I have done the same. Moved something to its own method and then kept the original there too lol
i tried fish ones
how did people find out fishmox
Good question
Dictionary
dictionary attack
fish and mox are two different words
Fishmox is a general antibiotic yeah
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
β
We have the result codes and the method to encode a word so we can brute force
β
disagree
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?
i guesss that makes sense for No infection
yep
Actually just accidentally came accross the codes again while checking the no infection seed code
can no longer harvest a blooming plant with staff of regrowth / axe of regrowth
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
axe also got nerfed to 125%
not what it says in the notes
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
Itβs not mature
If its not blooming you probably cant harvest it
but you could before the patch
thats my issue
Likely a qol improvement
its not qol to not let me get deathweed seeds outside of a full moon
its a nerf
if it's intended
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
Its most likely intended to stop people from accidentally breaking their plants
I always have hated the massive trees
you didnt read what i said
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
My favorite background is the new beach one cuz look at that lil guy in the background
yeah a lot of the backgrounds are framed as if the trees are in the foreground. weird.
Wrong reply
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
well, you were able to do that last patch and it'd drop seeds
and now it doesnt break the plant at all
Do you perhaps have the book that stops you from breaking plants in your inventory
i'd always use it to get deathweed seeds without waiting for a full moon
first thing i thought about, but i dont have it, didnt buy that book on this playthrough
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
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?
Gimme just a second to check
what mod did you make
wdym new lighting, its the exact same (unfortunately)
ohhhh
mb
mostly its just vanilla changes and some new weapons, i havent made a full release for it yet
fair, i doubt much will change about that
And you're sure the plant is mature Marta?
yes, mature but not blooming
i have a boss designed id like to make, so i hope the rest of the stuff ive done doesnt break
does anyone know all of the post ML items in 1.4.5? Like the mitey titey? stuff thats not progression based
here I go again, hopefully I don't get a corrupted file because of world gen this this time.
Does 1.4.5 came with crossplay?
btw, hallow surface + no infection will give you pure hallow in the world
also how's the Health Fountain (or whatever the dead cells health potion refill called) obtained
IL edit might break, ill have to decompile the game again if i want to fix it
no
Fire world name
no, next patch
no, that's a later update
Bummer
Weβd need to find the hallow surface seed first
mmmmm golden shower
oh wait you said pure hallow i thought you said yellow hallowed
im still waking up
any1 up to play dou run
any more seeds since yesterday? last count i saw was 26/35
We at 30 since a few hours
wow four more, what are they :o
Now missing only Portals, Hallowed Surface, Infected Surface, Desert Surface and Dual Dungeons
But its been a while since progress has been made
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
I genuinely have no clue how "fishmox" was supposed to be found legit
Its a broad spectrum antibiotic
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
can you even get the palworld stuff in a skyblock world
considering most of it consists in exploring
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
The corruption is fin rot obviously
any1 up to play duo run masters w me
Actually wait no your joke is right
F is one of the first letters so it was probably bruteforced using dictionary
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
Also red: haha gas station
Yep
But yeah just kinda hit a brick wall with these others, back to throwing darts at a wall
I might just throw more compute at it
I could try finding a list of desert terms/movies/shows to give to ya cactus
we tried cowboy related stuff?
how do i get life crystals skyblock
Not fully
Sure, will probably just combine those with common English words
i tried the good the bad and the ugly yesterday but that aint work
I can also supply compute if need be
through fisching or by killing heart Slimes in the underground and i think cavern, but I am not shure on that one
no c in fishing

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
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
what achivement are you trying to get and have you tried validating your game files?
Yeah if you have an nvidia GPU I can send the code
Has anyone found the bat transformation?
I have a 4090 and 3080Ti to run on
Thereβs additional optimizations I can do but was in a rush yesterday
i already tried validating, trying to get the Terrarist achievement (the one that you need to hit and npc)
Yeah both would be pretty good
Take your time, work atm
Whats a Lucky Clover for?
Also should likely add some kind of indexing so we can all work on separate parts
slightly increases luck when in your inventory
And we should also filter out compund words
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
we dont need candid if we have can+did really
can you help with my issue?
But maybe thats a bit aggressive
I can supply compute as well, my computers pretty beefy
ok ill keep talking to chatgpt to see if he can do something
More hands on deck the faster we'd find it
i have a 5070 and 64gb of ram
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!!!!!!!
well here I go again, and I made sure it's not broken world gen π
try changing the graphics settings in the game
I did that and its still laggy
I wonder if all hallow might be a reference to sunshine, lollipops and rainbows
might have to try all the lyrics later lol
driver problems? i remember my old laptop locked at 48 fps for some reason so i either had to use windowed or low resolution to some specific value that would unlock fps
You know, I have filled a chest and change with different chests, which means there's over 40 furniture sets now.
are you on linux btw?
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
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)
Anyone got ideas for alternative phrasing of sacred/holy ground for hallow on the surface?
how do u get stone in skyblock?
Cavern layer stone slimes
ohh so i need to go down
you want to get stuff from mobs in every layer
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
Hi, anyone here know a good wiki for terrari
Normally,how many hours do you guys have to play before you have to deal with the Evil Biome spreading?
sunflowers do the trick early game
How many secret seed have we found
30*/35
How did you guys even guess the noinfection one
or for the dungeon seed something like homes/libraries/parks for something that "is too small, there are too few of them, and you don't spend enough time there'
bruteforce dictionary attack
Oh
i think so?
or slime gun?
one of the two
secret seed...??
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β¦
What does the no infection seed do? No world evil?
shimmer the vanity gun from king slime
At least there doesnt really seem to be any fun ones left
also arent altars craftable now somehow?
Thats exactly what it says it does
Ok so what does the opposite one do then. World is infected?
Just nake the entire world evil?
i wonder what world is infected does...
could be fun with drunk world
World is infected + no infection
Do we know the dungeon seed with the mixed biomes yet?
infinite infection but no infection
Also if you do moleppl and planetoids it makes the planets negative space, so gaps instead of blocks
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
How did you try that one? I thought we don't have the code for it yet
It is fishmox
Thats no infection
no that is no infection
We don't have worldisInfected
I just patched the binary
My bad sorry
replaced the base65 hash with a known one
Can you share a screen shot of the seed you just did?
I've got a list of desert related words if anyone wants to try dictionary forcing with it
I'm not tech savvy enough to mess with hashes
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
the worldIsInfected one just makes the entire world infected
nothing else it seems
didnt look too deep
here is it
Did we try dry dry bones for the desert one yet?
can people stop using imgur please
It is a mario kart course
they dont server england any more
oh
its really annoying 
Is there a list for new shimmering recipes?????
Shimmer is a shiny, lavender-colored, pearlescent liquid. It can be found at any point in the game in the Aether, a mini-biome that generates once per world in the Underground or Cavern layers, and always on the same half of the world β¦
probably here
I said NEW
well sorry that i havent paid that much attention to the rest of the server
How would you go about making one of those programs that checks the hash with a list of words?
im on windows and idk whats going on
it also takes a while to load the game
ctrl + f new shimmer the entire server
noInfection + worldIsInfected just generates a completely normal world with a normal amount of infection
I dont have any issues with drivers because it wasnt always likr this
it just started doing this after I updatrd
Or should I just start going down the list I've got and hope and pray something shows?
underground is infected while the surface is not
i have found normal surface infection on here too
I'm on mobile but you gave me decent idea
well even on mobile you can ctrl + f
just search the entire server for new shimmer
oh yeah you are right
for me there's only one crimson small stone cave, nothing else is infected
Now do that same combo but with molepeople
yeah I guess I just got a single corruption cavern too
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?
Nope. And also.. I checked and there is no info about new shimmer recipes on server
any1 know why i cant craft true excalibur
i have a bruteforce python script but it steals your mouse and cursor and clicks on your game window
The extra skyislands is...
doesn't seems to be any infection at all
the care bears movie?????
yeah
The carebears movie
That's such a crazy deep cut
I wish I'd considered it, they do live on a city of cloud islands
I completely forgot the movie takes place on floating islands
only the lower part of the world is corrupted
@delicate whale did you try the seed 'drydrybones'
Yeah didnt work sadly
I havent actually bothered generating the portalGuns one, but from what I saw from the code it only places a portal gun in 1/7 randomly generated chests, have you tried that one ingame?
also so what have we found?
Any word on the dungeon seed with all of the major biomes in it?
Nothing so far
Oh is it dry dry desert?
We have invisibleplane for Echoeverything
yeah, it seems like it's just portal guns in some chests
thecarebearsmovie for FloatingIslands
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!
and uhh fishmox for noinfection
What's the portal gun code?
Nothing on it
Ah. Darn
does rick and morty have a portal gun
yea checks out, that's the only thing I ever saw referencing that seed in the code
Yes
I had same reaction. But in a way it makes sense?(Those bears are associated with clouds I think?????????)
The bears live on floating islands made of clouds
Well that checks out then
Hoping we can get a script and I can start running a list of just desert related words
I'm definitely not cultured enough.
That said though. Its Shame blank seed(no blocks world) didn't made it into full 1.4.5 and now is lost media
vines
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
also, you know what's the difference between "halloweenGen" and "endlessHalloween"?
Also red is a nerd and marvel is nerdy so it makes sense
Whats the difference?






