#Coonie's Mod Pack: A curated collection of mods I use

1 messages · Page 1 of 1 (latest)

molten valley
#

https://github.com/GayCoonie/Coonies-Mod-Pack/

Maybe kinda a silly concept, but I think it makes some sense. It's as simple as it sounds, my own personal mod folder made into a mod pack. Credit goes to @thorn basin for me even concieving of a modpack, and for an example to use to understand what goes into putting one together. The aims of our packs are fairly different. The play style the mods I tend to download, and thus my modpack, support is similar to vanilla but with a lot more jokers, vouchers, and other content to play with.

The first release is currently provided/ I'm gonna try to find a way to not require me to clone the repo onto mt local machine and then make a zip of it in order to ptovide a release, but for now doing it that wy works fine.

GitHub

Contribute to GayCoonie/Coonies-Mod-Pack development by creating an account on GitHub.

molten valley
#

Here's all the mods included

thorn basin
#

I think we should talk about modpack issues here or in my thread

#

Don't bother other ppl

molten valley
#

makes sense

#

In regards ti non-submoodule mods:

I think the easiest way, after I figured out how to work with the gh command line utility and local files, is cloning the repo )no need to download the stuff in submodules), updating the non-submoduke mods, and pushing the changes back to the repo

I was and still mostly am doing everything in github codespaces, but that kind thing makes the most sense to do on your own machine imo

molten valley
#

I ended up just including your fork as a submodule for SDM_0's stuff

thorn basin
#

My method is, fork the repos and move lovely patches to the first layer, and submodule them

molten valley
#

The ones that are really irritating is when the repo doesn't contain the mod at all

#

Like Snow's mods and Crimson's tier 3

thorn basin
#

Probably should tell snow to fix their repo lol

molten valley
#

I think you mentioned it at some point. MAybe that was in your thread

bright spire
#

didnt snow discontinue their mod?

#

or is it back?

thorn basin
#

It's back

molten valley
#

they just updated it a few days ago, so eyah its back

thorn basin
#

It just updated recently

molten valley
#

and they've got a big new mod they're starting too

#

Also, B, lemme know when you've got your github repo back in a working state,=. I'll have to change my modpack to use the main branch instead of that old commit

bright spire
#

kk, im probably gonna update the repo now

molten valley
#

no worries regardless :3

bright spire
#

ok i updated it

molten valley
#

I feel like github actions could be a lot of help when it comes to releasing the pack , but it's all pretty over my head. Seems to require actual coding, which I've done very little of, and not since college

#

tbh as much as a pain as it is I I need to start doing things locally

#

