#Lethal Resonance

1 messages · Page 7 of 1

upbeat hound
#

I just play with sounds : (

quartz compass
#

u know what u and potato actully deserve it i will make an account just to thumps up tmlc and your mod and advanced company

#

i actully can make this if u want

quartz compass
#

but don't know if i can edit the dll of meltdown

#

since it's not mine

upbeat hound
#

PLEASE

#

you could add it and tie it to the event take apparatus

quartz compass
#

1 sec let me pull up there githup and try then

upbeat hound
#

Then add a 2 minute timer and make the ship shake and lights flicker with the outside explosion sounds

#

If you really want to help make it immersive

#

I already also put out a request for someone to make a mod for screen shake, but no one has responded to that one yet unfortunately

quartz compass
#

the ship shake out of my league i think the light flicker and terimnal flicker i did them before

upbeat hound
#

I mean I’ll take it haha

#

More immersion

#

I love Facility Meltdown

#

But only after You send me your thumb in the mail you thumbs up the mod

small pond
#

if all you plan to do is more effects that happen during the meltdown sequence take a look at the effects folder, you can upload your own custom effects as your own mod (since its an api)

cold vector
#

WOW this sounds incredible

upbeat hound
#

riighhtttttt

upbeat hound
#

lmao

small pond
#

all of those effects are made for use during the facility meltdown and don't really make sense outside of it

upbeat hound
#

I mean Like Pizzatowermusic

#

it starts the music on the event take apparatus

#

completely seperate from facility meltdown

upbeat hound
small pond
#

i think having the music play is cool as a seperate mod but i'm not seperating the effects from the meltdown sequence here. the entire mod has been designed around being a choatic and stressfull event when you take the apparatus and a lot is on the line, including the effects. therefore it makes no sense if the stressfull visuals happen when you know that nothing is on the line

#

i take this game design stuff pretty seriously :3

small pond
quartz compass
#

plus i actully made a simple thing to just set rpc light on and off for 2 min and took the appratues and stayed at the ship

#

this shit will give someone a seizure

upbeat hound
#

Im talking about a SEPERATE mod that just makes the ship lights flicker in intervals after the apparatus is taken, not to be confused with using ANY of Facility Meltdowns code

#

I dont want anyone stealing your work bongo

upbeat hound
gentle pilot
#

5 separate mods

upbeat hound
#

I mean LR MELTDOWN already takes BepinEx(obviously) pizzatower and Evisa Hook. If you have Lethal Resonance that needs LCSOUNDTOOLS and CUSTOMSOUNDS PLus an extra dependancy for LR MELTDOWN

#

all I know is that if I install LR and LR MELTDOWN I have 11 mods installed

gentle pilot
#

LETHALRESONANCE
LR_Meltdown_Core
LETHAL_RESONANCE_MELTDOWN
LETHAL_RESONANCE_MELTDOWN_LIGHTS
PizzaTowerEscapeMusic
FacilityMeltdown

#

or somth like that

upbeat hound
#

well if he made a lights thing if he wanted to give the DLL to me then it would be merged into LR MELTDOWN

#

and right now Im working on merging LR MELTDOWN and LR MELTDOWN CORE

#

so minus 2

gentle pilot
#

now my main question

#

how does the

#

core

#

have more downloads

#

than the mod

upbeat hound
#

Right now its 1.BepinEx 2.CustomSounds 3.Facility Meltdown 4.HookGenPatcher 5.LCSOUNDTOOL 6. LETHAL RESONANCE MELTDOWN 7. LethalLib 8. LR MELTDOWN CORE. 9.PizzaTowerEscapeMusic 10.TerminalAPI

#

and im missing one

#

oh easy

gentle pilot
#

Who downloaded the Core with NO mod to go with

upbeat hound
#

LR Meltdown CORE IS the mod

gentle pilot
#

then

upbeat hound
#

LR MELTDOWN is the config

#

(Which I recently found out you can put together)

gentle pilot
#

what?

#

Wait

upbeat hound
#

so anyone who installs LR MELTDOWN CORE can install without LR MELTDOWN. BUT anyone who installs LR MELTDOWN, CANT without LR MELTDOWN CORE

gentle pilot
#

This is the mod

#

and this is just the config

upbeat hound
#

yes ;-;

upbeat hound
#

but if you download the pretty one it works right

#

if you download the one that says NO TOUCH

gentle pilot
#

so you're telling me you made the config look official

upbeat hound
#

it no work right

#

because it has the CORE as a dependancy

#

correct

gentle pilot
#

ok

upbeat hound
#

did you read the README section

gentle pilot
#

so the core will not work without both

#

Yea I read it

#

Just weird setup

upbeat hound
#

it is weird

#

but its only because I have to overwrite another plugins script

#

without uploading a dll

#

and the script goes in the plugins folder so I have to make sure it sees my script before the actual mods script so it overrides

#

I think I packaged it all into one

#

I just dont know if it works corectly

#

yet

quartz compass
#
    private bool LightState;
    private int lightinterval;
    
    public EmergencyLightsEffect() : base(MeltdownPlugin.modGUID, "EmergencyLights") {}

    private void LightFlicker()
    {
        if (this.lightinterval > 10)
        {
            this.LightState = !this.LightState;
            
            // Assuming you have a method to set the lights state in RoundManager
            SetLightsState(this.LightState);
            
            this.lightinterval = 0;
        }
        else
        {
            ++this.lightinterval;
        }
    }

    // Assuming you have a method to set the lights state in RoundManager
    private void SetLightsState(bool state)
    {
        for (int i = 0; i < RoundManager.Instance.allPoweredLightsAnimators.Count; i++)
        {
            RoundManager.Instance.allPoweredLightsAnimators[i].SetBool("on", state);
        }
    }

    public override IEnumerator Play(float timeLeftUntilMeltdown) {
        // Set lights on
        SetLightsState(true);

        // Wait for 2 minutes (120 seconds) with light flickering
        float duration = 120f;
        float elapsedTime = 0f;

        while (elapsedTime < duration)
        {
            LightFlicker();
            yield return new WaitForSeconds(0.1f); // Adjust the interval as needed
            elapsedTime += 0.1f;
        }

        // Set lights off
        SetLightsState(false);

        yield break;
    }
}
#

