Fallout 76

Fallout 76

View Stats:
4mysou1just1 Jul 23, 2023 @ 11:59am
yellow dress
I'm still trying to get a yellow dress.
It would complete my collection.
My last manikin is bare!
Except the hat.
Been hitting the vendors.
Not so good.
:steamhappy:
< >
Showing 1-12 of 12 comments
Simalf Jul 23, 2023 @ 12:18pm 
Are you talking about the Asylum worker Uniforms?
Traveler Jul 23, 2023 @ 12:26pm 
There's another dress other than the Red?
Simalf Jul 23, 2023 @ 12:30pm 
Yup there are 10 different Asylum Worker dresses.
Sr Humungus Jul 23, 2023 @ 12:48pm 
Originally posted by 4mysou1just1:
I'm still trying to get a yellow dress.

What you have in exchange for the yellow asylum dress + 38k caps?
Wack-A-Mole MLRS Jul 23, 2023 @ 1:32pm 
Can't be as much as the Red one, I just bought one for 400 caps and hat for 50 caps from a player Vendor this morning. He had allot of brown and green and blue and I just grabbed some for my NPC's. I Traded my 2 RED about 8 months ago to a friend . Traded a Bunch of other Rare stuff to a player for 2 EXPLODING VAMP 50 cals that turned into 2star non- exploding after the Legacies left. If I find that "TOAD" I'm gonna give him to MAUL... Correction on the Dress, I did not buy the Yellow, I bought 2 brown and 2 Green with hats. But he did have Pink and Yellow also..Should have grabbed them.
Last edited by Wack-A-Mole MLRS; Jul 23, 2023 @ 1:48pm
Wack-A-Mole MLRS Jul 23, 2023 @ 1:52pm 
Yes I've traded or sold so many items that people are looking for now-Most I sold or trade for the Fixer's when everyone was hoping to get one- Now they are a dime a dozen....
Mooman Jul 23, 2023 @ 4:50pm 
Here's an old post I put up to show the dress rarity code. From that yellow is the third rarest dress after red and forest. The wiki I'm sure has the percentage and it'll be low...

(Probably some errors in the logic of the post but I'll leave it as originally posted).

Originally posted by Mooman:
3 spots... let me guess Asylum dresses?

Let's look at the code in 2 parts:
{
"LVLO": {
"Reference": "ARMO - [0016B495] <Clothes_AsylumWorkerUniformWhiteDirty> "Asylum Worker Uniform White Dirty""
},
"LVOV": "0.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B494] <Clothes_AsylumWorkerUniformWeathered> "Asylum Worker Uniform Weathered""
},
"LVOV": "0.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "LVLI - [0050E3F9] <LL_Clothes_Asylum_Rare>"
},
"LVOV": "0.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
}

Game first determines if Dirty White, Weathered or Rare at I think a 1/3 chance. If rare uses code below.

{
"LVLO": {
"Reference": "ARMO - [0016B499] <Clothes_AsylumWorkerUniformWhite> "Asylum Worker Uniform White""
},
"LVOV": "50.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B498] <Clothes_AsylumWorkerUniformBrown> "Asylum Worker Uniform Brown""
},
"LVOV": "50.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B49B] <Clothes_AsylumWorkerUniformGreen> "Asylum Worker Uniform Green""
},
"LVOV": "50.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B497] <Clothes_AsylumWorkerUniformBlue> "Asylum Worker Uniform Blue""
},
"LVOV": "50.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B496] <Clothes_AsylumWorkerUniformPink> "Asylum Worker Uniform Pink""
},
"LVOV": "50.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B49C] <Clothes_AsylumWorkerUniformYellow> "Asylum Worker Uniform Yellow""
},
"LVOV": "50.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B49A] <Clothes_AsylumWorkerUniformForest> "Asylum Worker Uniform Forest""
},
"LVOV": "10.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
},
{
"LVLO": {
"Reference": "ARMO - [0016B49D] <Clothes_AsylumWorkerUniformRed> "Asylum Worker Uniform Red""
},
"LVOV": "0.000000",
"LVIV": "1.000000",
"LVLV": "1.000000"
}

The way to read that is to start at the top. The game rolls a random percentage, a roll of 0-99. If it is 0-50 (usually <=) it will award the that item. If 51 to 99 it moves to next item.