I used like a quarter of my cfeww cpdes[aces tomw in like 3 days

thorn basin
#

I have no clue what those are, let alone how they work

molten valley
#

actions or codespaces?

thorn basin
#

Both

molten valley
#

Actions, I don't really know either

#

codespaces are VMs you can access through your browswe rhar already have your repo ready to go and git installed. They're fpr cpdomg I guess, but also really good for just using a bash terminal

#

they let you easily do commits through the command line and mess around with your submodules without ever leaving your browser

thorn basin
#

Neat, but they seem to be charged for money?

molten valley
#

after a certain point, yeah. And it looks like free doesn'tget you much

#

based on my experience

thorn basin
#

I think github desktop might be a better idea if you have PC ready

molten valley
#

might be, but I don't use Windows, and I don't think it's for linux

#

so comand line it is

thorn basin
#

Proton?

molten valley
#

I've learned a lot about git cli the last couple days, so it's not too hard

molten valley
# thorn basin Proton?

well, proton is for steam, but wine, which is the same thing for general applications /might/ work. I'll look into it at least

thorn basin
#

I'm very used to git commands now that I don't even use github desktop when I have my laptop at hand

molten valley
#

that's not promising

#

I think I'll just stick to cli. It'm pretty used to using cli applications when I need to, being a Linux user, and learning git hasn't been too bad so far

thorn basin
#

Welp

molten valley
#

it's mostly just
git pull
[edit what you need to]
git include .
git commit -m "[whatever]"
git push

#

and the submodule commands aren't bad either

thorn basin
#

Isn't it git add .

molten valley
#

my memory is shite

#

lol

thorn basin
#

You can use git commit -a -m "message" instead

#

And omit git add .

molten valley
#

yeah. sometimes

#

but sometimes it makes you use git add

#

idk why

thorn basin
#

No idea

#

git is nice but tricky to use at times

molten valley
#

nods

#

the trickiest thing for me so far was figuring out how to include a specific commit as a subodule

#

because BBBalatro was, until today, in a state where I needed to use an older commit

#

what I ended up doing is including the submodule as usual, cding into it, then using git switch --detach [commit hash]

thorn basin
#

I think it's cd to the submodule directory, and then do: git checkout <commit id or tag>

molten valley
#

that might work too

#

and I just learned the command for (one way) to update all your submodules is "git submodule update --recursive --remote"

#

there are probably other ways to do it too, but ths was on stack overflow and it worked

thorn basin
#

I use git submodule update --recursive --remote --merge

molten valley
#

what does the --merge flag do'?

thorn basin
molten valley
#

ah I see

#

well based on that, the way I already did it had the same results

#

and yes I know I have a very stupid working directory, lol

#

it just hmakes it easier to copy it right to my main mods folder after pulling it

thorn basin
#

as long as it is easier for you it doesn't matter

molten valley
#

I know the readme is still kinda a half-baked mess. If anyone wants to help with that or anything else, just submit a PR

molten valley
#

Dtill can't figure out why Dimserene's fork of SDM0_'s stuff isn't updating for my submodule though

thorn basin
#

Like I said, we should wait for SDM_0 to update the repo officially

#

Then we could just git submodule the 1.0.0 branch

molten valley
#

True, I just would like to know what I'm doing wrong I guess

#

It is pointles in this case, but it not working means I'm missing something

thorn basin
#

Let me take a gander then

#

Do this instead:
git submodule add -b smods_1.0.0 https://github.com/Dimserene/SDM0-s-Stuff

molten valley
#

oh I see, I didn't realize the branching was still there

thorn basin
#

Or cd to SDM0-s-Stuff directory and do git checkout smods_1.0.0

#

Wait that won't work 😕

thorn basin
molten valley
thorn basin
#

git hates merging things I am telling you

molten valley
#

thank you :3

thorn basin
#

The pack looks correct and is intuitive enough for ppl to install it

molten valley
#

Thank you

molten valley
#

Gievn the sort of mods that are included, what other mods, if any, do y'all reccomend that I play with,and thus be added to this pack?

thorn basin
#

does more fluff color card work fine in the pack?

molten valley
#

I... haven't tried them. I really never play with them. I skittles at least add to the readme that they probably don't work

molten valley
#

@thorn basin does deluxe tarots work normally on 1.0 an alongside other mods, or not? You have it in one of your packs it looks like, but Ithe thread for it is kinda nothing but problems atm

thorn basin
#

But in the what thread

#

Dx's thread?

molten valley
#

yeah

thorn basin
#

It should be, multiple bug fixes happened after I removed it from my pack

#

Also I put it in Extreme

molten valley
#

I may as well ownload it and try it out ten. I used to play with it for quite a wjile, so if it's working right again, may as well start using it again and add it to my own pack

molten valley
molten valley
#

Is anyone actually using my mod pack? I'd love to hear some feedback

#

Also, shutoff I include instructions for cloning it for people who'd rather do that than download the release zips?

bright spire
#

i use it when im bored

#

its pretty good

#

there are bufgs once in a while but thats a mod thing and not a modpack thing

molten valley
#

thank you :3 Feel free to report any bugs you run into regardless. I know my setup isn't 100% stable, but I like knowing what crashes are happening\

dawn cave
#

i don't think that's how spectrals are supposed to look like...

#

all vanilla planets and spectrals are like this btw

unkempt vessel
#

Seems like somehow the 2x sheet got used as the 1x sheet. What happens if you turn on pixel art smoothing in the settings?

dawn cave
#

huh, everything's normal now

unkempt vessel
#

I don't know which mod in the pack modifies the consumable sprites, but they didn't downsize the consumables altas for 1x.

molten valley
#

Are you playing using only the mods in the oack, and did you download it via the release? You're free to add other mods ofc, I'm just asking to make sure it's actually the pack

#

yeah, I just did a clean install from the latest release and turned off pixel art smoothing, net getting that issue

molten valley
#

Also i realized I looked at actual tarots not planets/spectrals. I'll look again in a bit

molten valley
#

Which... doesn't make sense, as I had it on before without issue

#

I ctually got the exact issue to happen, but this is even weirder

#

It seems like what matters is what the "pixel art smoothing" setting is when I tart the game. If I start it off, off is fine, but on is broken, but if I start it on, on is fine, but off is broken

#

This is a very weird bug, that I'm not even sure is directly related to any mod in my pack. None of them try to replace the default spritesheets for consumables it doesn't look like from going through their folders

thorn basin
#

It's because you changed the pixel smooth setting

#

After restart the game the problem is naturally fixed

#

I think you are supposed to restart the game when altering that setting anyway

molten valley
#

Hmm, makes sense, but weird not to be mentioned. So I guess not a bug at al, or maybe a base game bug

molten valley
#

I'm thinking of adding shenanigansmod to the pack. I was using it before but it was having since trouble with other mods. I think it's fixed now

molten valley
#

List of mods that will be added once they properly work again / work with 1.0:

  • Shenanigansmod
  • Reverie
  • Snoreville's Turbulent Jokers
  • Tetrapak
  • Risk of Jesters
  • DX Tarots
  • Othermod
#

Mods that will likely be added once they're released or have a bit more included content:

  • Familiar
  • Paperback
#

Anything that seems to my alley that is either not in the pack already or those lists? Lemme know

molten valley
strange yoke
#

game crash when trying to use platinum card in a flush

#

already been reported in dimserene's modpack discussion but still worth mentioning

#

forward this to whichever mod adds platinum cards, i dont know which one adds em'

#

oh, its called snow's holiday jokers

#

cant find it in the discussion search bar

distant prism
strange yoke
#

yeah i didnt have this problem with the other modpack

molten valley
strange yoke
#

next time a crash happens ill save a screenshot of my loadout then

strange yoke
#

im noticing not a single eternal joker has showed up on black stake and beyond?

#

im sorry to say i have no clue at all whats causing it

molten valley
#

Oh weird. I play in white stake ngl so I never noticed that

#

Also Jank Jonklers updated to 1.0, and I'll be updating the pick tonight. That might fix some things

molten valley
#

What do you think of the general feel/ playstyle of the included content?

molten valley
molten valley
strange yoke
#

75% done with just getting a feel for it, ill play a couple runs with the cool mod decks here and then try cooking something up

molten valley
#

Sounds good :3

#

The only mod deck I've used much so far myself is Sandbox Deck ngl

#

The extra joker slots are more then worth the +2 Antes to win

strange yoke
#

oh wont you look at that its finished

molten valley
#

Thank you very much fur your in depth feedback :3 I agree that actually square is game breaking, as much as I want to live it. I Isuzu just ignore it when it shows up because it makes everything else irrekevent

#

And color packs are just along for the ride from morefluff. I ignore them too

#

As for the flounders and mika's placeholders, I mostly don't mind them. It kinda gets to the point where the joker art manages to be just inconsistent enough overall for anything the blend in

#

And I'm glad that my play philosophy c9mes through. If adding cool stuff to the game without really changing much ekse

strange yoke
#

you are welcome, i cant help myself but go into detail about everything

thorn basin
#

I think the problem of my packs is that, I don't really play them myself, it's mainly because I have no luxury of having proper gaming devices everytime I want/need.
That is a very worrying thing to say for someone that's managing modpacks.
Most of the time, my modpacks are facing many bugs and crashes complaints, seldom positive feedbacks.
Also one of the baselines and guidance of my modpack building is, as long as they don't crash before players can even do anything, it is acceptable.
I guess my packs are better served and treated as developing tools, where you get all the testers playtesting if one's mods go along with others, while yours it's very much curated and well put together, aims for player themselves.

unkempt vessel
#

Will also point out that positive feedback is given a lot more rarely than negative feedback. Usually, when something is good, you go, oh, that's neat. I'll keep playing. If it's your favorite, or someone specifically asks for your opinion, you'll probably give your positive feedback then.

On the other hand, if you have a complaint, it's a lot more common for people to bring it to attention.

thorn basin
#

Yes I very much agree.

#

But that's the nature of human being, life even

strange yoke
#

yes i mentioned that too, it is very unfortunate

thorn basin
#

When something is wrong, everyone is going to point and scold on it
Otherwise we take it as granted when all is good and normal
And no one will think about how hard it is in the universe to have "normal" states

molten valley
molten valley
molten valley
molten valley
#

Still postponing updates for the moment, Bunco is back functional, but now Snow's Mods seems to be crashing. If y'all want me to do a release temporarily removing Snow's I will, should be fixed in the next day or so though

molten valley
#

Snow's is fixed, new release coming shortly

thorn basin
#

Bird Jokers is not crashing anymore ?

molten valley
molten valley
molten valley
molten valley
#

Officially added the GPL 3 license in the github repo for both this and DeFused, to better comply with said license for the purposes of Steamodded, Fusion Jokers, abs ask the other projects I'm redistributing, abd also because it was always my intention that, as anything based on Steanodded already is anyway, by default, that my projects be released under said license.

molten valley
molten valley
sterile harness
molten valley
#

Also lemme know what you think of this pack, y'all, if you've been using it

molten valley
molten valley
#

pushed a hotfix, same release

molten valley
molten valley
molten valley
brittle marten
#

thanks

molten valley
#

Sorry for the lack of updates lately. I've been distracted by other things. I should have another release out tonight, including some new mods too. At least Familiar

molten valley
molten valley
molten valley
molten valley
molten valley
near cove
#

I've found an interesting issue, cursed purse trying to debuff Luck of the Irish from KCVanilla queues up a ton of events

near cove
molten valley
#

Huh interesting. That's a ceres joker, right?

near cove
#

yes

molten valley
#

@grim perch any idea what might be causing that

grim perch
#

what does luck of the irish do?

molten valley
#

"Lucky Clubs are 4X more likely to succeed" though according to Alice it might be other modded jokers too

grim perch
#

hmm

#

ill have to have a look

#

pretty sure ive hooked it to update so that might be why 💀

dim ravine
#

Feel free to tag me into this if needed

#

Irish code is slightly more involved than one might expect so it could be on my end

grim perch
#

got a lot on my plate atm but ill try to get round to it soon

near cove
grim perch
#

i thought i made it not work on other cursed purses

#

hmm

#

the joker def needs some fixing lol

hollow edge
#

Man you've got good taste in mods 😎

molten valley
molten valley
hollow edge
molten valley
# molten valley
poll_question_text

Do you use this mod pack?

victor_answer_votes

4

total_votes

6

victor_answer_id

1

victor_answer_text

yes

victor_answer_emoji_id

1139524770208153650

victor_answer_emoji_name

balatroheart

grim perch
#

okay cursed purse shouldnt be adding a bunch of events now

#

but please let me know if it still is

#

also fixed a couple other bugs

molten valley
hollow edge
#

Hey Coonie! Can you update Balatro Joker's PLUS for your Mod Pack when you get some free time to update? I've added some new stuff, tho don't worry about it if you are busy!

molten valley
molten valley
#

No Snoresville's Turbulent Jokers yet, but hopefully soon

molten valley
# hollow edge Well that was fast

well updating is pretty much just running "submodule update --remote --merge --recursive" And then making a zip of the updated repo after commit & push

#

Initially I was doing 1 or two updates a day, but I got lazy, and mod development slowed down a bit anyway

hollow edge
molten valley
#

Thank you :3

molten valley
#

now just for Tetrapak and Reverie to get 1.0 support

molten valley
molten valley
thorn basin
#

Do you think I can include your modpack into my manager? I've been considering this for a long time but I don't want this to feel weird to you

molten valley
#

I don't have any issue with it, but it may run into some issues where the repo is sometimes in a broken state between releases

thorn basin
#

If you stick with the Mods.zip file name, I can make it target download and unzip them instead

#

*Eventually* I will make manager able to manage and create customized modpacks

molten valley
thorn basin
#

Almost there

molten valley
#

lmao

uncut pier
#

:3

thorn basin
#

Cool

#

Forgot to say pack is supproted by my manager

molten valley
#

Question for everyone. Are there any mods that y'all feel like I've passed over that would fit with the pack? Jimbo's pack is already under heavy consideration (once the crash someone pointed out is fixed) but besides that

molten valley
thorn basin
#

why do you have a 20240924q

#

tag

molten valley
molten valley
#

Just realized I somehow forgot to include Pampa joker pack in this and have been playing without it this whole time, lol. I always played with it before I made the pack but somehow missed it when adding mods to it

molten valley
molten valley
brittle marten
#

its normal gold stake is not anymore?

molten valley
brittle marten
#

its rare

#

ok its working now

molten valley
#

tbh I didn't even realize I had mods that added stakes

#

I only play on white, lol

brittle marten
#

i close and open the game and gold stake appears

molten valley
#

bizzarre

brittle marten
#

now its time for modded gold stake

#

(perishable rental blueprint time)

molten valley
#

New modpack release:
https://github.com/GayCoonie/Coonies-Mod-Pack/releases/tag/release-20241001a

  • Changes Pampa Joker Pack to the new port to steamodded 1.0
  • Adds LushMod through Steamodded 1.0 port

Known issues (also applies to the last couple versions):

  • Interaction between Betmma Mods and Mika's Mod makes lucky card mult always trigger
GitHub

Changes Pampa Joker Pack to the new port to steamodded 1.0
Adds LushMod through Steamodded 1.0 port

Known issues (also applies to the last couple versions):

Interaction between Betmma Mods and Mi...

molten valley
#

Just realized that the cheesyjokers here is outdated and missing a lot of jokers I'd forgotten it moved to itch before it stopped updates

#

Will fix soon

molten valley
tropic gorge
#

why game blue

molten valley
tropic gorge
#

banger thanks

molten valley
brittle marten
#

Coonie, you will add reverie to the mod pack?

molten valley
#

it;s been the plan from the beggining

thorn basin
#

Let me know if you managed to add it

#

Because I am giving up for now

#

Hold up

#

Debug plus works

molten valley
wary mesa
#

Aaaay ❤️

thorn basin
#

Do you have any other small mods like buffoonery in mind?

molten valley
molten valley
#

because lazy

thorn basin
#

Fair

#

You might want to write a script to automatically manage modpack archiving and GitHub releasing

#

Like my adventure script

molten valley
#

It's still a bt /wip but it's a start

molten valley
#

hotfix, replaced the zip

#

some fixes for ortalab

molten valley
thorn basin
#

Using your pack I am able to try the Pokemon mod

thorn basin
#

So mostly my modpack is missing on familiar and Mika, it looks like

molten valley
#

didn't know you didn't have familiar

thorn basin
#

It was in the pack, but got removed

#

But it doesn't have any updates since then unfortunately

molten valley
#

yeah idk why development kinda stopped

thorn basin
#

I still think pokemon is better to be played alone

#

At least not with lots of mods

molten valley
#

To each their own

brittle marten
thorn basin
#

Oh that's a tough one

#

I only know a couple, mostly their non-english name

brittle marten
#

French names?

thorn basin
#

My native language is Chinese

brittle marten
#

Mine lenguage are spanish but pokemom names dont change, are the same as english

thorn basin
#

Well I love the grumpy face of the purple gas balls

thorn basin
#

That's not gas

brittle marten
thorn basin
#

I guess koffing is not grumpy if you squint more

steel talon
#

maybe weezing for the grumpy

thorn basin
#

More goofy than grumpy

#

But I don't know many of them

thorn basin
#

Oh btw @molten valley the pack is fully playable on Winlator, and is pretty smooth

molten valley
#

Oh wow nice

#

I wonder what was giving me trouble before

thorn basin
#

I even added my vanilla plus pack onto it since I have some qol mods I cannot live without

molten valley
molten valley
thorn basin
#

Huh

molten valley
#

My container is probably set up all fucky. I'll try a new one later

#

I messed Werth the settings too much or something

thorn basin
#

Is it hard crash on game boot, or container run?

molten valley
#

On game boot

#

I get the smods loading bar

#

Then nothing

thorn basin
#

Then it's definitely something wrong on your end

thorn basin
#

Still nothing?

molten valley
thorn basin
#

Really have no idea

#

You are using latest right

molten valley
thorn basin
#

Your system looks heavily modified?

molten valley
#

It's just visual

#

Hex for Samsung devices

#

It's not rooted or anything

thorn basin
#

Maybe allocate more ram and cpu

molten valley
#

Where's that again?

thorn basin
#

Container 's ...

#

In the first and last page

molten valley
#

I only see video ram, (and cpu cores on the last page)

#

Also should I try setting different windows ver? I play with these settings a loy

thorn basin
molten valley
#

Fuckin bizzarw

#

Identical settings and still nothing

#

Maybe proton gives you a different balatro exe?

#

Or changes the folder somehow

#

Does anything here look off?

#

Exe is at the top scrolled under

thorn basin
#

Did you set up winedlloveride too

molten valley
#

The adding "version" to libraries? That's all it says to do

#

Oh wait.... do I have to launch sone other way than clicking the exe? Am I dumb

#

Because the actual winedlloverries is something I remember from my actual install on Linux as a steam launch argument

thorn basin
#

Try install both gecko and mono

brittle marten
#

The way i play modded on mobile is stream it from my pc

thorn basin
#

Yeah that works too

brittle marten
#

I think modded in android will be allowed

molten valley
brittle marten
#

I like the colors

molten valley
molten valley
brittle marten
molten valley
brittle marten
#

Banana

molten valley
#

Naner run

brittle marten
#

Eggxecute spawned

#

(The other one is a droll joker skin i made)

molten valley
#

Computer is out for the count atm, but I got git working on my phone

thorn basin
#

Yeah termux for the win

molten valley
brittle marten
#

Your trance theme have synergy with hatsune jimbo

molten valley
molten valley
thorn basin
#

Also how did you make your modpack load, Coonie

molten valley
#

Basically the game files you get from proton must be different so I had to be... creative

thorn basin
#

I don't remember I need to do that but glad you figured it out

molten valley
#

Basically despite already owning the game and it apparently working from a windows install, because my install was on Linux with proton, I tried obtaining the game files through 'other means' and it worked in winlator right away

brittle marten
#

I get this error when i play the os deck

#

Just start the run and crashed

molten valley
#

What mod is that from?

brittle marten
#

Im playing your mod pack, so i want ask is that happen to you too

molten valley
#

Might ne intentional? From that description

#

And yeah I'll try it

brittle marten
molten valley
#

Yeah it crashes for me too

#

@steel talon is if?

#

And this looks very possibly intentional, lol

brittle marten
#

So this is a M moment

molten valley
#

Lol, appears so

molten valley
steel talon
#

I believe it is. It's trying to set any played spades to an enhancement that doesn't exist. it was commented out in the pre-migrated code but I didn't realize it was because it was a prank deck

molten valley
#

Yeah either it's a prank deck or fir an unfinished feature

#

But like... the name / desc doesn't really fit if it's a real deck dude an enhancement they were gonna make

molten valley
#

would someone less lazy than me be willing to look through the Mods folder in https://github.com/GayCoonie/Coonies-Mod-Pack and update the readme appropriately? I wanna make a release but I've added like 10+ mods since I updatted the readme and I haven't slept today. I just keep putting it off

GitHub

Contribute to GayCoonie/Coonies-Mod-Pack development by creating an account on GitHub.

brittle marten
#

You need sleep coonie

molten valley
#

this shows everything that;s been added since I updated the readme, besides talisman, I forgot talisman

molten valley
wary mesa
wary mesa
steel talon
#

a pitiful 11 mods? I need to up my game

molten valley
brittle marten
#

you sleep right @molten valley?

molten valley
#

Yeah I did :3

molten valley
vital hazel
#

do you play with rebaloed? egg

molten valley
#

Not yet, but might add it soon. Idk the changes I'd actually like are petty minor and few and far between

molten valley
molten valley
brittle marten
molten valley
#

oh yeah I should do that

#

lemme see

molten valley
brittle marten
#

@molten valley there is new releases planned?

molten valley
#

I have it set up to do it on my phone, so I can probably do it within the next hour or so

brittle marten
#

You do the stuff on your phone? What happen with your server with 70TB?

#

*laptop

thorn basin
#

I'm like 67.415% on my phone too, with the rest being coding the manager on pc

molten valley
#

It's in the trailer where I sleep and I'm in the house watching TV

thorn basin
#

🤔

#

Sounds like a relaxing Sunday night

#

Or morning

molten valley
#

Night but morning for my sleep schedule, lol

brittle marten
#

Im confused

molten valley
#

Kinda slept like 15 hours last night (from like midnight to 3pm) because I'd been up for 2 days, so kinda ended up sleeping both night and day, lol

static flame
#

im impressed that these are all compatible

#

unless they just arent and this is a crash-fest

#

😭

glass vine
#

they're mostly compatible

molten valley
#

so yeah pretty compatible

static flame
#

thats sick i might try this later

#

is it like stupid broken or

molten valley
#

nah, it's not like cryptid level or anything, that's not my thing

#

reverie gives some potential for goofy stuff, as do some of the decks

#

and I mean the vanillia score limit

#

If I'm lucky I can get into scientific notation in like ante 9

static flame
#

i saw some of jens stuff but i didnt check for like almanac or anything so just wondered

molten valley
#

nah, just nopeus and loop

static flame
#

looks like a pretty good pack

molten valley
#

thank you :3

static flame
#

:D

static flame
#

which mod adds this? :o

molten valley
static flame
#

oh its preset?

molten valley
static flame
#

oh thats sick lol

molten valley
brittle marten
#

trying to launch the game

#

i only add handy mod

#

balatro process is like 2gb of ram

#

@molten valley

molten valley
#

Yeah sonethings causing an infinite loop

brittle marten
#

i will send the log

brittle marten
#

the log

#

5mb of size

molten valley
#

Yes lol

brittle marten
#

💀

molten valley
#

That's how I know eggs problem it's an infinite loop

brittle marten
#

betmma vouchers

#

i think is that

#

is not betmma voucher

brittle marten
#

a mod

molten valley
brittle marten
#

i think is fixed now

molten valley
#

That's good

#

That was very strange

brittle marten
#

added betmma mods again

#

and the txt size its 6mb

molten valley
#

@mint dock apparently your mod is stack overflowing when used with handy?

brittle marten
#

look the lines number coonie

molten valley
#

Yeah I saw lmfao

brittle marten
timid anchor
#

Recusrion from using copy_table on something you shouldn't

#

Or something like that

brittle marten
#

i remove handy and still crashing

molten valley
#

Huh. Maybe I shouldn't have pushed a release without testing

brittle marten
#

???????

#

RACOON

molten valley
#

Is it the same big crash?

molten valley
brittle marten
#

i will record the crash with obs

#

wait a sec

molten valley
#

Didn't think anything would break in a few hours of changes

#

Lol

brittle marten
#

wait discord dont display mkv

#

i need convert the file the mp4

molten valley
#

I watched it

#

Does this make the giant log?

brittle marten
#

only 24kb

#

now idk what can be

molten valley
#

Did you change anything?

brittle marten
#

betmma still in

#

but handy no

molten valley
brittle marten
#

Balatro process

molten valley
#

You did delete all the old mod folders before updating right?

brittle marten
#

i delete THE ENTIRE mod folder

#

and next i unzip the new version

molten valley
#

Yes that's the right way to do it

#

The weird thing is someone else was using this release too? Without this kinda issue

#

Maybe your game got corrupted?

brittle marten
brittle marten
#

unmodded work fine

#

@molten valley NOW YOUR MODPACK WORKS

#

I VERIFY the game on steam

#

and i unzipped the modpack again

#

and now there is no stack overflow

#

with betmma mods included

#

idk how balatro mods work

molten valley
molten valley
brittle marten
#

works

#

lol

#

the process is calm now

#

the game works fine

#

thanks

#

how much ram have balatro when you play @molten valley ?

molten valley
brittle marten
molten valley
#

Huh, I guess "[♥]" was fine after all

#

Lol

brittle marten
#

@molten valley you made this easter egg?

#

is on the last line of the log

molten valley
thorn basin
#

What happened

#

As in the crash part what causes it

molten valley
#

I think Yamper's game got messed up. It was fixed with reverifying

thorn basin
#

Actually I got a stack overflow last night too, it's when I am too impatient and try to click skip the title spiral

thorn basin
#

Exactly the same?

brittle marten
#

I got another crash the last night clicking the title spiral

#

so i not click it

#

i just wait until load the game

thorn basin
#

Yeah that magically fixed it

brittle marten
#

Welp

#

Happy ending

mint dock
molten valley
uncut pier
#

@molten valley May I make a suggestion for the Mod Pack?

uncut pier
# molten valley Ofc :3

Maybe have 2 different arrangements of ModPacks, like:
Mild: How it is right now, plenty packed with mods, but still balanced and realistic enough that it mostly feels like Balatro.
Wild: More crazy/memey mods, for those that just wanna try out crazy s@#$ without as much concern for balance.

molten valley
#

That's interesting but like... the pack as it is is just identical to my actual mods folder. It'd be hard to maintain a pack I wouldn't wanna play with

uncut pier
molten valley
#

Lmao

brittle marten
#

i think the mod pack is good rn

uncut pier
#

Fair enough, I may just have brainrot from being on Cryptid/Jen for so long. 🤣

#

So much so that whenever I type Cryptid, I end up making Crpytid first, and have to fit it.

molten valley
#

I'm really not that interested on that sorta experience personally. I don't even take the super broken jokers that I do have (Logistics and Actually Square)

uncut pier
molten valley
quartz wraith
static flame
#

for some reason skipping the menu intro crashes my game

#

xd

thorn basin
#

Yeah 🤪

molten valley
static flame
#

no idea which mod it is

#

its definitely a mod issue though i was slowly removing mods trying to find which mod added something and it stopped after a while

molten valley
#

I've been having general instability since the latest big steamodded update that I haven't been able to pin down

static flame
#

could just be that a lot of mods arent fully compat for the latest update

thorn basin
#

So I just put skip to all

molten valley
teal locust
#

i installed by copying all the mods into my folder and it crashed

#

im playing with the new 0.9.8 alpha installed with lovely

#

any fixes or stuff

glass vine
#

there's the old 0.9.8 and the new 1.0.0

teal locust
#

i changed my list of mods lsightly

#

i had dupe steamodded folder

honest drum
#

I recieved this error message after downloading the modpack (I didn't add any new mods)

glass vine
honest drum
#

ok

molten valley
#

https://github.com/GayCoonie/Coonies-Mod-Pack/releases/tag/release-20250105a

Heya everyone, guess who's back :3 Had to remove Reverie and DreadJokers for now due to incompat with steamodded updates

Curious what mods have come out in my absense that might be a good fit for the pack

GitHub

Finally back at it :3

Updated mods to most recent version
Removed 'circus' because it seems to not exist anymore
Temporarily removed Reverie and DreadJokers due to an smods compatibility i...

glass vine
#

Curious what mods have come out in my absense that might be a good fit for the pack
Some recent mods that seem popular:
Unstable (and unstableEx), Cosmos, BalatroPlus, balatro Drafting, jokebook, extra credit

thorn basin
molten valley
#

Can someone help with a list of mods on this pack that aren't compatible with new Calc so I know what all needs to be updated before I can truly update the pack? I kinda don't want to add to it until I can update to new Calc without losing mods. Though I may reconsider

thorn basin
#

You can take a look at my BetterCalc Pack.

molten valley
#

Nothing dies with a necromancer coonie around. Updates within days, weeks at worse

timid anchor
#

Necromancy…

#

If I wasn’t busy doing other creative stuff (playing minesweeper) I’d revive my own mods.

timid anchor
#

Anything that’s been update from late January or later should also be guaranteed safe.

molten valley
#

The massive rift that newcalc created still doesn't seem to be resolving. As a result, I think I may create a Coonie's Modpack Neo from scratch, with only mods currently developed and known to be working on latest smodded, with the hopes of eventually being able to reincoperate all the old mods

molten valley
#

Okay, so... I need help, y'all. I realized it'll take literally all day to manually go through this server and find all the mods that are up my alley that are active. The peeps who played my pack know my tastes as well as anyone, so what all is new or still around that'd be up my alley?

molten valley
glass vine
# molten valley Okay, so... I need help, y'all. I realized it'll take literally all day to manua...

Based on what was in the old modpack:

Stuff I think you'll probably like:

Stuff you (might or might not)? like:

molten valley
molten valley
bright needle
#

i was about to download the release 2

molten valley
#

ayy good timing then, lol

#

also just so you know, I include smodded, so don't accidentally have 2 compies

bright needle
#

gotcha

molten valley
#

just fixed the zip on the release, it accidentally included cardsauce

molten valley
molten valley
#

New release with 6+ added mods incoming. Putting it together on my tablet because I hate myself

molten valley
molten valley
molten valley
molten valley
molten valley
molten valley
#

unforunately had to remove pokermon

molten valley
#

awoo new release :3

barren oak
#

👀

#

Not sure how to download/apply this, I'm reading the instructions, but i dont know what the 'provided release' is. I see that you shouldnt download through the code button, at least. It also doesn't say how to put it into your balatro game

#

If someone could help me apply the modpack, would appreciate

glass vine
#

These are the provided releases

#

You'll see them in the sidebar. It's also all the links Coonie has sent in this thread before

barren oak
#

Oh! Those things on the side, i see. First time modding any steamgame lol

glass vine
#

No worries, balatro mods distribution is also a bit... special relative to most other steam games I believe

barren oak
#

It says I need "Lovely" installed first, not sure what that is

#

but just downloaded both zips in release 12

glass vine
#

And you only need 1 zip from the release, it'll be the Mods folder

barren oak
#

I got through step 1 and 2 fine, but I'm having trouble with 3, a mods folder doesn't seem to exist

#

@glass vine do i just make one, or am i missing something?

glass vine
barren oak
#

i'd make it in this folder? starting the game didnt seem to do it

#

assuming it's supposed to be in this folder

glass vine
#

No, not that folder. %appdata%/balatro - you can get there by typing it in the WIN+R window

barren oak
#

All mods moved in, TY

glass vine
#

everything working?

barren oak
#

i thought i could fix it myself

#

but this popup is appearing in every menu

#

making seeing certain things hard

#

cant scroll up or down

#

i tried restarting the game, but didnt fix

glass vine
#

haha

barren oak
#

it's pushing up stuff with no way to scroll up

glass vine
#

can you click the new run button that's 75% off-screen?

#

all the way on the top left?

barren oak
#

yes

#

i can click them just not see them

#

but

glass vine
#

then just starting a new run should prevent that big steamodded warning next time

barren oak
#

fair

#

i'll try

#

will send msg if persists or goes away

#

tried starting a run, crashed

#

oops

#

Restarted, error still there

tried to start a run, crashed

#

noticing a trend

#

no idea how i could have done something wrong, i was super careful

#

@glass vine if u dont have the answers np, i can always delete the downloaded mods and probably be fine

glass vine
#

hmm, lemme take a look

barren oak
#

if i can help in any way lmn

#

i know i downloaded right and followed your instructions exactly

#

and there's no other mods that could be interfering

glass vine
#

easiest approach right now might just be to disable mistrigris

#

you can do so in the mods tab by clicking on the checkmark next to the mod

barren oak
#

on it

glass vine
#

yeah

barren oak
#

disabling shortly

glass vine
#

second word on the second line of the crash screen

barren oak
#

@glass vine fixed the crash

#

gonna lose a run rq to check if that fixes the notif thing

#

aaaand crashed again

#

i got into a run, tabbed out, tabbed back in, crash

#

@glass vine

#

getting sad

#

if it's crashed twice that implies even if i disabled whichever mod caused it this time, this modpack is full of crashing things

glass vine
#

oh crashes will almost certainly be a thing with bigger packs like these

#

I'm not sure what this crash is though 🤔

barren oak
#

😭

#

just wanted to try balatro modded with as much content as i could

#

was told this was the pack

glass vine
#

interesting, got a match on someone who had the same crash

#

did you continue an old run?

barren oak
#

i dont think so?

#

admittedly idk i hadnt played balatro in a bit

#

i finished all of balatro when it came out, stopped, saw a short about modded balatro, came back

#

ok @glass vine you were right, it was from continuing a run

#

hoping that fixes it

#

got into my old run, pressed single lowest card until i died, everything seems fixed

#

one issue

glass vine
#

hmm, alright

barren oak
#

I press play, it gives me the decks

but when i pick a deck, i don't know how to start a run with it

#

new run just puts me back to blue deck

last run gives me the last run i played (blue deck)

glass vine
#

it's the other button in the bottom right corner 🙃

#

then choose a sleeve, a stake, and then you should be able to start a run

barren oak
#

Ahhh i see the issue

#

i have to select a sleeve and stake first

#

no idea how sleeves work, i'll go without

#

thx

glass vine
#

pretty cool mod if I say so myself, unbiased as I am (/s)

barren oak
#

Ahhh, the sleeves are deck effects

#

nice

barren oak
#

tfw stop for a bit, come back, get into a run, crash on first hand

#

this mod pack might just be unusable

barren oak
#

anybody know the mod that's causing this one btw? it triggers whenever i destroy a 6 with the six destroyer joker