@small pond this should work right ?

small pond
quartz compass
#

yeah i'm not sure it's a good idea either

#

after testing it

upbeat hound
#

that bad huh

#

what happened?

quartz compass
#

it's just the same as your annoying friend finding the remote and flickering the light on and off

#

doesn't add anything to the meltdown sequnce

#

but the screen shake on the other hand makes sense

upbeat hound
#

sad day

quartz compass
#

hey man on the other hand we have the buttplug mod u can still use that for something

upbeat hound
#

Im about to send a more updated one

#

Id love to get some feedback

upbeat hound
quartz compass
#

"again" ?

upbeat hound
#

alright any sugguestions of how to get MOAR SUSPENSE?

lavish thorn
#

is this for outside?

upbeat hound
#

yes

lavish thorn
#

i dont think discord compression is doing it any favours unfortunately

quartz compass
#

hey u know the sound from scp foundtion for the nuke ?

lavish thorn
#

the tension part reminds me of the THX sound effect

quartz compass
upbeat hound
#

kinda feel like a song at the end for some reason lol

#

Anywayssss any suggestions

quartz compass
#

yeah but the announcement part of this sound alot nicer

lavish thorn
upbeat hound
#

I cant really

lavish thorn
#

sad

upbeat hound
#

If you're at march near the fire exit

#

it doesnt make sense to hear the Ship speakers

lavish thorn
#

true

upbeat hound
#

UNLESS I CAN FIND A CLIP THAT SOMEONE SAYS EMPLOYEES PLEASE RETURN BACK TO SHIP RIGHT AFTER THE HORN SOUND THAT THE SHIP UPGRADE MAKES

#

actually maybe I could use the signal translator sound at the beginning and have a voice say something along the lines of "Protocol red, please return to the ship" some random sentance along those lines

#

any other ideas?

#

or suggestions

lavish thorn
upbeat hound
#

hmmm

#

I promise nothing

#

any other ideas?

lavish thorn
#

nothing comes to my mind as of now

upbeat hound
#

its hard to make this one as exciting because you're further away from the action

#

which is why its mellowed

quartz compass
#

u can make it not exciting and make it sad

lavish thorn
#

is it possible to add dirt moving (sound)?

quartz compass
#

like play on the part that your friends will die

upbeat hound
#

Did you use headphones to listen to the clip?

lavish thorn
#

yeah

#

i hear the rumble

upbeat hound
#

there is an earthquake sound

lavish thorn
#

ye

upbeat hound
#

?_?

#

dirt moving?

upbeat hound
#

what does this sentance mean

#

*sentence

lavish thorn
#

hm, i cant find a good example, nvm then

quartz compass
#

like if u inside the facilty you want pump adrenalin and make u try to escape outside u can try to make it just dreadful with sad music that your friends are dying and u just watching hopelessely waiting for them to come out

upbeat hound
#

No music my boi

#

no can do

#

anything besides music tho?

hallow forum
upbeat hound
#

ofc

#

well if there are no ideas

#

thats prob gonna be the final product

lavish thorn
#

its good as is imo so

upbeat hound
#

anyone UNhappy with it (Besides Xu)

lavish thorn
#

i think it portrays the situation well so

quartz compass
#

nah sound good to me too

upbeat hound
#

okay okayt

#

ALRIGHT SO WE GOT INSIDE

#

AND WE GOT OUTSIDE

#

HERE WE GO MOMENT OF TRUTH

#

(This means its uploading to the thunderstore)

#

v1.1.0

  • Ate dependancy mod as it was actually just me not knowing how to properly set this up in one mod until now.
  • Seperate alarm added for outside which is different yet synced to the inside meltdown. (This should work)
lavish thorn
#

hyped to see it update on r2modman

upbeat hound
#

set your clock for about 40 minutes then 😭

#

I also dont promise it will work

lavish thorn
#

yupp

upbeat hound
#

AND

#

AND

#

AND

#

If you already have it installed

#

DELETE THE OLD DEPENDANCY THAT SAYS "NO TOUCH"

lavish thorn
upbeat hound
#

mhmm

lavish thorn
#

kk

upbeat hound
#

delete it

#

once it updates that is

#

it also may completely not work

lavish thorn
#

time to wait 40 mins to find out

upbeat hound
#

so we'll find out together : D

#

AND

#

in the script

small pond
upbeat hound
#

Well I gotta make sure it works first

#

but thank you for the reminder

#

appreciate you

#

I have no idea if this little spot works

#

BUT IF IT DOES

#

it should mean that you can overlay your own music by entering the file name if its in the music folder with the 2 alarms

lavish thorn
upbeat hound
#

(Maybe)

upbeat hound
#

delete that

#

shame

lavish thorn
#

we appreciate everyone

upbeat hound
#

still

#

plz

lavish thorn
#

what you mean its rude? im praising that you both have done a fantastic job

#

this mod is amazing

#

ohhh i think you are misinterpretting the crossed out text, sorry

upbeat hound
#

no worries no harm at all

lavish thorn
#

i use cross out text as like a secondary note, sorry

