#Lethal Resonance

1 messages Β· Page 33 of 1

arctic tangle
#

so wtf am i doing wrong?

upbeat hound
#

send me your zip

#

of all of it

#

ONE zip please

arctic tangle
#

its 44mbsπŸ’€

upbeat hound
#

I thought that max filesize was 25 MB over discord

arctic tangle
#

am haxer😎

upbeat hound
arctic tangle
#

LOL

lavish thorn
#

The server has level 3 boost

arctic tangle
lavish thorn
#

Allows up to 100mb

upbeat hound
arctic tangle
upbeat hound
#

why does it say "fin" on the end?

arctic tangle
#

oh.....shit

upbeat hound
#

well the Sound_pack file reference Boombox

arctic tangle
#

hruh

#

So what do I fix?

upbeat hound
#

rename to just boombox

#

then it should work

arctic tangle
#

The sound_pack?

fallen spade
#

@upbeat hound Tell me.. This is expecting a TYPE right?

arctic tangle
#

ill deal with it tomorrow tho

upbeat hound
arctic crown
small pond
#

ogg as got to be the most chad thing

arctic crown
#

They already were ogg, I made them even more ogg

small pond
#

do you know if mp3/wav works? or has literally no one tried it yet?

fallen spade
small pond
#

i meant for soundapi lol

fallen spade
#

Oh

small pond
#

meltdown uses (transcoded) mp3s

fallen spade
#

No clue

upbeat hound
#

mp3

small pond
#

well they get transcoded to ogg so its basically the same thing

arctic crown
#

hey siri, explain transcoding

small pond
#

you have encoding (taking raw data to a format), decoding (format back to raw data) and transcoding (format to format)

arctic crown
#

is there quality loss? its basically still the same data right?

upbeat hound
small pond
arctic crown
small pond
small pond
upbeat hound
#

your right earπŸ’€

tame jackal
#

Ahhh, the best Lethal Company mod.

#

new menu music is awesome! best addition. I threw that into the Custom Boombox so i can hear it while in the facility

upbeat hound
fallen spade
#

@upbeat hound Good news... It works!

#

No need to have dependencies!

lavish pecan
upbeat hound
fallen spade
#

Whenever you're ready to implement this lemme know I'll shoot you the infos in DMs.

fallen spade
# upbeat hound then how replace audio ?_?

It'll be as easy as getting the audio clips and making an array of all the variants of it. then simply replacing the array of Diversity with yours and... That's it...

#

For each categories you want to replace ofc

fallen spade
lavish pecan
fallen spade
#

;-;

hallow forum
#

in javascript thats literally basically the definition

#

in C#, which is what we use, its basically also that, but more proper

#

you make a list

upbeat hound
hallow forum
#

and replace his list

lavish pecan
#

Pixel stop making him feel bad he just did all this hard work for you

#

XD

upbeat hound
lavish pecan
#

@hallow forum Ban this man for making Chaos feel bad

hallow forum
#

you right

#

i need to vent, time to ban pixel

lavish pecan
#

XD

upbeat hound
fallen spade
#

Makes sense

#

SO wait moroxide did the coding..?

hallow forum
#

they use a sound api

#

bongo did the coding

upbeat hound
#

I mean technically bongo

hallow forum
#

fym technically

#

give the man credit where its due

#

😭

fallen spade
#

Ohhh...

#

Okay well

#

I'll need to tell them how to do so...

upbeat hound
#

but the soundapi does

upbeat hound
fallen spade
#

Things are... Complicated then...

#

It requires somewhat some coding

upbeat hound
#

@small pond

fallen spade
small pond
#

does diversity handle its sounds weird? im like 80% sure that it should just work

fallen spade
#

There's specific ways that it does yes

#

I made an instance with ALL the sounds of diversity

#

That's where you need to replace the sounds

small pond
#

well do you not put it through and audio source at somepoint?

fallen spade
#

I already coded a snippet on how to do so without needing of dependencies

fallen spade
small pond
#

as long as you at somepoint
call .Play() or .PlayOneShot() (or any of the other play methods)
or instansiate a gameobject with PlayOnAwake (this is only fixed in my dev branch)
then it will be picked up

fallen spade
#

Gotcha but I still dunno how your sound API actually replaces the audio when these are called

small pond
# fallen spade Gotcha but I still dunno how your sound API actually replaces the audio when the...
internal static AudioClip GetReplacementClip(string name) {
    if(name == null) return null;
    SoundPlugin.logger.LogDebug("Getting replacement for: " + name);

    if (!SoundReplaceGroup.GlobalSoundReplacements.ContainsKey(name.Split(":")[2])) return null;

    SoundMatchString matchedString = null;
    foreach(SoundMatchString matchString in SoundReplaceGroup.GlobalSoundReplacements[name.Split(":")[2]]) {
        if(matchString.Matches(name)) {
            if (matchString.Group.TestCondition()) {
                matchedString = matchString; 
                break;
            }
        }
    }

    if (matchedString == null) return null;

    List<SoundReplacement> replacements = new List<SoundReplacement>(matchedString.Group.SoundReplacements[matchedString]);
    int totalWeight = 0;
    replacements.ForEach(replacement => totalWeight += replacement.Weight);



    int chosenWeight = matchedString.Group.Random.Range(matchedString.Group, 0, totalWeight);
    SoundPlugin.logger.LogDebug($"totalWeight: {totalWeight}, chosenWeight: {chosenWeight}");
    int chosen = 0;
    while (chosenWeight > 0) {
        chosen = matchedString.Group.Random.Range(matchedString.Group, 0, replacements.Count);
        SoundPlugin.logger.LogDebug($"removing between 1 and {replacements[chosen].Weight}");
        chosenWeight -= matchedString.Group.Random.Range(matchedString.Group, 1, replacements[chosen].Weight);
        SoundPlugin.logger.LogDebug($"chosenWeight is now {chosenWeight}, chosen: {chosen}");
    }
    SoundPlugin.logger.LogDebug($"selected a clip");
    return replacements[chosen].Clip;
}
#

and its just a prefix on these methods

fallen spade
#

Oh so by string name basically?

#

Then just gets a random clip to replace it with?

small pond
#

yeah basically

fallen spade
#

