#[Deprecated] Advanced Company

1 messages Β· Page 18 of 1

solid pivot
#

Same

stiff galleon
#

Well I already put this launcher into SSD and still slow speed

rapid hollow
#

ig im gonna downgrade to the version before 106 for the time being

eternal ivy
stiff galleon
#

Oh

eternal ivy
#

Feel free to try Thunderstore.

stiff galleon
#

Sorry I think I'm stupid lol

#

So

#

When cheese

upper owl
eternal ivy
#

Time to test buy 4 radar booster 😁

#

Typing headl gets me Headset. 😐

rapid hollow
#

.105 def works for me, .106 does the funny ui thing

eternal ivy
#

Nevermind, it's helmet lamp

solid pivot
#

105 was broken tho

rapid hollow
#

i played a 4hs session with 105 today and didnt notice anything adv related

autumn halo
#

did you just copy over the plugins and the patchers folders

split mist
#

Yeah I played for a while with 105 yesterday and didn't have this bug. Interesting. B1adeWo1f, what mods you got, let's see if we can narrow this down to something we have in common

autumn halo
#

that looks like a missing asset

#

whenever i load in a mod and its missing a file like an asset it does that black screen.

rapid hollow
split mist
#

All good, that's fine

rapid hollow
#

you fine with a mod profile?

split mist
#

I can work with that

rapid hollow
#

018cfe73-05d7-beff-e560-8d96dec29393

#

lets see where that gets us

#

turned off a couple libs and loaded in

#

maybe its LECore?

north crypt
#

struggling to load in after update?

split mist
#

If it's LECore, that's a big deal, cuz that's a big dealbreaker for me. Wonder if it has to do with indexing the moons or something

rapid hollow
#

yeah

split mist
#

Taking a look atm tho

rapid hollow
#

im turning it on and trying that again

eternal ivy
#

You could easily test that in a profile with AC and LEC alone.

rapid hollow
#

yup

split mist
#

Mhm

rapid hollow
#

its LECore

upper owl
#

oof

solid pivot
#

Can you try a new savegame btw?

rapid hollow
#

i did

#

same thing

split mist
#

Mhm. I create a new save every time just to be safe

#

Whenever testing at least

valid flume
#

does AC also disable MC's functionally of getting lobby codes and joining through them?

solid pivot
#

One of your logs hat Current Planet 3

#

Experimentation is 1 afaik

analog radish
#

The latest AC update does not allow you to purchase custom items if they are not assigned in their configuration.
The good thing is that it is relatively easy to assign it, but it must be done one by one for each custom object purchasable in the store
It can be seen in the store, but it can't be purchased

rapid hollow
#

well, i didnt send you the one where i did but i did

#

brb gonna get you a clean log

#

without 100+ mdos

analog radish
eternal ivy
#

BetterLobbies

solid pivot
north crypt
#

but my Weegee board :c

#

i cant play now

#

it just breaks when loads

rapid hollow
#

if you wanna play you can downgrade to 105 for the time being

#

that one works just fine

solid pivot
#

How about finding the mod causing this instead of just assuming I am gonna fix something I dont even know why it could be happening

#

well, wont fix then for me :D

valid flume
solid pivot
#

Easy bug treatment for me

rapid hollow
#

well it happened after your update

valid flume
#

Psure MC had that

solid pivot
#

Yea, bug is WontFix for me :D

steep niche
#

This error occurs in the latest version when I click E on the terminal, then I cant interact with anymore

eternal ivy
#

Conflict.

steep niche
#

Oh, ok

alpine charm
#

Does this also fix the perks bug? My friend cant upgrade his perks at all

solid pivot
#

They are seemingly adding them in a way which isnt standard

#

I can address for that

steep niche
solid pivot
#

foreach (var option in moon.result.terminalOptions)

#

This is the line

split mist
#

Yep, can confirm as BladeWolf said. It's LECore not loading properly alongside Advanced Company.

eternal ivy
#

Yes.

north crypt
#

Lethal extended

solid pivot
#

Thats something I might be able to work with later on

alpine charm
#

LECore broke AC again?

split mist
#

Mhm. For now if you need to use LECore, probably downgrade to 105

alpine charm
solid pivot
#

Desync problem most likely

#

Might be fixed, cant guarantee

alpine charm
#

Alright, danke fΓΌr the hardwork

north crypt
#

now if only my visor stopped moving left and right

patent plaza
#

Could be useful to get an FAQ pinned here to reduce some of the spam

#

^

eternal ivy
#

Only staff can pin.

#

Also, go check the mod page.

valid flume
#

minor one but creating a new preset sets moon prices to 0

lost python
#

so... what happened LMAO

eternal ivy
#

New update doesn't work with LECore.

lost python
#

I see

stiff galleon
#

Maybe with next update

solid pivot
#

Its the headset btw

#

not like I did smth wrong btw

#

LECore is doing weird stuff

split mist
#

No, I refuse to believe the headset is the single issue breaking everything rn and not something with the moon settings KEK

solid pivot
#

and not try catching

valid flume
solid pivot
#

The Headset inherits from WalkieTalkie

#

and LECore just treats it as a "vanilla item"

eternal ivy
#

Considering we have a key for headset now, might be worthwile adding one for walkie too? To even further eliminate the need for similar mods.

valid flume
eternal ivy
#

I don't need it myself, but I know a lot of people can't live without those keybinds.

solid pivot
#

I dont know quite yet how I want to handle this situation with LECore potatoe_pepe

#

They could simply add a null check

#

and would fix any incompabilities with mods using base classes of the game

little lichen
#

How WalkieUse did it?

rapid hollow
eternal ivy
#

LE or LECore?

split mist
#

Mhm, communication is key

#

LECore

eternal ivy
#

Because that's two different people.

solid pivot
#

Its a simple change

rapid hollow
eternal ivy
#

I bet LEC dev will be down to fix it.

rapid hollow
#

he's down to fix everything ngl

upper owl
#

indeed, so hopefully this can get sorted

solid pivot
#

I think this is the problem:


    public void AddAudioClip(AudioClip[] clips)
    {
        foreach (AudioClip clip in clips)
        {
            if (clip != null && !audioClips.ContainsKey(clip.name) && !audioClips.ContainsValue(clip))
            {
                audioClips.Add(clip.name, clip);
            }
        }
    }

    public void AddAudioClip(string[] names, AudioClip[] clips)
    {
        for (int i = 0; i < clips.Length && i < names.Length; i++)
        {
            if (clips[i] != null && !audioClips.ContainsKey(names[i]) && !audioClips.ContainsValue(clips[i]))
            {
                audioClips.Add(names[i], clips[i]);
            }
        }
    }