upbeat hound
#

no seriously My feelings arent hurt

#

I just know how I would feel

#

ya know

lavish thorn
#

yeah is fine, happens

#

in either case

#

thank you both for this

upbeat hound
#

ofc!

#

I breathe audio

#

I eat audio

#

I DRINK audio

lavish thorn
#

you have become the audio

upbeat hound
#

precisely

upbeat hound
#

To focus on this

#

you should be able to overlay your own music if you want music to play during it

#

This will absolutely work will Probably workmay work

lavish thorn
#

so you have a choice whether you want the ambiance, or the ambiance with your own custom music? (assuming it works)

upbeat hound
#

no no

hallow forum
#

I appreciate pixel very much for all his hard work

upbeat hound
#

so its like overlayed

hallow forum
#

Hes done so much

upbeat hound
#

so it mixes

#

them together

quartz compass
lavish thorn
#

yeah thats what i mean, but ye seems cool

upbeat hound
hallow forum
#

Dang

lavish thorn
hallow forum
upbeat hound
#

Lets not ruin this moment for me. Xu has come so ....

upbeat hound
hallow forum
#

Whoops

upbeat hound
#

.>

hallow forum
#

It's okay, I won't be a party popper, I do really like the mod lol

upbeat hound
#

ayeeeee

hallow forum
#

Plus am too sick to think of creative insults rn

upbeat hound
#

oh no how sad

#

But hey

#

you really got to wonder

#

maybe you got sick

#

because you deserved it👀

hallow forum
#

Oh 100%

#

Maybe not deserved it, but my luck has steered in the past towards that type of area

#

Caught covid I think 6 times and lost my smell :p

#

Plus many other things

upbeat hound
#

nah I feel like deserved it was pretty on brand here

hallow forum
#

I've never done anything wrong

#

I've always been supportive and encouraging

upbeat hound
#

trains

hallow forum
#

Tbf that wasn't me

#

That was feedback from other people

upbeat hound
#

hmmmmm

#

I GUESS

hallow forum
#

Mhm

upbeat hound
#

why are you waking up at this hour?

#

oh wait

#

uk 10 y/o boy

#

getting ready for school?

hallow forum
#

Mf

#

I just came back, I got a fever or smthj

upbeat hound
#

from school?

hallow forum
#

From coleg

#

I'm old yknow

upbeat hound
#

well Im sure your grandkids must be proud that you went back to school at that age

#

really respectable tbh

#

what happened to the rest of the discord, look you scared everyone away

hallow forum
#

It's a natural ability

#

You can hire me anytime

upbeat hound
#

sorry all I need is Clemonade and Moroxide

#

and Bongo

hallow forum
#

Bongo cat is here?

#

Big fan

upbeat hound
#

bongo cat? like the meme?

#

in hindsight I see that Bongo's PFP is a cat

hallow forum
#

Wow you are slow

upbeat hound
#

Maybe I should go back to college

#

yeesh

hallow forum
#

Consider middle school

#

Might be more efficient

upbeat hound
#

unlikely, me personally I prefer to get robbed so college is really the only option tbh

hallow forum
#

I prefer being stabbed so maybe highschool

upbeat hound
#

There is WAYYYYYYY to much to unpack in that message

hallow forum
#

My life is like a box of schrodinger's chocolates

upbeat hound
#

you can just say the box is empty

#

you dont have to fancy it up like that

#

ALSO what mod do you make

#

for that colored name

hallow forum
#

I made server boosting

#

You don't got nitro

upbeat hound
#

which is?

hallow forum
#

Well it's nitro prem

upbeat hound
#

thats it

#

so you paid money

hallow forum
#

Do you not know how discord works

#

Nah I got a free month

#

Everyone did I think

upbeat hound
#

Wheres mine

hallow forum
#

Idk it would've shown a notif

#

Tbf ur username is also not updated so idk

upbeat hound
#

what does that mean I keep getting that notification

#

for like idk 6 months now

#

okay its updated what now

hallow forum
#

Idk i just randomly got the notif for free nitro

lavish thorn
#

time to find the apparatus

upbeat hound
#

IS IT ON THE MODMAN

lavish thorn
#

yes

upbeat hound
#

IS IT IS IT

#

WOOOOO

lavish thorn
#

1.1.0?

upbeat hound
#

yessir

lavish thorn
#

yup, its up

upbeat hound
#

Im going to do the same

#

I hope it works

lavish thorn
#

as do i

upbeat hound
#

and that both alarms are seperate as well

#

RESTART THE GAME FOR CUSTOMSOUNDS TO WORK PROPERLY WHY

hallow forum
#

Separate profile needs restart lol

lavish thorn
#

i didnt get that, did it happen when loading a save or?

hallow forum
#

Prolly to generate confidence or smthn

#

Config*

upbeat hound
#

"confidence"

hallow forum
#

Shush

upbeat hound
#

NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO

#

it doesnt work out of the box

lavish thorn
#

aww

upbeat hound
#

but why : S

#

did it work for you koishukaze

lavish thorn
#

is there an easier way to find the apparatus

#

lmao

#

i also got sidetracked

upbeat hound
#

Get Good Not to my knowledge

lavish thorn
#

usually im lucky and inverse next to them

#

why's the appratus always on the other side of the planet

quartz compass
#

yeah doesn't work

upbeat hound
#

Working on it

#

damn I was right about to go to bed too

#

pain

lavish thorn
#

hm, for me the music in general doesnt work

quartz compass
#

i understand nothing

upbeat hound
#

This is very helpful

#

thank

#

works

#

now I cant figure out if outside works

#

cause I cant make it outside in 2 minutes