Gotcha gotcha

small pond
#

it creates a string that is just ParentGameObject:GameObject:ClipName

fallen spade
#

So I need to send the listy of all the names of my audioclips?

small pond
#

it should just log it out if this function gets called

upbeat hound
fallen spade
#

I can easily do that

small pond
fallen spade
#

The reason why I shown my method is the fact that I've already made categories of audios for my mod but that are not yet fully implemented into the mod yet. Which means he's be able to replace audios for future updates without having to push updates everytime I add new audios LOL

#

But eitherway I'm open to any methods thecoolcat

small pond
#

yeah audio clip names changing from update to update is something im worried about and plan to maybe address

arctic crown
fallen spade
#

Visually that's how my thing looks like:

small pond
arctic crown
#

I have yeah

small pond
#

i think a "Popular Mod Audio List" could work nicely

arctic crown
small pond
#

should be able to

#

bro the advanced company thread is lighting itself on fire rn holy

velvet gyro
#

it's so fun to read

#

#1186884307332108339 message

#

here's the start for y'all

fallen spade
#

LOL

upbeat hound
#

The facility meltdown x LR sequel @small pond

lavish pecan
trail ether
upbeat hound
#

idk why some devs are so hostile to eachother

lavish thorn
#

its beyond me, but it is what it is

small pond
#

real

#

watching advanced company explode in real time was truly an experience

fallen spade
#

YEah that's something

#

I know my irl friend will be sad

small pond
#

i mean its going to be better if mods that replace ac dont become a conglomerate again, much better if they all seperate than in one bloated mod

velvet gyro
#

we are making history

small pond
#

fuck i clicked out of it its gone now

fallen spade
velvet gyro
small pond
#

well idk exactly how diversity works but advanced company was trying to do to many things at once

velvet gyro
#

if (big if) we had a mod that did only lobbies the way AC handled them we would be in a better place

small pond
#

exactly, ac split up into multiple modules is how it shouldve been

velvet gyro
#

I remember in the Minecraft modding there was a guy with like 300 mods, and every one of them changed a small aspect of the game

#

So it was truly customizable for whatever you want

fallen spade
#

THough the difference is stability

#

300 mods on mc is doable

#

300 mods on lethal company you are frying your pc

small pond
#

yeah

fallen spade
#

Unity go brrr

small pond
#

idk how modloading works but i do think that because minecraft is its own engine mods can be a lot more optimised

#

and then also just base lethal company isn't the best

fallen spade
#

True

#

I'm working on my own game currently

#

I'm planning to make modding accessible with SDKs and stuff

velvet gyro
#

this is the way πŸ‘†

lavish pecan
fallen spade
#

I'm being rizzed in a lethal resonance thread

velvet gyro
#

don't be surprised

trail ether
velvet gyro
#

Lethal company is not even 6 months old at this point

#

And there are still tectonic shifts in modding scene

fallen spade
#

Yup

velvet gyro
#

We'll get to the point of stability

trail ether
#

I'm absolutely here for it

fallen spade
#

Wait until I implement all my ideas...

still mural
#

Wait what the hell happened with AC

small pond
fallen spade
#

Lethacl company will not be the same game anymore LOL

velvet gyro
still mural
#

I'm reading the thread but i can't find a starting point

trail ether
#

mrov having that link ready any time someone asks what happened to ac

trail ether
#

πŸ™

velvet gyro
#

I've sent it in so many places now πŸ˜…

lavish pecan
#

Mrov is gonna pick up the important pieces like how he took the custom version text from IntroTweaks when it died

#

XD

small pond
velvet gyro
#

With all due respect, I'm not touching any of that

lavish pecan
#

Yeah you know what's funny

velvet gyro
#

It's too much risk for no reward

lavish pecan
#

My game runs smoother after removing it

#

LOL

small pond
lavish pecan
#

Yeah

small pond
hallow forum
#

dont talk about AC guys, i've tolerated going to different topics before, but please end it.

still mural
#

Wait what what's that watermark thing? So the AC creator got mad because someone wanted to remove the "Advanced Company" from the title screen, right?

hallow forum
#

all good

lavish pecan
#

Lova ya Xu

small pond
still mural
#

Let's dms Bongo

velvet gyro
#

let him read

hallow forum
#

just scroll up a bit

small pond
#

#modding-general message

still mural
# hallow forum theres a tldr by damon in <#1186515716124459088> iirc

Thank you, I'll do that, I just needed to figure out where exactly was the starting point of it but I was kinda confused by the term "watermark" used, and also I've always found unfair that mods like MoreCompany or AC changed the main logo of the game like, put some respect on the game like.. Idk but we're not here to discuss that yeah

trail ether
#

yeah, I was never a huge fan of those mods replacing the main logo to begin with

#

felt so out of place

#

last thing I'll say about it

still mural
#

Yeah clearly

small pond
#

probably don't (before xu gets madder)

velvet gyro
still mural
lavish pecan
trail ether
# small pond

oh nono, I meant the replacement thing being the last thing I'll say

velvet gyro
still mural
#

By the way, mod manager users does that mean that you guys still have the mod or does the removal pull it off from your files?

trail ether
#

pat pat, mrov

velvet gyro
small pond
lavish pecan
velvet gyro
#

What will be the next mod LLL sends to the Shadow Realm? Place your bets now

still mural
#

And I've seen that he threatened to like push an update and make the mod corrupted??? what a b.. damn wow

small pond
#

back to lr guys please 😭

still mural
#

Sorry sorry, pardon me

lavish pecan
#

Yeah Xu asked to stop talking about AC

still mural
#

I'm stopping here

hallow forum
#

πŸ‘€

#

better be

lavish pecan
#

You gotta respect the Xu

#

Cus if you no respect the Xu you get ban

hallow forum
#

lunxara, go sleep

lavish pecan
#

Just ask @upbeat hound

#

I'm redoing my mod pack

#

You know this lol

hallow forum
#

:p

#

if you have the free time

#

then its fine ig

#

i got classes soon so im sleeping later lol

gentle pilot
#

good moring fellas

small pond
tame ledge
small pond
#

yeah or xu sends you to the shadow realm

trail ether
gentle pilot
#

wh-

hallow forum
#