The first step is a 51% chance to get White, 48% chance for other colours. If White fails then there is a 51% chance of Brown for that remaining 48% or 24.28% chance. This continues on till something is awarded or it ends up on Red.

You can start to see why Red is so rare as you have to 'fail' a lot at winning anything else.
4mysou1just1 Jul 24, 2023 @ 3:06am 
[quote=Mooman;3


Game first determines if Dirty White, Weathered or Rare at I think a 1/3 chance. If rare uses code below.



The way to read that is to start at the top. The game rolls a random percentage, a roll of 0-99. If it is 0-50 (usually <=) it will award the that item. If 51 to 99 it moves to next item.

The first step is a 51% chance to get White, 48% chance for other colours. If White fails then there is a 51% chance of Brown for that remaining 48% or 24.28% chance. This continues on till something is awarded or it ends up on Red.

You can start to see why Red is so rare as you have to 'fail' a lot at winning anything else. [/quote] [/quote]
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYes

Yes I remember that post.
Youtube showed someone attempting to figure it out.
It was determined that just over 1000 attempts would grant a red dress.
This was done by collecting all the dresses.
Each type was displayed in stats of acquiring percentages.
But since then it like all things have been NERFED!
I've already tried 5000 spawn points since I got the red dress.

As I said, Just looking for the yellow.
Since its the 3rd most difficult dress to acquire.
It's not worth what most of you here have asked.
Moo you have mocked me for my grinding the red dress.
Yes 20,000 spawn points is absurd.
I did it for someone I thought was a friend.
She asked about it. I was not aware of it. I googled it. I watched the video.
Thought 1000 tries is nothing in this game.
Soo I'll do it for her.
Took a year grinding every day.
I got the dress, I don't got her...
Raven Heim I remember...
My short term memory is whacked.
Not my long term yet.
Thank you all for talking about it to me.
I will check each time I hit a server.
I can be patient............................................................................................................................................................................................................................................................................................................................................................................. 365:steamthumbsup:
Sr Humungus Jul 24, 2023 @ 3:27am 
I wasnt joking, offer still up, no problem to trade, i have two

https://steamcommunity.com/sharedfiles/filedetails/?id=3009102592
Traveler Jul 24, 2023 @ 9:48am 
Originally posted by Simalf:
Yup there are 10 different Asylum Worker dresses.

Oh, I think of those as uniforms.
Mooman Jul 24, 2023 @ 1:51pm 
Originally posted by 4mysou1just1:
YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYes

Yes I remember that post.
Youtube showed someone attempting to figure it out.
It was determined that just over 1000 attempts would grant a red dress.
This was done by collecting all the dresses.
Each type was displayed in stats of acquiring percentages.
But since then it like all things have been NERFED!
I've already tried 5000 spawn points since I got the red dress.

As I said, Just looking for the yellow.
Since its the 3rd most difficult dress to acquire.
It's not worth what most of you here have asked.
Moo you have mocked me for my grinding the red dress.
Yes 20,000 spawn points is absurd.
I did it for someone I thought was a friend.
She asked about it. I was not aware of it. I googled it. I watched the video.
Thought 1000 tries is nothing in this game.
Soo I'll do it for her.
Took a year grinding every day.
I got the dress, I don't got her...
Raven Heim I remember...
My short term memory is whacked.
Not my long term yet.
Thank you all for talking about it to me.
I will check each time I hit a server.
I can be patient............................................................................................................................................................................................................................................................................................................................................................................. 365:steamthumbsup:

I mock everyone at some point... But what I'm really trying to do is show the system Bethesda have set up is absurd. If it wasn't for datamines showcasing just how rare these stuff are I doubt anyone would even know, Defiance isn't a heavily tracked area.

In the end players will spend their time as they see fit. Bethesda on the other hand should review that code and change it as it has a significant flaw in its logic.

The funny part is they have new code that does a much better job of rarity for things like the Nukatrons that they could retroactively apply to make things fairer. Instead they keep what they have and encourage the duping market.

If you couldn't tell its really more about slagging off Bethesda as a company that just doesn't "get it".

P.S: I've never farmed Asylum Dresses so this isn't about sour grapes.
Last edited by Mooman; Jul 24, 2023 @ 1:51pm
Arcanix Jul 24, 2023 @ 2:33pm 
Some of us use toilets. Carry on.
< >
Showing 1-12 of 12 comments
Per page: 1530 50

Date Posted: Jul 23, 2023 @ 11:59am
Posts: 12