quartz compass
#

upload the file and i will test

#

u should use the dev mod

#

to be able to telelport inside and ouside and things like that

upbeat hound
#

its just called dev mod

#

I use lethal dev

#

But I dont have a teleport option

#

that I know of

quartz compass
upbeat hound
#

too complicated

#

KINDA WORKS

quartz compass
#

kinda ?

upbeat hound
#

so inside you only hear inside alarm

#

outside you hear both?

#

I think

quartz compass
#

hmmmm

upbeat hound
#

thank god they're synced

#

but when you go outside the alarm inside gets quieter

#

maybe one of you can make this make sense

#

how do completely seperate the volume from inside and outside alarms

#

Someone said "i think these is a variable called isInsideFactory and u can make an audio source and make it change when it changes
(the variable is in the player controller)"

#

unfortunately even this is beyond me

#

it could be as simple as he said, BUT i dont want to guess the tag is isInsideFactory and do apparatus runs so if anyone more knowledgeable sees this and can just download it and fix it and send it back that would be great

#

If not, I'll try again tomorrow, for now everyone gets mixed alarms smh

hallow forum
#

The FC mod

#

Has a radiation detector

#

Get an infinite stamina mod

#

Buy it

#

Then check

bleak lily
#

got this errors

daring pendant
#

Refer to:

daring pendant
# bleak lily got this errors

Basically it just informing you of missing audio files that don't (yet) exist in game (probably on pixels desktop lol)

#

Do love how it gives a 404 error read back though, a favorite right next to 502 bad gate (which i luckily haven't got (here) and don't think i can least from this mod anyways)

tame ledge
#

i like how it's looking for .wav when its not even possible to have a file named like that

neat jackal
bleak lily
#

no

neat jackal
#

Reinstall? 100% its previous because it's asking for files that arn't even in the script anymore

#

oh nvm

bleak lily
#

i mean i installed it t oday

neat jackal
#

the script was never updated

bleak lily
#

i see

molten bolt
#

Oof

neat jackal
#

Well, he did his update...but not my fix 😅

molten bolt
#

Time to Remake the Eyeless Dog

molten bolt
#

Ship sounds?

#

Cool!

#

Gotta fix it

molten bolt
#

ok Breathing time

#

who's here to give an opinion?

daring pendant
#

On my phone there's an odd BRRPP noise with it, will give it a listen on the pc in a min (business calls)

molten bolt
#

dw

daring pendant
#

Love the raspiness/weeziness while keeping the bassy tone of the creature in tact/taking size into account, does still have a bit of roar feel still (with mainly the first background howl), 4-12 seconds(cause that's tech when the audio ends) felt spot on though for me at-least

#

First 4 seconds would have me thinking i'm dead/immediately about to be

tame ledge
#

is there like a zip or smth with all the vanilla sound files so i dont have to look for all the sounds?

molten bolt
#

are you sure do you want all the files?

upbeat hound
#

👀

tired vale
#

Is it normal to have a bunch of legacy path log entries?

[Warning:LCSoundTool] Legacy directory location at BepInEx/Plugins found!

#

[Warning:LCSoundTool] Legacy path contains the requested audio file at path H:\Games\SteamLibrary\steamapps\common\Lethal Company\BepInEx\plugins\CustomSounds\LethalResonance\Company & Jeb\AngerAtDesk2.ogg!

upbeat hound
#

Also guys, so as you guys know I recently made an outside alarm separate from the inside alarm on the LR MELTDOWN fork

tired vale
#

It seems to imply LCSoundTool is expecting a different directory structure than CustomSounds

molten bolt
upbeat hound
upbeat hound
#

So you can hear the booms be a little more surpressed and have quieter air raid sirens, but also have sounds of the ship shifting on the ground that’s shaking and creaking metal etc

upbeat hound
#

NEW LR MELTDOWN UPDATTEEEEE WOOOOOOOOO

#

v1.1.2

  • Seperated alarm audio (Indoors from Outdoors)
  • Added some stuff preparing the the possibility of a 3rd ship alarm audio
  • Shoutout to Clemonade who helped make this possible!
#

ALSO it has been brought to my attention that some amongst you think the outside alarm is too "bland" I would love if people could give some suggestions of how I could reasonably spice up the alarm for the outside. Last time for the inside meltdown @gentle pilot gave a great idea for a constant rumbling so i wanted to put this out there and see if I could get any new ideas

gentle pilot
upbeat hound
#

LMAO

lost kindle
lost kindle
daring pendant
daring pendant
upbeat hound
#

see the thing is though is I feel like there wouldnt be too much happening at the beginning especially from the outside

#

h,mmm

daring pendant
#

I mean, tbh i'd agree, but just saying if you had to add something in

upbeat hound
#

the struggle

upbeat hound
#

HELP ME DONT SEND ME GIFS😭

#

suggestions people suggestions

upbeat hound
#

pain

unreal ore
#

why do the spider footsteps sound so weird?

upbeat hound
#

This is a great question considering that spider footsteps isnt a sound we touch

unreal ore
#

yeah i couldnt find the footstep audio in the mod files so i figured

upbeat hound
#

BUT

unreal ore
#

thing is i dont have any other audio rework mods

upbeat hound
#

you arent the first person to mention that

#

Our best guess is its related to customsounds or lcsountools

#

same thing with slime (Which is why there is a text file in the slime folder)

unreal ore
upbeat hound
#

they are working on it

#

We think customsounds has fixed its issues

#

I believe we're just waiting on LCSOUNDTOOSL

unreal ore
#

alright well ill tinker with the mods abit and see if i can get things working

upbeat hound
#

cool cool

steel raven
molten bolt
#

eyeless dogs done.
Ready for the next update : )