#

Line 127 - 147 in AssetGather.cs

split mist
#

Yeah, honestly at this point I just need the LE and LECore devs to team up and fix shit together

solid pivot
#

The AudioClip[] arrays are null in my new object

split mist
solid pivot
#

so a simple if (clips == null) return;
will fix it

split mist
#

Since clearly the LE dev is far behind in compatibility at this point

rapid hollow
solid pivot
#

Other way would be, I add my items later OR I populate the fields of my new object earlier

rapid hollow
solid pivot
#

So yea, if they are down with adding a null check I would prefer that way

split mist
#

Yeah LECore dev is super chill

rapid hollow
#

lc be like

split mist
#

That's just mod development in a nutshell though

#

Everyone wants their mod to be "the one" until eventually one comes out on top

solid pivot
#

I dont really care tbh

#

Play with my mod or not

#

I created it for me and my friends :)

little lichen
#

can you add InputUtils binding support or same functionality for having possibilities to change keybinds from ingame settings. possibly exept inventory slots

solid pivot
#

InputBindings will come later

#

Only config rn

split mist
#

The work you put into it for compatibility and whatnot is still appreciated, just wanna throw that out there

#

But if it's a simple fix on the LECore dev's part then we should be good

solid pivot
#

I mean, people are shocked when they add such a huge mod into their 150 mods pack

#

and everything still works

#

I do try to go the least invasive route

#

You cant prevent invasive means from time to time tho

split mist
#

Yeah, and then people are shocked when one mod breaks for like 2 patches and you eventually fix it, don't get it man lol

ivory cypress
#

LEcore decided to stop working. Did anything change?

split mist
#

Yeah, revert to 1.0.105, we're seeing if LECore can implement a fix soon

solid pivot
#

The headset was too heavy for LECore

split mist
ivory cypress
#

Oooh, ok. Thank you

solid pivot
#

Too much swag

split mist
#

It was the red band

#

Gotta remove the red band

#

Looked too cool

wild silo
#

Game ~~crash ~~ on terminal when entering perks menu after resetting player and ship. edit: crash is the wrong word. Game froze and was closed manually.

Same log might also include another minor issue I found. Some special characters for preset name break it. .json file never generated due to illegal character error. Preset will show in game menu. Disappears after cancelling out and reentering. Evil character: <>

solid pivot
#

In case of emergency

#

I have a fix from my side ready

#

for LECore :)

split mist
#

But I assume it's a less-than-ideal solution that could cause issues later

solid pivot
#

Nah, its just cleaner to assign everything in the prefab

#

But required me more work than a null check for them :D

split mist
#

Valid, clean code is good

#

I do wonder if the headset will break alongside other Walkie mods, in hindsight, but I suppose we'll see

solid pivot
#

ArgumentOutOfRangeException: Count cannot be less than zero.
Parameter name: count
at System.String.Ctor (System.Char c, System.Int32 count) [0x0000d] in <787acc3c9a4c471ba7d971300105af24>:IL_000D
at System.String.CreateString (System.Char c, System.Int32 count) [0x00000] in <787acc3c9a4c471ba7d971300105af24>:IL_0000
at (wrapper managed-to-managed) System.String..ctor(char,int)
at AdvancedCompany.Terminal.PerkCursorElement.GetText (System.Int32 availableWidth) [0x000e3] in F:\Projects\UpgradeCompany\Terminal\PerkCursorElement.cs:34

#

@wild silo

#

Fix your perk levels

#

or XP costs

#

one of them is too long for the terminal to display

#

var expBar = new string('β—Ό', level) + new string('β–‘', Perk.Levels - level) + new string(' ', expBarLength - Perk.Levels);

#

Its the bar

#

You have too many max levels in a perk

split mist
#

Yeah, double-check your configs cuz one of them could have been borked on update, have had that happen before

#

What's the max levels in a perk, 10?

solid pivot
#

expBarLength is 11

#

11 is the max number of levels you can have

split mist
#

gotcha

solid pivot
#

This will change soonish

#

Because oof

#

Wont spoil it

#

Youll see

split mist
#

Oof?

#

Anyways once either your patch or the LECore patch is out I'll test out the day length settings and see how they play

solid pivot
#

1.1.0 Beta 4 Hotfix 1 (1.0.107)

  • Fixed new presets having wrong moon prices
  • Fixed incompability of the headset with LECore.
  • Fixed some values of moons not saving correctly.
#

Mine is out. Thunderstore needs to update tho

wild silo
solid pivot
#

I should add a sanity check tho

#

So that it throws an error in the log like "max levels is 11"

#

Instead of breaking the game

wild silo
#

would be good pratice. You've seen my note about illegal characters in preset names too?

solid pivot
#

This code was from the time when the mod was only planned for me and my friends

#

No

#

Just use alphanumerical

split mist
#

Thanks Potatoe

#

Gonna go heat up a potato burrito and then I'll do some tests

#

I'll let you know when other mods inevitably break the headset too nyctodSip

upper owl
#

issue with LECore still happening maybe
I say maybe because I downloaded new AC manually and installed as a local mod in r2, it does say it's 107, and the issue still happening

I'll wait till the manager updates but I doubt it'll change much

split mist
#

Did Potatoe forget the dll again

solid pivot
#

oh?

#

I am VERY tired

#

I am awake for 20 hours now

split mist
#

Potatoe you need to sleep more Lul

solid pivot
#

:<

#

People always: POTATOE I WANT POTATOE POTATOE POTATOE

#

STAY AWAKE

#

YOU NEED TO ANSWER ME 24H A DAY

#

Potatoe is like: Sleepy sleepy, poor potatoe is dying from no sleep

#

People are: DONT CARE! WORK! WORK! WORK!

split mist
#

You don't need to answer 24h a day, you're not getting paid for this, people know that MewHeart

solid pivot
#

Doesnt feel like it

#

tbh

#

I confirmed that its the DLL which fixes the problem tho

#

I have LECore and AdvancedCompany running

eternal ivy
#

pinger, hacking tool
Those are not from LGU.

split mist
#

Tis working Potatoe

#

Go slump

solid pivot
#

No, need to fix Jeb calling bug

untold pagoda
solid pivot
#

I need to take away the phone from Jeb

split mist
#

Potatoe do I need to take your phone

#

I will do it

eternal ivy
split mist
#

Will put it in lock box

untold pagoda
split mist
#

Why is the headset a phone

#

Eh it's fine

#

as long as it works

#

who cares if it rings

ivory cypress
upper owl
#

haven't tried again yet but if it works for people then it should be good, sorry for false alarm πŸ™‚ or maybe it's another mod now kekw