i wont warn anymore after this

#

ill keep this up for a bit

gentle pilot
#

I just got the news, and yall are just the quickest people I would know to ask, mb chiefs

fallen spade
#

@upbeat hound

ambience
brakenScream
you're next
voice_Insert 1
voice_Insert 2
voice_Insert 3
voice_Insert 4
voice_Insert 5
voice_Insert 6
voice_Insert 7
voice_Insert 8
voice_Insert 9
voice_Insert 10
voice_Insert 11
voice_Insert 12
voice_Insert 14
voice_Insert 15
voice_Insert 16
voice_Insert 17
voice_Insert 18
DoorSlam1
DoorSlam2
step1
step2
step3
step4
Welcome_1
Welcome_2
Terminal_Error_With_Laugh
Terminal_Error_No_Laugh
Terminal_Error_2
Dog_Spawn_Or_When_Close_to_Ship
Attempt_To_Shut_Off_Speaker
Turning_Off_Speaker_2
Eject_1
Eject_2
Loading_Back_In_After_An_Eject
Return_From_Eject_2
0_Days_Left
0_Days_Left_2
Reaching_Quota
Reaching_Quota_2
Reaching_Quota_Again
Reaching_Quota_Again_2

These are the currently used audio clips of Diversity. If any questions lemme know!

small pond
#

what are the gameobjects attached? otherwise they have to use *:ambience and that could go fairly wrong

fallen spade
#

Voice_insert are the ghost girl voice lines

trail ether
#

Wait- I just realized

#

I won't have any audio issues with sound api now that the conflict is gone

#

yippee

small pond
#

i mean that issue was never on soundapis sound to begin with

trail ether
#

nono I know

small pond
#

it was something in more company that got copied into ac

fallen spade
trail ether
small pond
lavish pecan
small pond
small pond
#

i think thats part of the issues that those mods have

#

is that they get over zealous of what theyre replacing

fallen spade
small pond
trail ether
#

One thing that I noticed differently, is that there's a lil beep noise played before the ship's doors close while going into orbit that I never heard until I removed [REDACTED]

fallen spade
lavish pecan
small pond
trail ether
fallen spade
#

Mine for example

small pond
#

that would probably be better actually

arctic crown
#

Well I certainly came back to drama lol

small pond
lavish pecan
#

Do not talk about [REDACTED]

arctic crown
#

Yeah I picked up that much

fallen spade
#

I'll release the template for it some you don't have to fully design the app

small pond
#

is it like a seperate thing that hooks in? or does it get spawned from the mod?

fallen spade
#

But it easily isolate the logs of whatever you want

arctic crown
fallen spade
small pond
fallen spade
small pond
fallen spade
#

Yes

small pond
arctic crown
#

oh boy

fallen spade
#

That's why I came up with the method I coded earlier

trail ether
#

I cannot commend @upbeat hound enough with how atmospheric you made vow and march

fallen spade
#

They can just copy paste the snippet I made in LR for the moment until the dev branch fully releases

small pond
fallen spade
#

Oh well

small pond
#

soundapi looks through and loads stuff like its a minecraft datapack

trail ether
small pond
#

then again my ear completly fucked up my plan to do it tonight 😭

fallen spade
#

Yes I used websocket on this one

#

But I was suggested a better way

small pond
#

i mean i know how to use websockets (pure js + websockets + python server was a fun time)

fallen spade
#

AKA incomplete

small pond
fallen spade
#

Ah

#

Are they all on the same log level?

#

AKA info, Warn, Debug

small pond
#

i mean like:
i already log out what clip is being replaced.
in the next update i have a lot more complex stuff setup that would be impossible to log
giving people also a better list of the sounds that are being played like how common theyve been played stuff like that (maybe even letting the dev force that audiosource to play again could be cool).

fallen spade
#

Ah gotcha

#

Cause you could do something like enable certain level to go through

#

Like only debug and info for example

#

Or really implement any tools you want

#

Stops readiong logs when something expected happens

small pond
fallen spade
#

Really at this point it's yours to do what you want to implement as tools to help debugging it

#

Yeah you can send commands and stuff

#

It was a bitch to make RPCs work through this...

small pond
#

what was that better way vs websockets btw?

upbeat hound
#

holy hell I was away like an hour, damn

small pond
fallen spade
#

Oh boy I'd have to go back in the messages

fallen spade
small pond
fallen spade
#

LOL

trail ether
#

we don't talk about [REDACTED]

arctic crown
#

we definitely don't talk about [REDACTED]

upbeat hound
#

I read the rundown, yeesh people love to bicker (any relation to any real person place thing or subject is purely coincidence) There have been fights going on in quite a few threads lately, hopefully people can just appreciate eachothers work more and help each other make better mods. man crqazy times these days

fallen spade
#

Who's [REDACTED]?

#

Jk lol

trail ether
#

speaking of appreciating eachothers work

small pond
trail ether
arctic crown
#

double ping woofwhat

trail ether
#

oop srry 😭

fallen spade
#

@Leth Triple-

#

LOL

trail ether
#

going in for the qua- @le

fallen spade
#

@trail ether That's another way to do it...

fallen spade
#

LOL

upbeat hound
small pond
small pond
#

basically an external tool that hooks in and displays more info about what soundapi is doing

fallen spade
#

Example of mine

trail ether
#

sheesh, Lunxara was right, loading times are waaay shorter now

fallen spade
arctic crown
small pond
#

probably will just be super simple jsons but yeah i could see that helping out a lot

arctic crown
#

The json system cant be that complicated to make a generator for...thonk

upbeat hound
small pond
upbeat hound
#

yep def misunderstanding

trail ether
#

Did y'all make any edits to sounds while cycling items through your inventory btw? Keep getting this warning whenever I switch from one item to another. Nothing actually breaking or anything, just wondering if there's supposed to be some sort of sound playing @upbeat hound

upbeat hound
#

we do not, thats odd

small pond
#

thats most likely (like 99%) a base game bug

#

considering if i get a null audio clip i do nothing

trail ether
#

ah okay

upbeat hound
#

is there a way to hide that warning?

fallen spade
upbeat hound
arctic crown
#

It took me an hour to figure out the ins and outs of the json system, and I have decent understanding of programming