small pond
#

💀 (idk if you guys allowed that but i think they may have copied the base)

slim orchid
upbeat hound
slim orchid
#

oh ok sorry

#

but the rest sounds good! 👍

upbeat hound
#

as a reminder I just started producing sounds, I appreciate the heads up tho

#

moreover if its something that really bothers you, i dont mind if you patched it up and sent it back over without the clipping

#

If not then it is what it izzzz

#

but MAN I have no idea how to produce huge booms without clipping

slim orchid
#

your boom is missing some mids, I think
but im no audio engineer

#

like it has some nice lows, but maybe adding some mids might help?

upbeat hound
#

I will give that a try

#

Cant undo the clipping tho

upbeat hound
#

get worse headphones and you wont notice as much🥲

#

or just dont fail getting the apparatus

slim orchid
#

dont want to be that guy whom links to yt vid tutorials but I've actually watched this just now and it seems fairly good
https://youtu.be/PKJLEO_4qSg

In this video, go over how to design explosion sounds. Believe it or not, explosions sounds can be designed from everyday objects that you have just lying around your house, and in this video, I'm going to walk you through my process for creating massive explosion sounds.

#Aftertouchaudio #SoundDesign #SoundEffects #ExplosionSoundEffects #BigEx...

▶ Play video
vale gorge
#

step 1 buy explosives

slim orchid
#

💀

upbeat hound
#

This was supposed to replay to anon

#

reply*

#

Has anyone noticed MELTDOWN audio being extra quiet since the new update?

vale gorge
#

havent checked

#

hope this answers your question

upbeat hound
vale gorge
#

hangs up

golden path
upbeat hound
#

this is coming along so nicely

#

outside alarms working nice and good too at end of clip

golden path
upbeat hound
#

literally

fresh steeple
#

the apperatus loud and annoying

upbeat hound
#

NO (technically)

#

wait

#

maybe

#

what do you mean

fresh steeple
#

its a loud a buzz sound

#

like ZZZZZZZ

upbeat hound
#

watch the video right there

golden path
upbeat hound
#

happens to be a apparatus

#

that sound?

fresh steeple
#

I cant tell

#

II am sending you a video

#

frick

golden path
# upbeat hound

This peaks only one suggestion: is it possible to make the explosions beefier?

fresh steeple
#

.mkv

upbeat hound
#

THEY'RE SO BEEFY

#

WHAT DO YOU MEAN

golden path
#

😈

upbeat hound
#

I cant see this

golden path
#

I want my eardrums to explode

upbeat hound
#

what is this file type

fresh steeple
upbeat hound
#

then get new headphones

#

Oh thats an LCSOUNDTOOLS issue

golden path
upbeat hound
#

they're working on a fix

fresh steeple
#

does this mod need lcsoundtools

upbeat hound
#

but yes we rely on them as a dependancy so technically I guess because if you remove lcsoundtools then LR cant work either

fresh steeple
#

I have had this issue for like a week or 2

#

so

upbeat hound
#

we only use sound clips

#

no dll files that could do that

#

we dont "handle" sound like when and where it plays

#

only how

fresh steeple
#

yea Ig I might need to remove LR for now

upbeat hound
#

pain

fresh steeple
#

the sound is unbearable

upbeat hound
#

but understandable

#

someone go slap no00ob so he hurries

fresh steeple
#

lol

#

also

#

I was having issues with Facility meltdown, before I had the mod, it bugged out and there was no audio or music when taking it out. I installed this mod, I think the audio and default music was working, but now ur thing isnt

golden path
fresh steeple
#

can u send me a music clip for the metldown mod por favor

fresh steeple
upbeat hound
#

well its supposed to

#

WHEN ITS IN THE MACHINE

#

NOT AFTER

#

btw what do you think of the alarms since you're here @fresh steeple

#

if you watched the whole thing

fresh steeple
upbeat hound
#

NO MUSIC

fresh steeple
#

the ones inside sound a little sublte too

upbeat hound
#

you should be able to overlay music using the script included tho

#

pain

upbeat hound
#

everybody is a critic

fresh steeple
#

and I think that means everyone needs to do it

upbeat hound
#

this is true

fresh steeple
#

but the outside alarms

upbeat hound
#

see music is so opinon based

fresh steeple
#

is perfect

upbeat hound
#

I will push more people away then I gain by adding music I decide on

fresh steeple
upbeat hound
#

some people want to hear rick ashley, some people want to hear death metal

fresh steeple
#

yea

#

I want the rumbling from aot music

upbeat hound
#

see this is what im talking about

golden path
#

Chat

#

Chat

upbeat hound
#

WHAT

golden path
upbeat hound
#

correct

#

ADD YOUR OWN

fresh steeple
upbeat hound
#

SINCE WHEN HAVE YOU SEEN LR EVER ADD MUSIC EVEN ON THE MAIN BRACH

fresh steeple
#

does everyone also need too as well?

upbeat hound
#

(With the exception of the update litereally about to come out)

upbeat hound
#

oh damn

#

you got me

#

but thats differnt people universally want horror suspense music

#

for this games main menu

#

plus it slaps

golden path
fresh steeple
#

like if I add my music, does everyone in my group need to manually as well

#

for them to hear it

upbeat hound
#

yes

#

I know

#

its rough

#

but I stand by what I said

#

there are others like

#

Clemsescape music

#

that adds music while you escape

#

so its already an option

fresh steeple
upbeat hound
#

just cant have both LR ALARM sound with music overlayed

fresh steeple
#

but I understand and respect ur reason for not adding music

upbeat hound
#