split mist
#

But it worked on manual download from Thunderstore

ivory cypress
split mist
#

It's Thunderstore, so... way longer than it should

#

Thunderstore stinky

solid pivot
#

Thunderstore slow

#

🐌

ivory cypress
rapid hollow
#

i love when i open a game and overwolf tries to advertise some piece of shit app

split mist
#

I'm glad the community can unite over Thunderstore being bad

#

r2modman still runs through Thunderstore lol

stiff galleon
rapid hollow
#

yeah, r2modman is kinda a saving grace here

split mist
#

SNAIL BOOTS

#

Alright no sleep for Potatoe, we need snail boot

eternal ivy
split mist
#

This is 100% a joke, go sleep Potatoe

stiff galleon
#

WORK!!WORK!!!WORK!!!!!!!

split mist
solid pivot
stiff galleon
#

yeah go to sleep bro

solid pivot
#

Yes RG

#

Work

ivory cypress
eternal ivy
split mist
#

RG add snail boots

#

It's your job now

split mist
#

Decreed by Potatoe

stiff galleon
#

It's RG sir not only RG

eternal ivy
#

They can't use r2 codes though. r2 can use either codes.

stiff galleon
#

NOW GET BACK TO WORK MR.POTATO

split mist
#

I will address you as sir if and only if you add snail boots

swift trellis
#

So I've think there a conflict between the new update and some mods

split mist
#

is that 1.0.106 or 107? @swift trellis

stiff galleon
split mist
#

106 is incompatible with LECore, 107 fixed it

swift trellis
split mist
#

We're currently waiting on Thunderstore's slow ass

#

So it's probably 106

swift trellis
#

that explains it

stiff galleon
#