fallen spade
#

Now thinking about it I could make one universal app where it fetches all loaded mod and you can select which mod to be logged on the app whenever you want for the general public

small pond
small pond
fallen spade
#

An universal app basically open for the public

small pond
#

ohhh okay like a better console? that could be really useful

fallen spade
#

Something like that

#

But ofc the thread will be there for devs to make their own for their mods ofc

trail ether
#

oh that's weird, gives me a warning even tho I don't have it installed

small pond
#

oh do you have morecompany actually?

trail ether
#

mhm

small pond
# trail ether mhm

okay yeah [REDACTED] said that they reproduced it with more company as well.

#

seems to be a different spot though so idk

trail ether
#

where would I go about enabling debug logs? (if you still need me to)

arctic crown
small pond
upbeat hound
#

where does the sound fit in

small pond
#

or:

{
  "condition": {
    "type": "equals",
    "a": {
        "type": "Config",
        "config": "Variations:Scanner"
    },
    "b": "Pixel"
  }
}
small pond
#

planning to let you do it for indivual replacements as well

upbeat hound
#

oh thank god

small pond
upbeat hound
#

?_?

upbeat hound
#

that just looks like logic

arctic crown
small pond
#

make another one?

upbeat hound
#

hm?

arctic crown
#

Oh, a is the variable for the condition, right

small pond
#

a in this case is a VariableProvider which provides updating data from the game

#

b is a static value that you can check against

arctic crown
#

Yeah

small pond
# upbeat hound hm?

basicalyl something like this

{
    "replacements": [
        {
            "matches": "*:Scan",
            "sounds": [
                {
                    "sound": "scanner_pixel/Scan.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_pixel/Scan1.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_pixel/Scan2.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_pixel/Scan3.ogg",
                    "weight":1
                }
            ],
            "condition": {
                "type": "equals",
                "a": { 
                    "type": "config",
                    "config": "Variations:Scanner"
                },
                "b": "Pixel"
            }
        },
        {
            "matches": "*:Scan",
            "sounds": [
                {
                    "sound": "scanner_moroxide/Scan_1.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_moroxide/Scan_2.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_moroxide/Scan_3.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_moroxide/Scan_4.ogg",
                    "weight":1
                },
                {
                    "sound": "scanner_moroxide/Scan_5.ogg",
                    "weight":1
                }
            ],
            "condition": {
                "type": "equals",
                "a": { 
                    "type": "config",
                    "config": "Variations:Scanner"
                },
                "b": "Moroxide"
            }
        }
    ]
}
trail ether
fallen spade
#

Lots of complicated words in a row

trail ether
#

(hope y'all don't mind the clips, just that lethal resonance always has me on edge)

arctic crown
upbeat hound
#

clips are always welcome

gentle pilot
arctic crown
upbeat hound
#

the original Iphone

fallen spade
#

OOF

fallen spade
gentle pilot
trail ether
# arctic crown yes

should I genuinely reduce my clips to 30fps? I had my nvidia replay set 60fps because I thought it looked good watching it 😭

#

that's what would help reduce the size at least

gentle pilot
arctic crown
upbeat hound
small pond
#

i would also recommened medal, pretty decent

upbeat hound
#

I record in like 360P in bandicam

arctic crown
#

adds a watermark and butchers the bitrate, wouldnt recommend

small pond
arctic crown
fallen spade
#

I will now head to sleep. Dm me if any questions for the audios thecoolcat

hallow forum
#

:p

trail ether
#

oh yeah, 2.0.0 definitely hit me with a massive fps drop in general, have diversity temporarily disabled until a fix gets put out

upbeat hound
#

but they look SO GOOD

fallen spade
#

It's the way I've made my post processing. I somehow made the screen render twice...

#

I'll fix it soon not to worry

hallow forum
#

that sounds like a problem

trail ether
fallen spade
#

Yeah I'll hot fix what I gotta do then truly take my break

#

I really need it

upbeat hound
zealous plank
trail ether
upbeat hound
#

is unemployed

trail ether
upbeat hound
#

hahaha nope no classes

#

I make money, but I dont have a job. Only enough money to scrape by tho

#

I hope to someday be able to do computer stuff for a living, but we'll see since its so difficult to get in those positions rn

trail ether
# upbeat hound hahaha nope no classes

oh shoot, must've been someone else who said that. You were probably in the convo so I mixed up the information from someone else πŸ˜΅β€πŸ’«

trail ether
upbeat hound
tame ledge
#

oh my god i did not expect that error when using lethals...anity

upbeat hound
#

the reason its so difficult tho is cause I have been a salesman for 6 years so switching careers especially to tech can be challenging

#

so this hopefully will tremendously help

tame ledge
#

the banner

#

is actually just the error

velvet gyro
#

fingers crossed for you 🀞🀞

upbeat hound
#

WHAT [REDACTED] IS GONE???

velvet gyro
upbeat hound
#

thats crazy

velvet gyro
#

sent to the Shadow Realm

upbeat hound
#

wild times

velvet gyro
#

i'm loving it

upbeat hound
#

the wildness of the times? ?_?

velvet gyro
#

the removal of things

small pond
#

im assuming incompatiblities are about to skyrocket

velvet gyro
#

oh well

upbeat hound
#

we'll recover

velvet gyro
#

as if it wasn't a problem already

small pond
#

also back to lr

tame ledge
#

incompabilities? i don't know what you mean....(my pack just not loading past some point)

upbeat hound
tame ledge
#

oh well now it decided to work

#

oh. that ain't right.

small pond
#

are those LE moons?

trail ether
#

my mod list is functioning way better without [REDACTED], it's just missing all the small features that I'm used to so there's definitely a hole left after I uninstalled it

small pond
#

idk if its been fixed but LLL had to make all LE moons to fix sometyhingh i think

tame ledge
#

only LE moons are kast and aquatis (aquatis is already supposed to be free)

upbeat hound
#

or lethalprogression

tame ledge
#

or both :)

upbeat hound
#

oh true

tame ledge
#

i kinda wanna use lethalsanity just for the camera effects now

upbeat hound
#

camera effects?

tame ledge
#

yeah

#

the lean when turning

upbeat hound
#