unless you want to use the EXTRA SPOT AVAILABLE IN THE SCRIPT

#

SPECIFCALLY LEFT FOR THAT REASON👀

fresh steeple
#

ik, but then everyone in my group need too

upbeat hound
#

lazy

fresh steeple
#

they are xD

upbeat hound
#

you could do it and send them a zip then

#

then they just have to drag it in

#

boom done

#

no work basically

fresh steeple
#

trust me, for us it sounds simple

#

for them, openin g r2modman is complicated 💀

#

honeslty

#

ima bear with the apperatus

#

LR is to cool

upbeat hound
#

Im so sorry about the apparatus sound

#

I hope it gets fixed soon

upbeat hound
#

😩

upbeat hound
#

lazy

#

jkjk its cool

#

lmao Im glad to hear you like it

fresh steeple
#

i do love it

#

tbh lethal company vanilla doesent make me scream

#

but with this mod

#

dude I screamed so hard after hearing a fricking spore lizard

midnight pewter
#

so after downloading this mod, i got sounds like the spider and its webs just straight up scratching and facility fan sounds getting progressively deafeningly loud, am i the only one that got this?

upbeat hound
#

spider?

#

which sound specifcally

midnight pewter
#

the sound when you walk into its web, and the sounds when its moving

#

its as if the sound is playing at 100x or something

upbeat hound
#

yeah thats def not supposed to be happening

#

so spider moving sounds

#

crazy enough

#

we dont even touch

midnight pewter
#

thats concerning

upbeat hound
#

we're pretty sure its a LCSOUNTOOLS or customsounds issue

#

more specifcally the former

midnight pewter
#

could be, because i also got a bug where the facility fan just gets progressively louder

#

(although that just might be a moreinteriors thing)

upbeat hound
#

Thats weird too

#

someone else was complaining about an apparatus issue

#

scroll up and take a look at that

#

has that ever happened to you

midnight pewter
upbeat hound
#

no :S

#

pain

midnight pewter
#

after the initial low hum theres a buzzing sound similar to the lightning strikes

upbeat hound
#

if you watch the video above that

midnight pewter
#

thought that was worth mentioning

upbeat hound
#

youll see when Im carrying it

#

it doesnt make that sound

upbeat hound
#

it should only make that sound until pulled

#

then never again

midnight pewter
#

welp, thats not good

upbeat hound
midnight pewter
#

so its inconsistent

upbeat hound
#

yep

#

yep

#

yep

#

hes working on an update tho

midnight pewter
#

also i dont know if this might be related, but i use moreinteriors which adds the bunker interior, and the fan sound in the main room is just deafeningly loud

#

it starts off normal but then for some weird reason it just gets progressively louder similar to the spider problem

upbeat hound
#

how weird

midnight pewter
#

and the spider web too, its so loud it became bass

upbeat hound
#

that was supposed to be binual audio with felt intrusive

#

but it translated poorly in game Ill admit that

#

Ill show you the actual clip

midnight pewter
#

i'll see if i can get a clip, if i dont die

upbeat hound
#

its supposed to sound like this

#

but it does not

midnight pewter
upbeat hound
midnight pewter
#

but after i downloaded sound mods its just straight up bass

upbeat hound
midnight pewter
#

my brain no work

upbeat hound
#

this is the vanilla sound

midnight pewter
#

oh it is really similar no wonder

upbeat hound
#

I mean how different can I guy make that sound

midnight pewter
#

but either way the problem seems to be the fact that the sounds are set up to 300 or something?

upbeat hound
#

spider web sounds? oh they sound like despacito

midnight pewter
#

imagine

upbeat hound
#

the way the game is made

midnight pewter
#

you step into a web and thats all you hear

upbeat hound
#

they are acutally x'ed by seemingly RANDOM VALUE

#

S

#

its dumb

#

huge pain

midnight pewter
#

whaaaaaat?

upbeat hound
#

yep for example

#

3 doors close to your right?

#

what do you hear?

#

your prob thinking "well 3 doors obviously"

#

WELL YOU WOULD BE WRONG

#

IT JUST TIMES THE DOOR SOUND BY 3

#

IN VOLUME

midnight pewter
#

jesus

upbeat hound
#

smh

midnight pewter
#

thats why the main entrance door is so ear piercing

upbeat hound
#

but yeah its on the list

#

this is correct

#

its ALSO

#

on the list

#

pain

midnight pewter
#

especially on bigger lobbies its practically a drum set

upbeat hound
#

PAIN

midnight pewter
#

so what about the spider then?

#

it has 8 legs so it plays 8 times louder?

upbeat hound
#

oh yeah no we didnt touch spider sounds

#

and I dont know

midnight pewter
#

because i can hear that thing 3 rooms away

upbeat hound
#

i mean spider walking sounds

#

my b

midnight pewter
#

im genuinely curious at this point lmao

midnight pewter
upbeat hound
#

LETHAL RESONANCE MELTDOWN UPDATE:

#

v1.1.3

  • Beginning inside alarm volume adjusted
molten bolt
#

LETHAL RESONANCE v2.2.6

  • Temp disabled Bridge Creaks since they are TECHNICALLY an ambient sound and waiting on lcsoundtools (pain)
  • EYELESS DOG REWORK (Except 1 sound we cant locate) (Moroxide: I think I fixed it ;] )
  • New cursed music for the record player
upbeat hound
#

LR MELTDOWN CORE IS NOW DEPRECIATED. it is no longer necessary for LR Meltdown to function correctly

forest crescent
#

morning guys

#

(he says at 3 am)

#

what's been cooking here

upbeat hound
forest crescent
#

oh shit that sounds nice

#

fuck you man, making me add another mod to my modpack 😭