107 incopatible with RTX4090 : ( BRO NEED TO MAKE IT COMPATIBLE WITH RTX4090 42069 VERSION

solid pivot
split mist
#

LET THE POTATO REST

#

HE'S GONNA DIE

stiff galleon
#

THERE'S INSURANCE!

smoky quail
#

i uninstalled LE and LEC, use 106 and have this bug also

eternal ivy
#

Potatoe makes all this fixes that could also be made on other side, which makes people think AC is a broken mod that needs constant updates.

stiff galleon
#

HIS FAMILY WILL GET PAID!!!!

split mist
#

see if 107 fixes it

#

If not, then we'll go from there

stiff galleon
#

See if the problem is fixed or not

swift trellis
#

Sorry if bothering . I was trying to get cosmetic working in advance company and when I try lethalemote api it didn't show anything on my goofy head.

stiff galleon
#

And I personally recommend that use new save to test

solid pivot
#

Only compatible with TooManyEmotes

swift trellis
#

damm

eternal ivy
#

Is it compatible now? Or in the future?

swift trellis
#

can do the griddy no more then

split mist
#

Mod works with More_Emotes for me too if you want the Griddy, just not alongside other emote mods

solid pivot
#

I havent tested it yet but its the only mod I want to support

stiff galleon
rapid hollow
#

i think toomanyemotes has the griddy

solid pivot
#

All others override the whole controller

eternal ivy
#

TME has like 100+ emotes.

rapid hollow
#

i've been playing with toomanyemotes for a long time and it didnt have any issues for me

#

well sometimes i see my own hat but a rejoin fixes that...

stiff galleon
#

And also snail boot is the top priority things to do now

split mist
#

TME has actually too many, it's why I haven't used it yet KEK

stiff galleon
#

SNAIL

#

BOOT

swift trellis
stiff galleon
split mist
#

You're good, nothing wrong with reporting stuff

stiff galleon
split mist
#

Just don't expect fast fix, he need schlump

stiff galleon
#

Yeah he is kinda exhausted

solid pivot
#

1.1.0 Beta 4 Hotfix 2 (1.0.108)

  • Fixed a bug which caused Jeb calling you when directly dropping the Headset from an equipment slot
eternal ivy
lost python
#

wait what LMAO

split mist
#

POTATOE NO

#

THE MOD FINALLY UPDATED ON THUNDERSTORE

#

DANGIT

#

GO SLEEP

stiff galleon
#

So would you sleep together with me potatoes? It's 1:30AM now in Taiwan

split mist
stiff galleon
#

We can sleep together

solid pivot
#

I dont sleep together

stiff galleon
#

How romantic it is

solid pivot
#

Better stay awake for a couple more hours now

#

*drinking energy drink*

stiff galleon
#

Oh

#

OK so

#

Snail boot

#

NOWWWWWWWWW

solid pivot
#

You will never steal my dreams!

ivory cypress
#

Thunderstore takes about 29 minutes to update

smoky quail
split mist
#

So it's probably another mod, not LECore

stiff galleon
#

I will sneak into your dream and stole your snail boot

split mist
#

Will have to figure out what the cause is

#

Since I tested and it works with LECore

stiff galleon
#

And leave with nice mood

#

HAPPY RG RIGHT NOW WITH SNAIL BOOT

solid pivot
smoky quail
ivory cypress
#

Yeah, it works for me. Lecore installed and advanced company running aswell

split mist
#

Getting a new error in the log

[Error  :AdvancedCompany] Error while extending Lobby:
[Error  :AdvancedCompany] System.NullReferenceException: Object reference not set to an instance of an object
  at AdvancedCompany.Patches.LobbySizePatches.CreatePlayers (Unity.Netcode.NetworkSceneManager __instance) [0x0005b] in F:\Projects\UpgradeCompany\Patches\LobbySizePatches.cs:1005```
rapid hollow
split mist
#

Yeah works with only LECore, I'll do some more debugging and figure out what friend is causing the issue

rapid hollow
#

you're probs right

#

cause im also getting this

solid pivot
#

I can say this rn: WontFix

upper owl
#

still have the issue here too, time to go on another hunt

solid pivot
#

I wont change anything on line 1005

#

Removing the stuff at line 1005 would mean 4 player lobbys

#

The other mod should fix their weird stuff

split mist
#

Makes sense

#

I'll take a look and see

upper owl
#

disabled lethallib and it works fine, so it's either that or something depending on it like LLL or dungeons Harold

#

gonna test further

solid pivot
#

lethal lib just removes the players from the game?

#

seems like a bad lib

split mist
#

That way we can try and narrow it down since we're both having the same issue

#

This is my LethalLib disable list atm

#

though Polaroid should already be disabled

upper owl
#

LLL, scpdungeon, scoopys, lethal things

#

and egypt

split mist
#

Kk

rapid hollow
#

didnt lethallib break like

split mist
#

I don't have EGypt so it's not that individually

rapid hollow
#

an hour ago?

untold pagoda
#

Yeah I downgraded LethalLib and everything works fine now

warm prawn
#

i got the same problem, i only have lethal things installed

rapid hollow
#

yeah nvm, thats a known issue

split mist
#

Oh did it? Is LethalLib just broken atm?

rapid hollow
#

yeyeye

split mist
rapid hollow
#

dev knows

eternal ivy
#

Yes.

rapid hollow
#

dw

split mist
#

Got it

rapid hollow
upper owl
#

time to roll back lethallib then

split mist
#

Dammit LethalLib stop updating

#

Alright Potatoe if you're still lurking go sleep

solid pivot
#

Removed all players? potatoe_pepe

upper owl
#

I just tried it with just lethallib enabled and it still worked Harold

#

but gonna downgrade now and enable everything else

#

i guess cause nothing relies on it, it can't break shit either

split mist
#

Yeah it's very possible that the update specifically breaks dependents

#

and has no effect alone

#

unsure

untold pagoda
#

Lmao now I know why the mod developers are working overtime

split mist
#

Cuz anything updates and everything else breaks? PCsipsip

untold pagoda
#

Yeah lol

split mist
#

No more touching the code, for like one day

#

All the devs, go home, get sleep

untold pagoda
#

The modders should all agree on some versioning system "hey we confirmed this only works with v1, but not v2", so thunderstore can avoid auto-updating before confirmation.

upper owl
#

yeah it works after downgrading lethallib

split mist
#

Sweet

upper owl
#

dev seems to be aware so just gotta wait for that to update again

split mist
#

WOO, WAITING FOR UPDATES

#

Time to go eat another burrito

swift trellis
upper owl
#

0.11.2

solid pivot
#

So lovely people

swift trellis
marsh sparrow
solid pivot
#

Will block these users now

ember prawn
#

wtf why did bro become a supervillain

ivory cypress
#

I found a mod that doesnt work, even though it worked before. Rolling giant

ember prawn
#

arc

#

he so salty

#

xD

split mist
#

Honestly, valid. I've seen you working overtime for nothing but fixing shit

#

Go get your sleep, you've earned it

solid pivot
#

Will block anyone shit talking in other threads

split mist
#

Seriously

solid pivot
#

a missing == null check in LECore is ACs problem

#

Sure

ember prawn
#

potatoepet never sleeps

smoky quail
#

ye, downgrading seems to help. Thx

solid pivot
#

Oh, seems like Lethallib is also always breaking everything potatoe_pepe

ivory cypress
#

Great job with the mod potato, you should probably go sleep though, its been a while since youve said you were awake for 20 hours.

split mist
#

nodnod

swift trellis
#

what did you add that fucked the code so much

solid pivot
#

Where is the late join mod which syncs stuff? Huh?

#

Oh

#

There isnt any?

ember prawn
#

cheers for that! me and my friends are gonna play in 10 mins

solid pivot
#

Pathetic :)

ember prawn
#

guess ill downgrade ti now

split mist
#

It's almost like every other late join mod breaks everything and nobody bats an eye

solid pivot
#

Its funny that TheMostLethalCompany is running AC as a lobby solution for >120 mods

#

and working soooo stable

ember prawn
#

xD

solid pivot
#

Seems like a user and skill error to me

#

tbh

#

Stoopid users cant get mods working

ivory cypress
#

Any idea on why the rolling giant mod broke in this update? it only uses bepinex.

solid pivot
#

Bohooohoo

split mist
#

Literally remember my first test modpack and I couldn't even use MoreCompany at all because it literally disabled weather across all planets if I installed it

solid pivot
#

Oh btw, there is a weather sync bug I think with late join rn

#

Forgot to fix it before release

#

But now I am too tired

split mist
#

Valid

solid pivot
#

I observed it, wrote it down

#

and forgot it

split mist
#

I'll check it out later

stiff galleon
#

Rest bro

#

Go to sleep

split mist
#

It's no biggie

ember prawn
#

ayo potatoe

solid pivot
#

So best not to late join on moon xD

ember prawn
#

you absolute madman

#

have you fixed the lecore incompatibility

solid pivot
#

Only for testing

ember prawn
#

already

#

????

solid pivot
#

Oh wait

#

You can

#

You will only spectate

ivory cypress
#

Yeah, go sleep man. Good job with the mod, one of the best mods out there

solid pivot
#

You dont have any influence over the game :D

#

But know that the weather might be wrong

wild silo
#

First observation on new time setting: it's probably not how you want to implement it.
Vanilla passes 1.4 ingame minutes every second. That's 43 seconds for an ingame hour. With roughly 16 ingame hours until midnight that's around 700 real seconds a day. Checks out.
However these are my finding with the new setting: 700 will have an ingame hour pass in 28 real seconds. 1400 it's 56 seconds. 350 accordingly 14s.
So the scale works but the base is off.

It will also affect time of arrival. Min value will have you land at 1-2pm which is much later than time passed during landing would account for. Feels much like "DayTimeScalar" from LethalUtilities which also affects time scale and time of arrival. On that note: the author of that mod just found out the game is apparently ignoring his "TimeSpeedScalar" for clients.

solid pivot
#

oh ok

#

Will look into it when I am more awake

#

And just a heads up again

split mist
#

Fair

solid pivot
#

If I see you trash talking my mod or me in other threads or anything

#

I will block you

#

You wont get any support from me whatsoever

split mist
#

If you want support, don't be an ass about it, this isn't a paid job

solid pivot
#

And if I could I would not use Thunderstore but most people use it

split mist
#

I appreciate you continuing to use Thunderstore despite the... "challenges"

stiff galleon
#

Well some people just never know this is a free job and most mod devs create mods and maintenance them just because they want to make this game better

ivory cypress
split mist
solid pivot
#

AdvancedCompany aims at providing a new experience even without adding 100 mods

stiff galleon
#

And some people just --> work work work!! don't be lazy!! You own me that

split mist
#

The fact that it works at all with as many mods as it does is spectacular

stiff galleon
#

If you are feeling suck like oh why everything so broke

#

Just listen to me

#

Create

#

Your

#

God dame

#

Mod

#

On your own

solid pivot
#

*Game

stiff galleon
split mist
#

Gonna go make Lethal Company 2, brb

#

Now with light shoes

#

and snail boots

stiff galleon
#

I even don't think they can make a mod

solid pivot
#

This shit talks makes me wanna create my own game even more :3

ivory cypress
#

Fnaf two released shortly after fnaf 1, why cant lethal company 2 release in a few months

stiff galleon
#

That's why some moddable game die very soon

#

Because these toxic people

ivory cypress
stiff galleon
#

They make some devs disappointed for this environment

split mist
#

Blocking and ignoring is the right call /shrug

stiff galleon
#

Even some free game without in-game purchase

pulsar tangle
stiff galleon
#

Still have toxic people

#

And most of them

ivory cypress
#

Even Metal gear rising has an active modding community, modding is super cool and swaggy

solid pivot
#

Of course but at least they have to pay me then potatoe_pepe

stiff galleon
#

Is a kid

#

Or

#

0 experience on dev

split mist
#

I genuinely would pay you more for all your work on this mod if I had a job rn

#

Tis a shame I am dead broke until I move to Colorado

stiff galleon
#

They don't even know how hard to make a perfect mod

#

They only make some function with chatgpt

split mist
#

Wdym chatGPT code is perfect obviously

stiff galleon
#

Abd they will say that : look I'm a GaMe DeV

split mist
#

GOD WHY IS THERE NO EASY REVERT UPDATE IN THUNDERSTORE

#

WHY ARE YOU SO ASS

stiff galleon
split mist
#

This was a joke

stiff galleon
#

You will spot many bugs if you use that code

ivory cypress
#

someone should make a mod for thunderstore that closes overwolf when you launch the game

stiff galleon
#

And again I think maybe I overreacting

ivory cypress
split mist
#

I'm gonna go code a mod called BetterThunderstore, I've literally only ever coded Terraria mods but I can probably do better than Thunderstore

stiff galleon
#

But seriously I really don't like people give stress on free mods or game

ivory cypress
solid pivot
#

Spyware basically potatoe_pepe

stiff galleon
#

Some stress is good but too many stress will make dev really upset

stiff galleon
#

Especially being toxic

split mist
#

Potato, I love you, please tell me you're in bed

#

And not still up

#

Changing things

solid pivot
#

Like I say: Spyware

bleak frigate
solid pivot
#

No :D

ivory cypress
#

Ads do pay really well huh..

bleak frigate
#

GO

#

TO

split mist
#

Bros been up for what, 21h now?

bleak frigate
#

SLEEP

stiff galleon
#

And last thing before I go to bed

split mist
#

WAIT POTATO

#

I JUST HAD A GENIUS IDEA

#

PUT ADS IN ADVANCED COMPANY

#

MAKE THE MONEY

bleak frigate
#

lol

bleak frigate
split mist
#

It's perfect, and then eventually you can make the ad for your game you code

swift trellis
stiff galleon
#

@solid pivot I really love this mod and appreciate your hard working. I never love a mod or game that deep. All things I can say is thank you

ivory cypress
solid pivot
#

I will probably go the Cities Skylines 2 route for my game potatoe_pepe

bleak frigate
#

BUY YOURSELF A SNARE FLEA REPELLENT FOR $15.99

ORDER NOW AND YOU CAN BUY THE REPELLENT FOR $9.99! BUT ONLY FOR A LIMITED TIME

solid pivot
#

Having an own launcher where you can download mods etc.

stiff galleon
#

Now I'm gonna go to sleep now it's 2AM : D

#

And I hope I can get my snail boot when I wake up : DDD

eternal ivy
#

/jk

solid pivot
#

Nooooo

alpine charm
#

is length of day on the inverse

split mist
#

So

solid pivot
#

Launcher Route :D

bleak frigate
split mist
#

I was gonna say Cities Skylines 2 wasn't that bad, but then, knowing the game was somewhat unstable, they left Autosave off by default

solid pivot
#

yea

#

exactly

split mist
#

So uh

solid pivot
#

But like slim

alpine charm
#

I set it to 900 from default 700 and it seemed to go faster

solid pivot
#

without spyware bloat

split mist
#

12h of progress lost made me hate CS2

swift trellis
eternal ivy
#

No.

swift trellis
#

like stalker gamma installer

eternal ivy
#

One of the actually good features of r2 is lack of fully automatic updates.

swift trellis
#

yea you right

eternal ivy
#

I prefer seeing what updates and not letting everything break just because something updated without my knowledge.

split mist
#

Just please add a "Change version" option

swift trellis
#

hmm, installer with an option to change the version doesn't sound that bad

old glen
#

how do you use

#

the headset?

solid pivot
#

Equip ist in Equipment Slot and press V

#

You can change the keybind in config

split mist
#

With a little more testing, Potatoe, looks like a setting of 1050 with your new timescale is roughly equivalent to vanilla

eternal ivy
#

?

#

Isn't the default vanilla?

split mist
#

It's supposed to be, but isn't currently

#

Default will start you a little later than 8am

#

Actually 1050 starts you earlier than that

#

Probably more around 1000 is right

#

Hard to say

eternal ivy
#

Default timescale is 1.4.

wraith totem
eternal ivy
#

Good to know. Thanks!

solid pivot
#

btw

raw shoal
solid pivot
#

I know but cant use it commercially

split mist
solid pivot
#

Will do my own dungeon generation anyway

raw shoal
#

yeah ofc, but for modding it is nice

#

i didn't read the rest of the thread

#

lol

solid pivot
#

Modding is something I lose interest in :D

#

Being deemed the scapegoat even tho I mostly use the least invasive methods is tiring. Argueing against those simpletons as well.

eternal ivy
# split mist See this, Agitatio

Still think that changing timescale with seconds in a minute is a more intuitive solution tbh. I don't think most people care about calculating how much the day will last and just rather set how much seconds are there in in-game minutes. And I bet 1:1 is a very popular timescale.

solid pivot
#

No mod out there uses that many transpiles

#

AdvancedCompany is compatible with a ton of mods. But hey, its not compatible with ReservedSlots by choice.

eternal ivy
solid pivot
#

Thats enough for people to shit on the mod.

#

Even tho I explained the reasoning behind it.

#

"BUT MUH RESERVERDSLOTS!!!!"

#

Cant hear it anymore potatoe_pepe

#

People lecturing me over what my mod does is also very funny

split mist
#

Potatoe, go sleeppp

solid pivot
#

Cant sleep potatoe_pepe

split mist
#

Valid

solid pivot
#

Oh

#

another one to block

#

missed that

#

Another one bites the dust

eternal ivy
#

Well, as I said previously, you have ego and can be passive aggressive sometimes. Which is what stands out to most. However you back it up with your work. I'm no developer, but I see how solid what you actually make is. You have so many features that most other people would have to do through some other library and in much more time still. The recent feature that lets us add custom moons manually to the config is just awesome, and that's just one example.

solid pivot
#

Funny is that I remember him being very unfriendly potatoe_pepe

#

And demanding

split mist
#

If I remember correctly, I think BladeWolf was just repeating what you said, but I don't remember the whole conversation, so that's your judgment ultimately

eternal ivy
#

I probably look like AC shill to others at this point, but I don't care. AC is an awesome mod and I will continue shilling it. If not because of people behind it, then purely for the work that was done to create it.

split mist
#

Cuz your initial reaction was WontFix KEK

#

Agreed Agitatio, the work is good

solid pivot
#

Yea, without proper bug report its a WontFix of me :D

#

It was in reference to this

#

Advanced Company has very little problems tbh

#

The biggest problem is that I fix bugs AND add a shitton of new content at the same time

split mist
#

Agreed. Occasionally an update comes out, shit breaks. You fix it. Don't see how that's "incompatible with every mod"

eternal ivy
#

That's why I previously said that even when you fix issues that are actually better fixed on other side, it just further reinforces the narrative of "AC is a broken mod".

split mist
#

There's also that, once you become the person to start fixing shit people assume you always have to fix everything and it's never any other mod's fault -.-

#

btw, Potatoe, is there a test command for giving XP like there is for credits?

#

Would like to give myself XP to see how scaling feels

#

If not no biggie tho

eternal ivy
#

type xp in terminal

#

You can also change starting XP.

split mist
#

Got it, thanks Agi

eternal ivy
#

You need 29k to buy all player perks with default settings.

solid pivot
#

Yes

#

xp 0 10000

#

gives host 10000 xp

#

0 being the client id

split mist
#

sweet

solid pivot
#

You can also type the username you see over the head of people

#

xp playerX 10000

#

shipxp 10000 will grant ship xp

#

And I do have a tendency that I get unfriendly when I feel being treated unfriendly potatoe_pepe

split mist
#

Hmm, travel discount isn't showing up, odd

solid pivot
#

Have you deactivate the ChangeMoonPrices option?

#

It will also deactivate TravelDiscount :D

split mist
#

yknow what, maybe

#

lemme check that

solid pivot
#

Because you tell the mod to not change moon prices potatoe_pepe

split mist
#

Yeah that makes sense, got it

#

Skill issue, as always

solid pivot
#

Will add some more funny stuff later into the tweaks section. The ability to create custom loot tables

split mist
#

Do the config settings work properly with decimals? For example, setting sprint speed to 7.5 instead of 10. It doesn't show up as 7.5 in-game, just 7, but unsure if that's just a display issue

solid pivot
#

And change enemy spawn and enemy types etc.

#

I think you have to do that in the json file :D

#

I round the values

split mist
#

Yeah, I put the decimals in the json directly, just they were rounded in the in-game menus so wasn't sure

#

Discount isn't currently working on modded moons, but let me try adding them to the registry with their prices

solid pivot
#

It shouldnt rewrite the values as long as you dont click save I think. Not entirely sure tho

#

oh yea

#

You have to add new prices for them in the config

#

For TravelDiscount to work

#

Will fix

split mist
#

Kk

#

Will test that now and make sure it works once its done like that and there's no issues there

solid pivot
#

Fixed locally for next version

#

btw

#

If you know, you know

eternal ivy
#

Remote Terminal

solid pivot
#

:3

eternal ivy
#

Great, I broke TME again.

split mist
#

Okay yeah travel discount is working, except on Kast HmmCoffee

#

It also appears to be wiping this whenever I create a new save

smoky quail
#

LethalLib just released 0.12.1 which seems to work again ^^

split mist
#

Yeppers peppers!

solid pivot
#

But never forget, it was AdvancedCompanys fault according to some experts potatoe_pepe

eternal mauve
#

does advanced company have the option to disable xp gain and perks?

eternal ivy
#

Yes.

eternal mauve
#

Also Potatoe youre doing so much dayum

eternal ivy
#

@split mist I think current time scale settings just sets amount of seconds in 24 hours, instead of 16.

eternal mauve
#

cracked programmer

split mist
#

Yeah really weird that it's specifically not working on Kast, can't figure out why that is

#

And it seems to be resetting whenever I create a new save, so it might not be writing properly

solid pivot
split mist
#

And if I leave them empty after a reset the terminal becomes uninteractable, probably because the prices are invalid at that point

#

Is that like a handheld terminal?

solid pivot
#

I said I will have a solution for
A) to spend your XP and
B) to level up at the same time with 32 players

#

Yesh

#

Mobile Terminal

agile fjord
#

is there a way to spawn with 4 inventory slots?

solid pivot
#

You can buy features with XP

#

Like Ordering stuff from outside of the ship

split mist
#

Dayum

solid pivot
#

Or the ability to hack doors

#

Stuff like that

#

And it will only use my custom terminal code, no original Terminal stuff

swift trellis
#

IT FUCKING WORKS HELL YEAHHHHHHHHHHHHHHHHHHHHHH

split mist
agile fjord
#

thanks

solid pivot
#

But now I will actually sleep

#

πŸ‘€

split mist
#

Enjoy your sleeps

solid pivot
#

Will create a sick mobile terminal tomorrow

split mist
#

I shall see if I can figure out why Kast isn't working

solid pivot
#

But stuff like Door hacking will cost a lot of XP

#

the Terminal will have apps you can buy

split mist
#

Very cool

solid pivot
#

And hacking will require you to solve a mini game

#

Like the fallout ones or so

#

Probably will also add a loot ping app etc.

#

But apps will be like 1000-4000 XP

#

They are very very late game

analog radish
#

lowering the value makes the time faster or slower?

solid pivot
#

The value seems broken rn, 1400 seems to be vanilla according to some

#

will investigate this further tomorrow

#

Now its time to sleep

split mist
#

Nah 1400 isn't vanilla, it's more around the 1000 range

#

1400 is too much

solid pivot
#

And its meant to represent the seconds a day will have

#

in real life seconds

#

So 600 should be 10 minutes when it works

eternal ivy
split mist
#

Got it, okay so Kast isn't a Potatoe issue, you just have to format it as 13-Kast exactly or it breaks

eternal ivy
#

Issue is, game's default day is 16 hours.

split mist
#

However the config does appear to be clearing itself after a lobby is made

#

(the section for custom moon prices I mean)

analog radish
eternal ivy
#

When it will be fixed, you wont need to go past 960 for that.

split mist
#

Mhm, tis a tad booged atm

eternal ivy
#

1050 is the vanilla value right now.

split mist
#

Config only clears itself on the base config, if a preset is made it appears to be fine

analog radish
#

To answer this question, yes, you can increase more than this value.
The curious thing is that the higher the value, the earlier the game begins, sometimes even starting at 6:00 am

distant viper
#

There should be a difference between headlamp + walkie and flashlight + headset

eternal ivy
#

There is.

old glen
#

is anyone else

#

not able to host?

eternal ivy
#

You cant use walkie through a keybind

old glen
#

whenvever i press

#

continue it dosent work

distant viper
split mist
#

There's been several issues today

eternal ivy
split mist
#

A new save might also be needed

distant viper
eternal ivy
#

Yes, but AC should adapt to that. You should.

#

Change price or something.

split mist
#

And also, to be fair, the other difference is the type of light

#

Headlamp and flashlight look very different

#

Allows more options based on preference

#

I prefer the look of the headlamp to the flashlight, but some people may prefer the flashlight since I know a couple of people have said the bright yellow headlamp is hard on the eyes

eternal ivy
#

So 1029 is as close as it gets.

split mist
#

Mhm, I tried 1050 and thought that was right but noticed it was a tad off

#

Will be updated later after the Potato sleeps

#

He straight admitted the setting hadn't been tested at all so it's very experimental KEK

analog radish
#

and I kinda like it

long zephyr
#

hey i dont really understand what the item menu does would it let me add shotgun shells to the shop?

eternal ivy
#

Lets you adjust items from other mods.

split mist
#

^

eternal ivy
#

@solid pivot inventory upgrade only has 4 levels by default on newly created presets

#

Vest Damage Reduction values also show two extra zeroes, even though the config file doesn't have them

sonic lava
#

So is late join working? We are trying to join late but we just get an error message.

solid shadow
lost python
#

joining in orbit or in moon?

sonic lava
#

on moon

#

but even when they are in orbit we've been getting the same message tbh

#

we have the same mods

solid shadow
#

on moon should work as well, for me at least it did yesterday

eternal ivy
#

Steam is dying rn.

solid shadow
#

did u double check with ur friends

#

the files and stuff

sonic lava
ember prawn
#

is the store bugged with advcompany? feel like lightning rod has been 20% for 3 quotas

meager cradle
#

πŸ€”

valid flume
#

doesn't occur on new created ones

sonic lava
#

Joining late works now

#

Do new moons work? I don't see them on the terminal with advancedcompany

#

modded moons i mean

proper lodge
#

carry bags isnt working

sonic lava
#

works for our group

#

nvm the moons can be bought, they just don't show up on the terminal, but the problem is we don't know the weather before buying there..

#

fml nvm, it tells me what the weather is before buying, i'm just dumb

proper lodge
#

doesnt work for us rn some reason

steep sail
#

An issue I run into a bit is that the terminal keeps thinking I wanna buy a rocket launcher from Lethal Things rather than getting rocket boots

marsh ruin
#

I thought that was fixed in the latest update.

steep sail
#

from advanced or lethal things?

marsh ruin
#

advanced

steep sail
#

it did just update today didn't it?

marsh ruin
#

like 3 times, yes.

modern temple
#

Trust us. Just get Too Many Emotes! Its way better! Has about 100 emotes, an works via an emote popup wheel in game. Also gives 3d rotational camera when you use an emote!

steep sail
#

I'm saying this right before going into work so I could be wrong

agile fjord
#

since i got this mod there's now:
2 day 3's
2 day 2's
1 day 1
1 day 0

whats up with that and how do i fix it

#

all modifiers are disabled

plush fern
modern temple
#

My ONLY single gripe with this entire pack an using the compatible mods right now is the loss of the more company "mimics unmasked + more companys effect where mimics spawn with a random crewmates outfit AND cosmetics!" Once Advanced Company gets that feature I am gonna be singing this packs praises to the rooftops! As nothing causes more chaos in a dungeon when ya run into a buddy talkin at ya "via skinwalkers" an has their outfit, so clearly them, an they throw some emote stank at ya... so you turn around to avoid them... then get got... an nearly have a panic attack, lol. πŸ˜„

nova ingot
#

They should spawn with cosmetics and a suit

modern temple
#

Mine spawn in a red jumpsuit an no cosmetics atm. Did that function already get added in???

nova ingot
#

With Adv company

#

I'll check it

modern temple
#

If thats something that suppossed ot already be happenning with Advanced company I might have a mod conflict then.

#

Please do so I will know if I need ot do some mod testing.

#

Much apprecaited, ahead of time!

#

Was runnin around in the titan map today, an found my first Needy Cats cat. That mod is SO NICE!! It, plus Pinto boy, and Nerd_scrap are my go to scrap mods now. I so badly need to learn how to make mods so I can combine stuff to help fix bugs an conflicts etc.

long zephyr
#

it says lethal things is compatible on the mod page and i have some items disabled in their config but i can still buy them in the shop do i have to disable them in the in game item menu as well?

proper lodge
#

Now none of my perks are working???

proper lodge
#

Yeah I've suddenly gone back to base speed, I have 4 slots visible, I have base stamina, all that

#

No clue why

nova ingot
#

Are you using save progress or an old save

proper lodge
#

Nope, fresh run with 6 others rn

plush fern
#

Hey did the new update for this change the ingame timescale by default? My ship is landing at 9 am instead of 8 am...

nova ingot
#

Have you tried wiping the configs and refrshing them

proper lodge
#

Not yet, but we're mid run and i doubt they wanna do that
What would that even do? We didn't touch the configs at all

nova ingot
#

And if you go to perks, NOTHING is already purchased, correct?

proper lodge
#

No, I have everything, but none of it is applied.

nova ingot
#

And you've tried respecing?

proper lodge
#

Let me try rq

#

At this screen, I can't even select PLAYER

#

Or go up/down

#

I just have to hit tab to get out of the terminal

nova ingot
#

Arrows keys/enter do nothing huh

proper lodge
#

nothing

nova ingot
#

Give player.log

proper lodge
#

Path?

nova ingot
#

AppData\LocalLow\ZeekerssRBLX\Lethal Company

modern temple
# nova ingot Works for me

So confirmed then. Mimics are suppossed to randomly already have one players cosmetics. Leader if you dont mind. could you shoot me a PM? So I can try to sort out what mod might be my conflicting one.

nova ingot
#

Do you have maskedenemyoverhaul

modern temple
#

yes I do.

nova ingot
#

That

proper lodge
#

rejoined, all perks working

#

including extra slots

nova ingot
#

Guess it was just some weird desync?

modern temple
# nova ingot That

Really appreciate the info! Got it disabled an testin now. Cant wait to see it workin again!! πŸ˜„

proper lodge
nova ingot
modern temple
#

As I love its bracken shutting off lights features. lol

silk tartan
#

hello i got a bug, i was playing on someone else's server and when it was midnight for them, it was 4pm for me. eyeless dogs were outside and it was bright out for me, and then the ship randomly left at 4pm when i didnt realise the actual time was wrong. i think it was because i set my length of time when i host to be much longer, and it used that instead of the host's value for some reason

here is my log if it helps

nova ingot
modern temple
# nova ingot Never had a problem with it

NOICE!!! MAkes me so happy. Love the creepy bracken effects it adds. EVERY SINGLE TIME it starts shutting off the lights as it advances it gives me chills. lol. πŸ˜„

nova ingot
silk tartan
#

i see, though i was off by around 7-8 hours compared to the host

nova ingot
#

I don't think it's supposed to push an hour ahead so that might be a part of the desync

silk tartan
#

by the way, has anyone got a good solo config for advancedcompany

marsh ruin
#

When I create a game, my perk xp doesn't transfer.

#

It just sets me at 500xp

#

Even though I am using a default profile when hosting.

nova ingot
#

Is save progress ticked or no

ember prawn
#

helmet lamp blinkerino

marsh ruin
#

Save progress is set to true

nova ingot
#

@modern temple turns out I might be half right

#

Being converted saves your cosmetics and suit, which makes sense

#

Spawned masked do not

#

That may be intentional though

modern temple
#

OH!! Ok. See that was what was throwing me. I knew if I got attacked I would have a mask. But I was thinkin of the ones that spawn on the map. As more company randomly had them copy a player. That was what I was hoping for... as that caused CHAOS in my gaming group of friends "every single time" we ran into one. As they suddenly started playing AmongUs when we ran into someone to make them prove they were a real person, lol.

upper owl
#

if you have masked overhaul, then the cosmetics won't show on them, author needs to update that mod, it's in his plans

#

if you don't have masked overhaul, they should have your cosmetics

modern temple
#

Which isnt good inside a dungeon, especially on the harder maps like Titan as night rolls in, lol.

nova ingot
upper owl
#

I know, that's why I said if you have masked overhaul, natural spawn masked won't show cosmetics, probably cause that mod takes over and it doesn't support AC just yet

nova ingot
#

Tested it with overhaul, natural spawning dont have suits or cosmetics

modern temple
#

I dont get why more people dont use Advanced company!?! As after using both. AC is FAR superior!

nova ingot
#

Only converted

upper owl
#

hm, they should have suits, just not the cosmetics

nova ingot
#

I meant without overhaul*

#

Mb

modern temple
#

Most use More company + lethal things for the utility belt not knowing that in AC you can have over 8 carry item slots via perks, and dedicated gear slots.

upper owl
#

oh fair enough, have you tried the latest version of AC, I think potato did more masked changes, depends how long ago you tried

nova ingot
#

Yes

marsh ruin
#

It is that AdvancedCompany isn't compatable with every mod, so people don't use it because of that.

upper owl
#

gotcha

marsh ruin
#

Or some people anyways.

modern temple
#

Ya, but it took veyr little change of my mod list to make it work in advanced company. an I have ...about 57 mods atm? last count.

marsh ruin
#

I still can't get my perk xp back.

alpine charm
#

thanks for using my mod !

gleaming junco
#

@solid pivot Did you happen to do something on your end regarding the instant landing speed from my mod we were talking about? Lol I am getting reports that it is working since my last update but I didn't touch the compatibility issue yet πŸ˜…

split mist
#

The only other stuff AC isn't compatible with are mods that do the exact same stuff, like BiggerLobby or whatnot

split mist
split mist
split mist
silk tartan
#

huntdown and moreitems shouldnt do anything if im not the host

nocturne jungle
#

Coming soon (probably in a few minutes)

split mist
#

Ooo, nice, animated workin now?

nocturne jungle
#

the animations were working already they're just part of the prefab

silk tartan
#

and the host was just using advanced company

#

huntdown doesnt do anything related to time

eternal ivy
#

Does anyone have issue where you can hear someone else's headset clicks even when you don't have a walkie/headset on you?

nocturne jungle
#

the main thing i had to do was port over to using the new cosmetics system (WackyCosmetics was a very old mod)

#

i added a single new hat too

split mist
#

Gotcha, asking cuz I know some animated cosmetic mods were brok

split mist
#

You're able to hear their headset clicks from ANYWHERE, or just nearby them? Cuz if it's just nearby them, that's normal walkie behavior iirc

split mist
silk tartan
#

no

eternal ivy
#

It's the clicks you hear when others are talking to you over a walkie.

silk tartan
#

he had default, and i had my time set to much longer

split mist
#

That's probably it then

silk tartan
#

does it not automatically sync with the host then?

split mist
#

The feature is experimental and was just added, so probably not

silk tartan
#

i see

split mist
#

will likely be synced up in the future but not atm haha

sonic lava
#

Our days are desynced. The host shows 3 days but all the clients show 4 days. It could be because of LethalExpansion, but that is also set to 3 days for everyone.

#

We've switched hosts and confirm that only host sees 3 days.

split mist
#

So even though it shows the wrong number of days, test and play and see if it functions as normal as you play, that may be a display bug with the time being set to before 8am

#

if I remember what I read earlier

#

assuming everyone has the same time settings in the AC settings

sonic lava
#

Yeah, we are going to see if we don't get launched after day 4 passes

#

We were also previously having time issues where host time was moving at the normal speed and the clients were moving at almost half the speed.

split mist
#

I know the mod has a feature that lets you extend the quota but that shouldn't be happening before anyone does anything

#

Make sure everyone has the same setting for that as well

sonic lava
#

Yeah, that's what I suspected could be happening but we disabled that for everyone as well

split mist
#

Also, are you using LECore?

sonic lava
#

yes LECore

#

no

#

i mean LE

plush fern
sonic lava
#

How do I replace to LECore and keep the moons?

split mist
#

I would add LECore for compatibility reasons. Just add LECore to the modpack, it'll automatically internally disable LE

sonic lava
#

When I disable LE, it disables the moons even though I have LECore now

#

Oohh

#

ok

nova ingot
split mist
#

LE modifies a ton of backend code by default that makes it just fundamentally incompatible with a lot of other mods, including LethalLevelLoader and other dungeon mods

#

LECore is a split fork that rips a lot of unnecessary code out and only loads moons

#

Making it much more compatible

sonic lava
#

So, LECore make LE only allow the modded moons while forcefully shutting down it's other functions?

split mist
#

Sort of

vagrant gull
split mist
#

Technically, LECore is an entirely separate mod that just disables LE

#

But LECore uses the same code as LE for loading the moons

silk tartan
split mist
#

oh yeah forgot about that

#

ty Naku

silk tartan
#

nikki are u a dev of this mod