mix it with diversity so you can have the effects on two screens

tame ledge
#

i don't get it

trail ether
#

funny enough, I tried late-game upgrades with [REDACTED], but it wasn't working out the best, so I uninstalled it. I liked the new ship upgrades that it brought, so definitely gonna try it again

tame ledge
#

ah.

#

is this why my computer is struggling

upbeat hound
#

mhmm

#

itll be fixed tho so not to worry

trail ether
tame ledge
#

because it's rendering a (now) 125 mods modpack twice

#

lol

small pond
upbeat hound
#

that is Kinda of correct and kind of wrong

tame ledge
#

glad to know it wasn't because my pack isn't optimized (it isn't)

small pond
upbeat hound
#

like for people to play longer or for the mod to not make the game too short @small pond

trail ether
tame ledge
#

do you want mine? (jk i won't share it until i know that it's stable)

trail ether
#

yeah I think everybody has to tweak their mod lists after what happened to [REDACTED] lol

lavish pecan
#

Noone will miss [REDACTED]

upbeat hound
#

hey chill

lavish pecan
#

My fps improved after I removed it

trail ether
#

same

velvet gyro
#

some will, many won't

upbeat hound
#

yall know all I want?

lavish pecan
upbeat hound
#

I wanna pass moreinteriors in downloads ;-; they started the same day I did

upbeat hound
velvet gyro
lavish pecan
#

LateCompany is better now though

velvet gyro
#

It got obliterated by [], and it will happen again

#

no worries

trail ether
lavish pecan
#

I just hope we can get a late join mod that fixes the desync stuff with late joining like [REDACTED] did

#

That's the only thing I need from it

small pond
#

i love the ongoing bit now that its just called [REDACTED]

trail ether
#

does latecompany have issues with desync?

#

I ditched it as soon as I found [REDACTED] so I don't really remember if it did

tame ledge
#

a few incompatibilities that cause desyncs that last in time

#

other than that i think there's just like some weather issues

lavish pecan
#

WeatherTweaks will override those

#

no need to worry lol WeatherTweaks is the goat

tame ledge
#

yeah probably

#

i thought i had weathertweaks on the pack i used to play on but apparently not

upbeat hound
small pond
#

the double ping is wild

velvet gyro
#

πŸ‘€

tame ledge
#

i have weather tweaks on all of my other packs tho

lavish pecan
#

mrov is loved here

velvet gyro
#

what have I done again

tame ledge
#

just the friends i play with are annoying when it comes to adding mods

tame ledge
small pond
velvet gyro
#

πŸ₯Ή

lavish pecan
#

Blame Pixel

velvet gyro
tame ledge
#

oh uhhhh what is this supposed to be

upbeat hound
#

I mean I feel like this thread kinda absorbs modders overtime

lavish pecan
tame ledge
#

it's like the thread of all threads

upbeat hound
#

Its just a ✨ nice thread✨

#

people arent awful here

lavish pecan
#

It was mrov's way of adding compat for the fancy weather

upbeat hound
tame ledge
icy palm
small pond
#

yes

#

no cap ong fr

velvet gyro
icy palm
#

its been bothering me for a while

#

i was like.. It cant be

#

but it looks exactly the same pixels in the movie..

upbeat hound
#

you mean me?

icy palm
#

not you lol. i meant toy story

upbeat hound
#

(this is a joke)

icy palm
#

btw between yours and diversity. who took the intro speech and the delivery ship music

tame ledge
#

ah yes the proportions are definitely proportioning

zealous plank
tame ledge
#

since i'm looking for adding openbodycams i'm now wondering what 2screens is

upbeat hound
velvet gyro
#

and it's not really needed here - we're here because we can and we want to

upbeat hound
#

true

zealous plank
small pond
#

this thread got me giggling and kicking my feet in the air

hallow forum
#

seek help

small pond
tame ledge
upbeat hound
small pond
#

when you die we need to record those sounds to put them in

#

ultimate immersion

upbeat hound
#

gotta get that Real life quality

tame ledge
#

is there really not a name for the phobia of someone being behind you? i need names for SavageCompany's events

small pond
#

paranoia?

tame ledge
#

paranoia could be any enemy

upbeat hound
tame ledge
#

i want to change this event's name

#

and i'm very surprised that the phobia of someone being behind you doesnt have a name

upbeat hound
#

THE CHRIOPRACTOR

tame ledge
tame ledge
zealous plank
upbeat hound
#

posteriorimtimidatiophobia

small pond
#

did you make that up just now? that is not a real word

upbeat hound
#

it is not a real word but its made in the same way other phobia words are made

neat cloak
#

really rolls off the tongue though

upbeat hound
#

just used latin roots combined with the word phobia

#

posterior imtimidatio phobia

tame ledge
#

in that case wouldn't it be postaliquiphobia

#

post = behind
aliquis = someone

upbeat hound
#

it doesnt roll off the tounge as well, but go off I guess

#

post is after

tame ledge
#

post is behind in latin

upbeat hound
#

situated behind

tame ledge
#

just post

upbeat hound
#

NO

#

okay maybe

tame ledge
#

situated behind still fits better tho

#

time to make random people on reddit make postaliquiphobia into an actual word

tame ledge
#

this ai doesnt speak latin

upbeat hound
#

how does this word not exist denoting this specific fear tho, how odd

tame ledge
#

when players will get the event CHANGE THIS LATER they will really get scared

upbeat hound
#

pain

tame ledge
#

;-;

upbeat hound
#

I mean Im glad we found a term that properly encapsulates the feeling and phobia you described

#

Fr need me a Masters in English for that

tame ledge
#

phobias are made of latin words

upbeat hound
#

I still think I deserve a masters degree

tame ledge
#

this ai is going far

#

'posta''liqui''phobia

upbeat hound
#

?

tame ledge
#

it said it's phobia of being mailed liquid

upbeat hound
#

reasonable

tame ledge
#

ah now it said the phobia of being mailed someone

#

it doesnt even make sense anymore

neat cloak
#

LMFAO

upbeat hound
neat cloak
#

phobia of being mailed liquid

#

πŸ’€

tame ledge
#

also it's funny how this ai has a limit but it just resets if you reload the page

upbeat hound
#

I mean tbh there are certain liquids I would not enjoy being mailed

#

so i feel it on that

neat cloak
#

I'm just imagining someone trying to fill a standard rectangular letter envelope with water lmfao

tame ledge
#

even teaching it doesn't work

#

how did you get it to figure out on the first time

upbeat hound
#

easy, It made sense

tame ledge
tame ledge
neat cloak
upbeat hound
tame ledge
#

what

upbeat hound
#

maybe your Ai is just dumb

tame ledge
#

i think it is

#

the english speaking french copilot is dumb

#

those tags tho

#

culture=fr-fr

upbeat hound
#

fr? (For Real?)

tame ledge
#

france

#

france is fr tho

#

wait

#

so then that'd mean that fr is fr

#

i shouldn't be allowed to speak a language

#

oh my

#

hah

#

not realistic

#

french people don't speak english

#

especially not in paris

upbeat hound
#

moving on

neat cloak
#

THAT WAS PEAK I WAS READING THAT

upbeat hound
#

Even I realize its too off topicπŸ’€

neat cloak
#

it was definitely cookin something though

upbeat hound
#

it physically hurt me to leave up

tame ledge
velvet gyro
#

french-forreal

still mural
#

someone called a french?

#

ah no that's just LR thread being LR thread

neat cloak
#

we have fun here sometimes

tame ledge
#

reading LC lore

still mural
#

it's always funny here

tame ledge
#

and uhhh why are thumpers FISHES

still mural
upbeat hound
upbeat hound
tame ledge
upbeat hound
#

What? Actually?

still mural
tame ledge
#

it's written in the bestiary

neat cloak
#

HUH

upbeat hound
#

How did I not notice this

still mural
#

now LR is gonna have fishy thumper noises good job

tame ledge
#

lmao

upbeat hound
neat cloak
#

Its "body" almost looks like a bisected torso though

tame ledge
upbeat hound
#

I would be afraid to touch them

still mural
#

speaking of LC Lore, did you know that Dine, Rend & Titan have a blue sun, while the rest of the planets have red sun

tame ledge
#

wait

still mural
#

and it's both lore and in game

upbeat hound
tame ledge
#

thumpers comes from eggs. time to go in #1188298686560739389

still mural
#

you can't implement this piece of lore into LR UAHGHHUAHGHHH

upbeat hound
#

β€œV5.0.0 the sun screams more quietly now”

tame ledge
#

lol

still mural
upbeat hound
#

For a horror thread I find the funniest things here

tame ledge
#

washed up thumpers ah yes no one will understand

still mural
#

huh

upbeat hound
tame ledge
#

time to make my second mod idea

upbeat hound
#

It would be a rough day to pick up some egg scrap back to the ship

upbeat hound
upbeat hound
#

Bonus points if it can hatch in orbit

still mural
#

Imagine dropping the egg on your ship, then getting back inside

upbeat hound
still mural
#

Then you get back to your ship at 6:00 on the night, mobs all around you're finally safe inside your ship then

#

Think your safe? Thumper inside

#

Evil, purely evil

upbeat hound
#

Or make infected items show no signs until around 1Pm when it can barely be seen

tame ledge
#

#1211659482703339570 if anyone's got ideas add them in the thread

#

excuse me what

#

5 ghost girls HUH

upbeat hound
#

That’s a lot of giggles

tame ledge
#

that's some mad respiratory issues

lavish pecan
#

Mod list is like 10 or 11 mods larger than it used to be

#

Lol

tame ledge
#

takethatmaskoff+maskthedead thank you

lavish pecan
#

I've been using those

#

Even though TakeThatMaskOff causes a funny bug atm where dead bodies randomly come back as a masked sometimes

tame ledge
#

even better :)