upbeat hound
#

Outdoor alarms

forest crescent
#

that's the portal announcer talking when you pull the apparatus, right?

#

everything sounds fire, i like the outdoor alarms

forest crescent
#

did you change the sounds?

#

or just cleaned them up a little?

upbeat hound
#

Totally different new sounds

#

Old eyeless dogs had some issues

#

Before we were changing sounds at random now we’re going through one by one

forest crescent
#

shit, guess i need to rerecord new clips for the trailer

upbeat hound
#

Trailer?

forest crescent
#

hello clemonade

forest crescent
neat jackal
fresh steeple
#

didnt like the music

upbeat hound
#

Lmao literally what I was thinking earlier

#

OPP

#

GONNA TAKE THAT

neat jackal
#

fair

upbeat hound
#

OMG THIS

neat jackal
#

gonna work on different genre scripts at some point

forest crescent
#

as my procrastination project i'm trying to create a trailer for the mod :V

upbeat hound
#

THIS IS WHAT I WAS TALKING ABOUT @fresh steeple

fresh steeple
upbeat hound
#

YOU DIDNT LIKE THE MUSIC CHOICE

#

Lmao

fresh steeple
#

just a reccomendation

#

rumbling from aot

upbeat hound
#

Super niche

#

But it would be cool

forest crescent
#

question since i'm dumb, do you need to rework stuff to make clems mod work or

#

is it just a "drop it in the pack and now shit works better"

neat jackal
#

yeah its the same as this, still gotta change the meltdown volume to 0 atm

forest crescent
#

aye aye, thank you clem for all the good work you make to allow us to put our choice of sounds in the game

neat jackal
#

👋

forest crescent
#

huh, now that i think about it, without you there would be no Yippie mod for the looting bug

#

that's a cornerstone of lethal company already

neat jackal
#

uhh

#

that wasn't me?

forest crescent
#

you made customsounds

neat jackal
#

nonono

forest crescent
#

which is used for it, no?

neat jackal
#

very similar names

#

Clementinise is not me

forest crescent
#

oooooooh shit lmao my bad

#

shit now i'm hella embarassed im sorry 😭

#

my dumb ass went to doublecheck and still fucked it up

upbeat hound
#

Has anyone tried the new update yet?

#

If so I have a question

#

I feel like the discord has been quieter than usual today

forest crescent
#

friday night, everyone's out partying

#

and haven't

#

will do it now

#

so ask away

upbeat hound
#

just wanted to know if the beginning audio when you first take the apparatus if it is louder

#

and if you can hear the announcer better

#

(If you can record a clip plz)

forest crescent
#

ah, this with the facility meltdown

upbeat hound
#

The LR MELTDOWN

#

mod

upbeat hound
#

I just sit here

#

in front of this desk

slate quarry
#

Wait people party? xD

coarse jasper
#

Thank you for repackaging the meltdown pack, it is very nice

forest crescent
midnight pewter
#

@upbeat houndthis is the sound bug i was talking about

#

it starts off quiet then it just becomes this absolute bass

#

i dont got a clip of the spider web bug though lmao, despite running into one, i was also busy trying not to die from a bracken

forest crescent
lost kindle
#

the sound does become much louder with resonance though

forest crescent
#

since it's only on that dungeon i figured it was something broke on their end

midnight pewter
#

im not sure, this might be related to the bugged spider noises which is possibly caused by LCsoundtools, as mentioned by the author

midnight pewter
lost kindle
coarse jasper
#

I think I found 2 more bugs:

  • Stepping in spider webs causes an explosion sound (Happened on Egypt in Scoopys, had just stolen the apparatus on prev moon and had just killed something with a shotgun)
  • Apparatus on ship never stops its vibrate/static sound
midnight pewter
#

yeah that spider web sound is something all of us are experiencing too

#

so is that apparatus buzzing sound

coarse jasper
#

oh nice, welp as long as they are doc'd

lost kindle
steel raven
#

Question? Was spiders sound ever going to get fixed or are our ears just supposed to bleed when it moves?

midnight pewter
#

They're trying to get it fixed, iirc

steel raven
#

Im not sure if its vanilla but ill try to get a recording shortly. Give me some time

upbeat hound
#

for what do they bleed

forest crescent
#

90% chance he's talking about the spider bug from LCSoundTools i reported a few days ago

upbeat hound
#

I mean no one has shown it to me yet :S

forest crescent
#

i did 😭

upbeat hound
#

no

#

replay to it

#

reply*

#

at least it isnt the doors anymore

forest crescent
#

.

forest crescent
#

how could you forget :🥺 😭 😭

steel raven
upbeat hound
#

LC SOUNDS

#

I SWEAR

#

IT ISNT ME OR MOROXIDE

#

😭

forest crescent
#

yep, LC sound tools, it's the dependency they use for adding custom sounds

upbeat hound
#

WE DONT EVEN TOUCH THE SPIDER WALKING SOUND

forest crescent
#

n00b better get off his ass fr fr

upbeat hound
#

🥲

steel raven
#

Thats why I asked if there was plans to fix that shit

upbeat hound
#

Wrong place to ask

#

but yes he said hes working on it

#

(But since I knew I guess that kinda makes it the right place to ask🤔 )

forest crescent
#

it's all connected, the right place to ask is this discord sv in general lulw

#

always some crackhead that's awake at 6am that knows the answer

upbeat hound
#

pain

forest crescent
#

me

upbeat hound
#

ah

#

I thought you meant me

#

lmao

#

it also would have made sense

#

Im always here

forest crescent
#

nah you're chill you got a better sleeping schedule than i do

upbeat hound
#

wild I was only off this discord for like

#

6 hours

#

out of the day

#

and that was for sleep

forest crescent
#

mine's like: 16h awake, 20 min nap, 2h just staying in bed, get up fully rested

upbeat hound
#

this is a lie

#

no WAY you're actually rested

forest crescent
#

i swear, my first day is always like that

upbeat hound
#

ALLLRIIIGHHHTTYYYYY

forest crescent
#

then i sleep like 4h

upbeat hound
#

so anyone have a sound hey want

forest crescent
#

and repeat more or less

upbeat hound
#

(Like a sound that they would like redone)

forest crescent
#

until i get too tired/start actually dying/losing concept of time and memory, and i sleep for like 20h

upbeat hound
#

NOT ALLOWED ANSWERS ARE : SCANNER, MINEBEEP, DOORS, JUMPING, FOOTSTEPS, SPIDER WALKING SOUNDS, ANYTHING TO DO WITH SLIMES

forest crescent
#

footsteps :´)

#

lulw

upbeat hound
#

ANYTHING ### ELSE

#

pain

forest crescent
#

honestly now that i'm pressed i can't think of anything

upbeat hound
#

If you do make sure you like it on the thunderstore!

#

Which one btw

#

LR or LR MELTDOWN?

#

ill reply it

#

just a sec

upbeat hound
#

The facility meltdown forkj

#

thank thank

#

since you're here

#

any sound requests

#

like objects or vanilla sounds that should be next?

upbeat hound
#

its on the list

#

just not yet

#

Those sounds I listed are so important that they require a lot of thought and work

#

if we get it wrong it will push people away

#

Imagine if the jump sound was annoying💀

wild prawn
#

Just had a game where the dogs were constantly screaming, think that was the Jester scream.

upbeat hound
#

with the new update?

wild prawn
upbeat hound
#

yes pain

#

yeah if it makes the wrong sound its cause of LCSOUNDTOOLS

#

they are working on an update

#

\but it isnt directly us

wild prawn
#

Yeah... It was curious to me though because they were working fine earlier, once I restarted the game it caused that to happen.

upbeat hound
#

yeah its a glitch

wild prawn
upbeat hound
#

same thing with the apparatus sometimes

#

itll randomly start buzzing

wild prawn
#

Well, hope they get to patch it, I really appreciate the effort you put into these sounds.

upbeat hound
#

also do you have a suggestion for the next sound @wild prawn

#

like what we should work on?

wild prawn
#

Ah well, wouldn't specifically know which. Seems you guys already covered a few of the enemies or sides of the game.
I'm satisfied with how it is so far.

#

Exactly, thanks for helping me interpret.

#

I am eagerly waiting for the ambient noises to be back, I really liked the ambience it brings.

#

It's the only thing that gets me on edge.

upbeat hound
#

SAMMMMEEEE

#

seeeeee moroxide does a lot of the creatures

#

I do the ambiance mostly

#

Thats why ive been focused on the LR MELDOWN fork

#

*MELTDOWN

#

his job is to make you afriad of whats there mine is to make you afraid of what COULD be there

wild prawn
#

That's so cool, you make some great ambience choices from what I've heard so far.

upbeat hound
#

IM glad you like it

#

heres what isnt included rn

#

these are temp removed until they STOP LOOPING

#

NO amiance

#

otherwise itll loop

#

OVER AND OVER AND OVER

#

every like 15 seconds

#

smh

#

SO YOU'RE SAYING NO ONE HAS A SUGGESTION FOR WHAT SOUND SHOULD BE NEXT

#

bruh

lost kindle
#

uh

#

uh

#

uh

hallow forum
#

i mean

#

did u ever do the masked

wild prawn
#

No... It's hard to tell from here.

lost kindle
#

uh

#

uh

#

uh

#

uh

upbeat hound
lost kindle
#

ester

#

hester

#

jester

upbeat hound
#

what do they sound like rn

#

YOU MEAN THE VOMIT SOUND

#

ffs

hallow forum
#

u forgot? they're the vomiters

upbeat hound
#

I dont want to listen to that

#

pain

hallow forum
#

unlucky

upbeat hound
#

BUT

#

noted

lost kindle
#

maybe you can do their laughing and crying

upbeat hound
#

they dont

#

I believe thats the mask sounds

lost kindle
upbeat hound
#

which actually are done I believe

lost kindle
#

oh

#

well the masked can emit them

upbeat hound
#

ah

#

we havent REPLACED base mask sounds

#

but we did ENHANCE them

#

we will REPLACE them eventually

hallow forum
#

what ELSE did you DO

lost kindle
#

well then replace em if you need something to do so badly

hallow forum
#

that SOUNDS great

upbeat hound
lost kindle
#

OH WAIT UH

#

SNARE FLEA

#

you can do snare flea

upbeat hound
daring pendant
#

OH I KNOW THIS ONE

upbeat hound
#

Ill tell moroxide :S

lost kindle
#

oh do you want non-monster sounds

upbeat hound
#

...

lost kindle
#

signal translator

upbeat hound
#

ooooo

#

maybe mr spore lizard

#

ooo

#

that sounds nice

daring pendant
#

That could be super cool

upbeat hound
#

can someone explain how it should sound in words

#

for some inspiration

lost kindle
#

like it translates signals

daring pendant
#

Oh god i need to hear the OG

upbeat hound
#

pain

daring pendant
#

Could go the morse route?

hallow forum
#

waaa waaa waaa

#

u want a better description?

lost kindle
#

maybe something like an old fax machine?

daring pendant
#

Tk..tk..tk...tktktk...tk..tk..tk

upbeat hound
#

NO

#

I mean

#

like