upbeat hound
#

Xu has scared me with the foreboding message that was posted in weather tweaks

lavish pecan
#

My friend dying to a random lightning strike on Titan then his body resurrecting in the facility will never not be funny to me

tame ledge
#

lol

molten bolt
#

Ehm...

#

What happened to AC?

upbeat hound
molten bolt
#

but

upbeat hound
#

Nope

molten bolt
#

I just wake up

upbeat hound
#

Not a word here

hallow forum
#

#modding-general

molten bolt
#

Hmm

#

Ok

gentle plank
#

TL;DR: a mess of drama happened in this server.

In that vein, likely won't be here for much longer, now that my only two reasons for being in this server are now gone. The first being my strange customsounds issue which was caused by a misnamed folder in a disabled mod. Not a huge loss anyway, I've been working too hard to game much in the last couple weeks.

shut zinc
#

Oh, sorry to hear that(

upbeat hound
gentle plank
#

Yeah, I'd stay and lurk, but I hate misinformation and took my time digging into the recent events and came to my own conclusion: people suck, and the state this server is in is sad. This chat is fun and all, but I have many issues with many devs now after all of this.

upbeat hound
#

Totally understandable and I respect your decision

tame ledge
#

i have many issues with pixel's indecision on door sounds

hallow forum
#

Do people just not listen to warnings?

velvet gyro
#

😳

gentle plank
hallow forum
#

Vague doesn't matter, its obvious what you're talking about

#

Talking in cryptics wont help your case

#

I'm not gonna warn anymore guys, keep topics that are way off the channel like that elsewhere

gentle plank
# upbeat hound Totally understandable and I respect your decision

Yeah, looks like the decision has been assisted through a heavy hand. I'll keep using LR, definitely the best sound mod thus far. Hopefully you find some solutions to some trouble sounds, maybe someday I'll return and slap down some banger alternatives before disappearing into the aether again.

dark fossil
# lavish pecan

this mod list you using, have encounter any bug where you stuck in the ship after you left the moon, and on the lever will show "waiting ship to land"

lavish pecan
#

Only with Better Lobbies

dark fossil
#

i see, so after you throw away the better lobbies mod its works fine?

lavish pecan
#

Yep

dark fossil
#

ahhhh good to know

#

cuz my mods list right now having bug where you stuck at ship after leaving the moon

lavish pecan
lavish pecan
#

Seems sometimes the game sometimes fails to save after leaving a planet

dark fossil
#

or just the host need it

lavish pecan
#

It says the dev is unsure right in that ss I posted

dark fossil
#

i see

lavish pecan
#

So might be better for everyone to have it πŸ™‚

dark fossil
#

might gonna let everyone have it

tame ledge
#

won't hurt anyways

dark fossil
dark fossil
warm sundial
still mural
warm sundial
#

for some reason all the thumpers we went against that day were always running around at full speed, made it very scary lol

ruby saffron
#

Where are the footsteps sounds @upbeat hound

upbeat hound
trail ether
upbeat hound
molten bolt
#

sounds beyonf horror comprehensions

#

my favorite

ruby saffron
#

sadly

desert bough
#

tom and jerry

upbeat hound
desert bough
ruby saffron
#

Its like 3 days AGO

desert bough
neat cloak
#

3 days ago may as well be decades 'round these parts :)

#

we partake in a little bit of chatting

trail ether
#

@lavish pecan Do you get this error at all when loading into a lobby?

#

or does anyone else using morecompany get this error for that matter

tame ledge
#

all the time

#

doesnt seem to break anything tho so its fine ig

trail ether
tame ledge
#

seems like it's a thing with sending the "[player] joined" msg

arctic tangle
lavish pecan
warm sundial
upbeat hound
# arctic tangle urm what dis?

When you open your zip file the FIRST thing you should see is your change log,readme, manifest, icon and bepinex folder

#

For you the first thing you see is a folder called boombox mod

#

I can fix it for you if you send it here

fallen spade
small pond
fallen spade
#

Yes

#

Unless... Hold on

arctic tangle
fallen spade
#

Cube.005:SpeakerAudio:Welcome_1 This right?

small pond
#

yeah should be like that

fallen spade
#

Oh boy okay uh

fallen spade
#

Everything that is play on awake will be attached to a gameobject simply called Sound

#

Oneshot sounds will come from OneShotSound

fallen spade
small pond
#

yeah

fallen spade
#

And what if it doesn't have a parent?

#

Just: AudioSource:AudioClip?

#

Oh got it :Sound:Attempt_To_Shut_Off_Speaker

#

I'll redo the list really quick then

lavish pecan
#

@small pond Did you ever find out why QualityCompany's networking feature causes issues with the SoundAPI btw?

lavish pecan
#

Huh I figured it would throw an error or something

lavish pecan
fallen spade
#

@small pond If an audio source comes from 2 different objects do I have to specify them in the list?

small pond
#

yeah youi should

fallen spade
#

Bet

small pond
#

i mean * is avaliable to match all gameobjects (and it also gets implied for the parent one) but i heavily discoruage it

fallen spade
#

Oh so I'll use * cause WalkieTalkie(Clone):Target: is a bit uh yeah

forest crescent
#

love how this thread is LR+soundAPI

small pond
forest crescent
#

just goes to show how connected the two are, thank u again bongo for the mod

fallen spade
#

Oh well I'll do that

small pond
#

also i do a bit of filtering on the gameobject names (removing (Clone) etc

forest crescent
#

it's been weeks since pixel last complained

upbeat hound
upbeat hound
forest crescent
#

last complained** my bad

#

about the sound mods lulw

#

why is the cooldown even longer now smh what did xu do

upbeat hound
#

Not true, I occasionally complain about the apparatus buzzing

#

FIFTEEN SECONDS

forest crescent
#

it still buzzes? haven't noticed it

upbeat hound
#

BRUH

forest crescent
#

literally changed rn too, the audacity

upbeat hound
#

Couldn’t we have started with like 10 seconds???

tame ledge
#

road to 30min cd, let's go guys we can do it

forest crescent
#

true that, could've gotten 10 secs first

hallow forum
#

Behave

#

The attitude in here warranted much worse, be grateful with 15

#

Its 10 now

lavish pecan
#

Pixel trying to get banned again

upbeat hound
# hallow forum Behave

The attitude warranted worse? I feel like we’ve been a positive thread at minimum. I’m not trying to be rude by questioning what you mean, but I’m genuinely confused, would you mind elaborating?

lavish pecan
#

The bot auto increases the timer sometimes based on how active the chat is

hallow forum
#

So yes

#

Positive maybe

#

Listening no

forest crescent
#

voldemort then, got it

molten bolt
lavish pecan
forest crescent
#

chaos, kyxino, batby and bongo truly the chillest modders out here

tame ledge
#

pixel truly the evilest modder out here

forest crescent
#

Pixel you're a Sound Engineer, not a modder

lavish pecan
#

Lmfao damn poor Pixel

molten bolt
#

oof

forest crescent
#

or maybe a Soundscapes

molten bolt
#

I've learned how to make the json codes + the weights for LR, so I'm partially a coder

#

not a C# coder

#

but a Coder in itself :]

forest crescent
#

true true, Moroxide also a chill modder then

fallen spade
#

@small pond Seems a bit tricky with play on awake I think.. Some ambience sounds are not picked up

small pond
upbeat hound
molten bolt
#

the on awake incident

lavish pecan
molten bolt
#

sorry, I had just woken up at that moment and I just saw that q-q

fallen spade
small pond
#

yeah i do apply some processing on the names to clean them up slightly

lavish pecan
#

How close are we to the next SoundAPI update btw?

fallen spade
#

So DO I include them or no?

hallow forum
upbeat hound
fallen spade
#

@upbeat hound @small pond

Ambience & Misc:

AmbienceAudio:ambience (BRACKEN PERSONAL SPACE)
Sound:steam
Sound:lightbuzz
Sound:lighton
OneShotSound:heartbeat

Bracken:

OneShotSound:brakenScream
Target:you're next

Dress Girl:

// Dress Girl voice over Radio

Target:voice_Insert 1
Target:voice_Insert 2
Target:voice_Insert 3
Target:voice_Insert 4
Target:voice_Insert 5
Target:voice_Insert 6
Target:voice_Insert 7
Target:voice_Insert 8
Target:voice_Insert 9
Target:voice_Insert 10
Target:voice_Insert 11
Target:voice_Insert 12
Target:voice_Insert 14
Target:voice_Insert 15
Target:voice_Insert 16
Target:voice_Insert 17
Target:voice_Insert 18

// Dress Girl voice normal

Sound:voice_Insert 1
Sound:voice_Insert 2
Sound:voice_Insert 3
Sound:voice_Insert 4
Sound:voice_Insert 5
Sound:voice_Insert 6
Sound:voice_Insert 7
Sound:voice_Insert 8
Sound:voice_Insert 9
Sound:voice_Insert 10
Sound:voice_Insert 11
Sound:voice_Insert 12
Sound:voice_Insert 14
Sound:voice_Insert 15
Sound:voice_Insert 16
Sound:voice_Insert 17
Sound:voice_Insert 18

Walker:

Sound:DoorSlam1
Sound:DoorSlam2
Sound:step1
Sound:step2
Sound:step3
Sound:step4
Walker:glitch:glitch

// Walker's stairs:

stairs:MainSource:main // Main ambience
stairs:LowSource:low1 // Low intensity ambience
stairs:MidSource:mid1
stairs:MidSource:mid2 // Mid intensity ambience
stairs:MidSource:mid3
stairs:HighSource:high1 // High intensity ambience
stairs:ShortSource:short1
stairs:ShortSource:short2 // Short/quick ambience
stairs:ShortSource:short3
stairs:RumbleSource:Rumble1 // Rumble SFX
stairs:RumbleSource:Rumble2

Speaker:

Cube.005:SpeakerAudio:Welcome_1
Cube.005:SpeakerAudio:Welcome_2
Cube.005:SpeakerAudio:Terminal_Error_With_Laugh
Cube.005:SpeakerAudio:Terminal_Error_No_Laugh
Cube.005:SpeakerAudio:Terminal_Error_2
Sound:Dog_Spawn_Or_When_Close_to_Ship
Sound:Attempt_To_Shut_Off_Speaker
Sound:Turning_Off_Speaker_2
Cube.005:SpeakerAudio:Eject_1
Cube.005:SpeakerAudio:Eject_2
Cube.005:SpeakerAudio:Loading_Back_In_After_An_Eject
Cube.005:SpeakerAudio:Return_From_Eject_2
Cube.005:SpeakerAudio:0_Days_Left
Cube.005:SpeakerAudio:0_Days_Left_2
Cube.005:SpeakerAudio:Reaching_Quota
Cube.005:SpeakerAudio:Reaching_Quota_2
Cube.005:SpeakerAudio:Reaching_Quota_Again
Cube.005:SpeakerAudio:Reaching_Quota_Again_2

This is the list I got to make. If any issues or concern lemme know!

molten bolt
lavish pecan
#

More Thumper sounds? ;o

molten bolt
#

remember when you guys had to vote the eyeless dog or the thumper?

arctic crown
#

imo the thumper roars are too long, they overlap constantly

molten bolt
#

longroar 3 was the longer of these 3

#

And is the less common

#

I remember that I did it like this because of a dream I had, where the thumper was a human that was experimented on, so I wanted to make the sounds a little more human

molten bolt
#

let me see if I can find the og post

#

here, 1 month before

fallen spade
arctic tangle
upbeat hound
arctic tangle
#

Oh, mb no worries

upbeat hound
#

You’re good, I should be done in around 20 min

arctic tangle
#

whatcha making?

upbeat hound
#

almost an hour later

#

sorry Im back now tho just a moment

quick tree
#

@upbeat hound Hi there! I absolutely love your mod, man. It's an honor meeting you.

#

I use both LR and LR Meltdown.

ruby saffron
#

LR lost scanner sound

ruby saffron
cold vector
#

is there a list of all main menu music thats been in LR so far?

upbeat hound
cold vector
#

Cause there's been at least 4 tracks :| :P

upbeat hound
cold vector
quick tree
upbeat hound
#

1.An EDM song
2.vanilla
3.The old one Abyssal used
4.Forlorn (Current)

molten bolt
#

Hello!

arctic tangle
zealous plank
#

post your json, you probably have an extra comma

upbeat hound
zealous plank
#

oof i cant view it on my phone

small pond
#

after the description

molten bolt
upbeat hound
quick tree
# upbeat hound absolutely! Ask away

Awesome!

So first off, is there a quick and efficient way or mod out there that tests Apparatus Meltdown mods in general, in my case, your LC Meltdown mod? Doing it the normal way going to a moon, a (supposedly) easy one at that in Assurance, with my noobie-self in solo is quite... painful and that is lost time doing attempt after attempt.
RNG is not in my favor.

Second, I messed with the config, not sure if it's the Default.json file I should mess with for this, but I brought back the Apparatus music coding but ridding of the "//" or "*/" stuff and managed to put my own choice of music to play when the Apparatus is taken. The music plays, but the question is, how do I bring the volume of the music up? The music is so quiet during the Apparatus Meltdown, no matter where I'm at. Inside the factory, outside, inside the ship. I tried messing with

            "volumeLerpSpeed": 2,
            "stoppingVolumeLerpSpeed": 0.25,
            "volumeRules":``` 

stuff and nothing. Music sounds like the same volume.
upbeat hound
upbeat hound
quick tree
upbeat hound
quick tree
upbeat hound
#

moreover though, shortly LR Meltdown will be depreciated and merged into the current LR with the new soundAPI

upbeat hound
quick tree
#

Will look more. 🫑

molten bolt
#

It'll be better soon

upbeat hound
#

after its absorbed into normal LR, all you'll have to do is change out the sound files and itll be smooth sailing

molten bolt
#

(no more PizzaTower dependency)

quick tree
#

Awesome! I wish you two luck! Your LR mods have been amazing so far!

upbeat hound
quick tree
upbeat hound
#

BepInEx folder

#

then config

quick tree
#

Allright. Found it. Thanks, man. It's under "bgn.pizzatowerescapemusic.cfg". Now, I'm assuming "Master" doesn't just mess with the music, it raises the volume of the entirety of the mod, so I'd have to be careful with it.

upbeat hound
#

which in this case if you are replacing with music is exactly what you're looking for

quick tree
#

Yeah, I figured. After I sent the message, I had a "Oh wait" moment. Lmao

quick tree
arctic tangle
lavish pecan
quick tree
arctic tangle
#

i thought you cant edit zips?

lavish pecan
upbeat hound
#

it SHOULD work

arctic tangle
#

HOLY SHIT