#⚙・modding-general

1 messages · Page 1592 of 1

peak monolith
#

1 sec ima make a more viewable version

#

there

jaunty crest
#

Nvm its 3 3oks

unkempt current
#

Vanilla remade is such an useful tool

normal hollow
#

thank you

jaunty crest
long hare
#

oh god that gives me a challenge deck idea
literally just "High Card, Pair, Straight, and Flush do not score"

woven crag
#

The fuck else are you gonna play

#

Full house?

long hare
#

3oak is the closest you can get to pair spam now

woven crag
#

Challenge deck where you start with eternal baron and mime and blueprint and brainstorm

#

And only 4 joker slots

long hare
woven crag
#

No

#

Normal starting deck

#

Death in ante 2 challenge

long hare
#

yeah that's fair

#

also arcana packs are banned and only arcana packs

#

anti-judgement:
Creates a random Negative Joker if all Joker slots are full (WIll create nothing if not)

fair thistle
#

I hate typing words

mint summit
#

I just win now ggs

#

(For context)

fair thistle
#

girlll

long hare
fair thistle
#

ts NOT tuff 💔 🥀 🔏

long hare
#

petition to remove cake from cryptid 2

tribal musk
#

what does cake do again

mint summit
#

infinite rerolls

long hare
tribal musk
#

oh alr

fair thistle
#

cryptid was originally made as a "add anything the community" wants mod that got abused heavily

mint summit
#

Don't worry I still fucked it up because I probably just didn't mash hard enough

fair thistle
#

but after they closed off the completely open suggestions thing, they didn't really fix much up. they did just try and polish a turd, though

mint summit
#

don't have one

karmic compass
#

massage gun

mint summit
#

also not an item I own

long hare
north salmon
karmic compass
#

jackhammer

long hare
fair thistle
#

uh meow

frigid mica
#

just messing with smods

limber oak
#

ccd but joker

long hare
#

oh boy

#

im rich now

lean charm
#

thats cool

fair thistle
#

i had a joker loosely related to this, since entropy has a version of this joker, that, instead, counts based off the message count in a discord channel; filtering specifically for messages containing "🌞"

cloud willow
fickle cypress
#

am i hallucinating or does the HD balatro pack make shop packs appear

#

'blobby'

wide mulch
#

is there any way i can incorporate balatro error messages within joker forge desktop code editor? like so it can show the error like a proper code editor can

#

the only way i can think of doing it is running an instance of balatro in the background, auto injecting the joker forge mod, and then grabbing the error message from maybe a window view or something

#

ideally i wouldnt want to use a lib mod lol

wide mulch
#

why so, are they like the master when it comes to this stuff

#

oh he made debug plus

normal hollow
#

yes they got the balatro master certification

wide mulch
#

yeah looking at their projects they really are

#

hall of fame balatro modders

#

when is the tier list of balatro modders coming out

sleek granite
#

am i in tier 3

lean dune
#

Wilson is certified top tier

formal orchid
#

wilson has a wilson tier on the top of the list

exotic shadow
# wide mulch is there any way i can incorporate balatro error messages within joker forge des...

I know next to nothing about joker forge let alone its desktop app but I can apply some general advice that maybe you can apply to it.
Setting up the LSP will get you syntax errors, and also some of the simpler errors with functions (wrong name, wrong number of parameters, etc.) This bit from N walks you through configuring the LSP, assuming you can get it installed in your editor https://github.com/nh6574/VanillaRemade/wiki#3-set-up-the-lua-lsp
For anything more complex, it's not really possible to pre calculate it without running the game. There doesn't exist a tool to do this automatically (even if we did have it, it would be reallt slow because we can't really avoid loading the rest of the game without the risk of breaking mods). Frosts utils (https://codeberg.org/frostice482/balatro-utils) should help with loading times if that's your concern (I haven't tried it myself)
If your issue is reading the crash in a seperate window, you can see if you have some sort of terminal or comnand runner where you can run balatro. On linux/macos you should be able to run the run_lovely_*.sh on windows you should be able to run the exe with the --disable-console (don't have a windows machine to test) to get the logs in your editor.

#

If the code that is crashing is in the code of an object with a center (e.g. a joker, caclualte), you can use DebugPlus' watch center comamnd to be able to edit it with the game running and it will catch errors in your functions and prevent most crahses. To do so you'll need to take the definition from you main code (the table that is passed to SMODS.Joker or whatveer, and the related code it needs) then copy it to a new file (we're going to call this watched.lua), adding a return to the table (see the example here https://github.com/WilsontheWolf/DebugPlus/blob/master/examples/watch_joker.lua) You will have to get the full id (you can do so by hovering over the joker and running eval dp.hovered.config.center_key) and put it in the id field, and then you can run watch center Mods/youmod/watched.lua in the DebugPlus console and then it should alllow hot reoloading with error handling.I hope this helps

exotic shadow
#

oh wait I just realized you're the developer of jokerforge

#

lol the context of this changes quite a bit thrn

sweet forge
#

i have no idea how many people use typist and don't know how to find out

kind schooner
#

does anynyan know why

#

i wanna get my complectionist ++

river mango
#

lmfao enable achievements in the mod config section

kind schooner
#

oh oki tyy

tranquil vessel
tranquil vessel
# kind schooner what that
Balatro Wiki

Balatro has a profile system that allows for a player to play the game across multiple save files (or profiles). By default, all players start with a single profile, though they can create up to two other profiles if they wish to do so.
Each profile features a varying amount of progress, between items collected, decks/stakes won, and overall sta...

lost bolt
#

should this be able to appear without any enhanced cards in deck?

kind schooner
narrow warren
#

i have modded balatro on my steam deck and it gets some serious lag spikes, mostly when scoring. i have no major content mods, just QoL stuff (like Handy, Cartomancer, Main Menu Tweaks, etc.). is there a way to prevent these lag spikes that isn't just running unmodded?

tranquil vessel
exotic shadow
# wide mulch is there any way i can incorporate balatro error messages within joker forge des...

Ok so if you're trying to improve the experince of error handing with joker forge for your users it's a bit different. The other stuff does have some relevance, but theres some more you can do. As I said earlier, I know next to nothing about joker forge, but I imagin a lot of it is something is being used incorrectly (please let me know if this is not the case). In jokerforge, you have a bit of a privileged position in the fact you're basically a compiler. The best way to handle errors is to catch them before the lua code is run. I understand this isn't always possible (modding is a bit of a moving target), but the more you can catch from that the better the experince.
For editor integration, the abolity to get logs in the editor probably would help, hwoever, you could also inject some code that communitcates with the editor in some way (probably just like a socket over a cli argument or smth). You could then put some code in the error handler (please be careful when doing this) to be able to send error information over to aid in finding the right spot. It may also be worth implementing your own version of DebugPlus's watch command where you handle errors in the code gracefully and are able to send new code to reload (you'll have to do a bit of work to make your code hot reloadable).
Sorry I don't have more concrete info, but I would need to know mor of hte nature of the errors to really comment on solutions

tranquil vessel
exotic shadow
# sweet forge i have no idea how many people use typist and don't know how to find out

theres not really a great way. If you have releases with uploaded assets (you don't) you can see how many people download those, but it won't castch people cloning or using the download source buttons. GitHub has some metrics, that you can usually use as a gauge for people viisting (but it's mostly just new visitors not exisitng) (you should be able to access it here https://github.com/kasimeka/balatro-typist-mod/graphs/traffic [I can't see it]). Othereise searching in the discord for the mod and seeing what you can find for people talking about it or it showing up in crash logs (althoguh uploaded crahs logs aren't in the search)

exotic shadow
latent crescent
#

is last line required?

#

sanity check is important!

long hare
wide mulch
#

may have took a little nap

wide mulch
#

this is for a new version of joker forge that i am developing that is a desktop app and therefore able to interface with the game files itself, i am in the process of basically making it half text editor, half block based. this enables users to create an outline with blocks, then manually edit the code files how they please

north crater
#

is there a mod that makes it so that you can make the balatro background transparent and have your desktop show behind it ? like this i mean :

#

i feel like it could be fun

narrow warren
#

woah, what texture pack is that

#

that looks awesome

fair thistle
#

I think it's theirs

vast anchor
#

Dunno

long hare
#

nah its a green screen bg lol

fair thistle
#

I don't know what you're talking about this is obviously about the money being green

exotic shadow
fair thistle
#

red dog

wide mulch
#

but its looking good

#

its looking good, you can edit the code yourself and it saves automatically

#

and adding new rules does not overwrite the code you have just written, only when you delete the rules specific to that code

#

so you can much easily outline your idea in jokerforge, then edit it manually for any tweaks, and jokerforge can still handle it nicely

fair thistle
#

i would use jokerforge but honestly doing art and shit has left me with no motivation to code even if i'm not doing art for a couple weeks to prepare for getting a drawing tablet
gonna modify jokerforge to have a balatro style ui graphic 🔥

#

-# /j i really don't know what to do right now

wide mulch
#

im going to implement themes to jokerforge

#

so you can change all of the colours

fair thistle
#

yeah!!!!

wide mulch
#

then export it as a file

#

then import others themes and stuff

fair thistle
#

honestly if that gets implemented i might be using it

#

fonts, maybe even like slightly different button styles

wide mulch
fair thistle
#

fuck man make the blocks drag like balatro 🔥

wide mulch
#

stuff like button roundness and stuff would be sick

wide mulch
fair thistle
#

"I see Merry Andy roped you into this, too?"

#

"A fool's job is never done."

#

"Focus, J."

#

"The Plant's got the face cards again, and you know what that means"
"Yeah, trouble."
"Exactly, so watch your back."
"Okay Jimbo, let's Balatro." ("Alright!")
"screams"
"Alright!"

#

new jokerforge update if you watch an ad you can make 2 jokers

#

watch 5 ads and you get the fuckin flamethrower from that game that was like the newgen mobile game version of Interactive Buddy

#

i forget the name

hard patio
#

"Hey Parei.... You've not only got your funny up, but your cards down!" - Mark.

fair thistle
#

add JROK to jokerforge

#

weird al mode

wide mulch
#

if you generate bad code, you lose a life

#

(the catch is joker forge will always generate bad code)

hard patio
#

(opening JokerForge deleted 2 lives)

fair thistle
#

you just port the entirety of Red Ball 4 to Jokerforge

sleek granite
#

i wonder what the high priestess would do if it was in balatro

dry dagger
#

ok lol i made a suggestion for a thing i want in a mod because why not and someone told me why have that in the game when you can do x challenge and just not be bad. like what? first time ive ever made a suggesiton and be critisized for it

frigid mica
#

You can use in_pool to spawn a card?

digital glade
#

down deck (all jokers face down in shop before purchase) from aikoyori's shenanigans has finally made this game interesting again for me, actually engages my brain

#

like I'm even playing with black sleeve so I get 7 joker slots (down deck adds one), and I haven't been able to win a run in 2 hours

normal hollow
frigid mica
normal hollow
#

if you want the card to be created when the condition is met that's a bit harder

#

if you want the card to be able to appear in the shop that's easy and it's what vanilla does

shrewd ruin
#

How's my final hand on the Antimatter Deck, Green Stake?

#

(and no, the lag is not OBS, it's Balatro itself)

tranquil vessel
wide mulch
west oracle
#

Just made two new decks and wanted some feedback again
Is this chip to mult ratio good? I had bonus deck on +5 chips before but it felt significantly weaker then mult deck did so I bumped it up to 10 but it still feels eh
Or is bonus fine and mult is too strong? if so I can probably just up the chips needed for mult maybe egg

frigid mica
#

How do you use take ownership again

forest knoll
woven orchid
#

firsttry you should probably start looking at documentation before asking people considering most of the time documentation or vanillaremade answers it

frigid mica
#

i need to download this whole document

frigid furnace
frigid mica
#

fuck neurotypical disabilities man

#

i feel incompetent as a modder.

#

ok how do you download ts

frigid furnace
normal hollow
#

i want to make both the smods and vremade wikis easier to navigate but github is kinda ass

wide mulch
#

is there a market for balatromoddingwiki.com where it just hosts the github markdown files with much better styling

#

and can have all of the different wikis all in one place

#

and it can get the markdown files dynamically so changes made on the github files will still be reflected

woven orchid
#

i think there isn't no market for it

wide mulch
#

someone get on that

#

it could be done in a day or two realistically

frigid furnace
#

a centralized site for documentation though, unlikely to happen

#

i think at least

fair thistle
#

I can't wait for starspace V1 to release so I can finally start thinking about making a wiki :3

#

Sadly the purging did leave us with like 0 jokers to our name

frigid furnace
#

as in, people are fine with putting their documentation on their own works instead of a centralized site

fair thistle
#

Most of the jokers RN are planned to be revamped entirely

normal hollow
#

i can't wait for joyousspring 1.0 to release so i have to go through the pain of adding 250 jokers to the page again

rain orbit
frigid furnace
sleek granite
#

what would tarot cards do in balatro wrong answers only

normal hollow
#

they have different effects based on a coin flip

frigid furnace
#

bring me happiness

#

or smth idk

sleek granite
river mango
onyx nest
sleek granite
river mango
#

im scared

#

lmfao how long is the list of future content you have planned lmfao

sleek granite
#

empty i dont plan

#

i only have High Priestess, Empress, Justice, and Strength unimplemented from this set though lol
then its time for me to poorly draw the tarot cards for the funnies

river mango
#

oh interesting

normal hollow
onyx nest
#

i havent actually played the game much yet in general

#

ive seen another guy i know whos also into yugioh play it though

normal hollow
#

yay

sleek granite
#

10 of them are enhancers, 1 pure econ effect, 1 destruction effect, 2 that make tags, 1 pure class card generator, the magician, one that combines 2 cards, then wheel of fortune

fair thistle
#

imagine a mod where I shittily draw all of the jokers and give like one generic word to describe their nmae

#

fuckin

#

"queen" "king" "idiot"

#

"wheel"

onyx nest
#

as in, yugioh deck/archetype

normal hollow
#

witchcrafters is my favorite to play probably, it requires just enough thinking to be fun but it's not complicated combos

onyx nest
#

gotchya

#

the guy i was watching kept playing dragonmaid

fair thistle
#

Fuckin

#

old

#

golden

#

mail

onyx nest
normal hollow
#

dragonmaid is also easy but i made it kinda boring because it was the first one i made haha

fair thistle
#

what if I larped as Google translate

#

Fuckin

#

+4 Mult

north crater
#

google translarp

fair thistle
#

to four mult and it's just =4 mult

onyx nest
#

was nice seeing my favorite card game in balala

fair thistle
#

x1.5 mult on rand suit and instead it's just
Suits give x1.5 Mult, so a card that has any suit gives the X1.5

onyx nest
#

i need to actually start playing balatro

onyx nest
#

sometimes it works well and sometimes it... doesnt

fair thistle
#

I love that dumass wreck it ralph durr medal gif

fair thistle
onyx nest
#

+4 mult? just put "four" in red text

#

what does it actually do? who knows

fair thistle
#

"Suit give x1.5" which just makes non suitless cards give x1.5 mult

fair thistle
#

michel becomes
+15 mult 1/6 die and what it does is multiply the mult by 5/6 every blind defeat

onyx nest
#

or you go in debt

fair thistle
#

The simplified descriptions are in a big blocky silly font like fuckin baba is you

onyx nest
#

"baba is balala" mod

#

every joker is written in baba is you style

fair thistle
#

And it's that one fuckin planetary travel level that had to get cheese proofed like fuckin 6 times or whatever

onyx nest
#

you could also make a joker that references that one turing complete custom level

#

stayed up way too late looking at balatro and smods source code

#

its already past 5am now

#

prime time to go to bed

blissful stag
#

this titlescreen looks like if you mixed an entire tray of poster pain together

#

this is extremely annoying

sleek granite
#

unlimited options but no options

low summit
#

Are there any mods that add only decks?

dusty token
#

ffi gc is so weird what hte hell

#

ffi.gc(m.PM_c, m.destroy) is somehow different than ffi.gc(m.PM_c, Moveable.destroy) even though its the same function???

#

one causes segfault, the other doesnt??

woven orchid
#

segfault in my balatro

dusty token
#

nvm its still segfaulting, what 😭

toxic cloud
dusty token
#

well

hard plank
toxic cloud
#

while TMD adds fun decks to play, SKHD adds decks that feel more like challenges

low summit
#

ty

manic summit
#

Make the mistake of en_us and not en-us eybluetoothless

river mango
#

what if en=us

limber oak
woven crag
#

en-us = 0

lean dune
#

en/us = 1

river mango
#

Birb

lean dune
#

ven/us = v

wanton rapids
#

jame

formal orchid
#

play my mod

lean dune
#

play revoyori's printnanigans

manic summit
#

Jeans soon

lean dune
#

jeans alchemy

manic summit
#

I wanna have 1 page of jokers before release

distant badge
#

Opalstuff

jaunty crest
#

Pitiful score

toxic cloud
#

what caused Big Blind to lose 2 score bruh

jaunty crest
#

Why do j keep scoring so low

toxic cloud
#

evaluate e430900#102##8

#

prove that it is smaller than a billion

wanton rapids
#

its like at least two

hard plank
rain orbit
waxen furnace
#

Baron Synergy

kind schooner
waxen furnace
#

Well if you're having cryptid loaded then you need to edit the M1 profile

#

Because that's the profile you have open when it's on

kind schooner
#

i dont play cryptid

waxen furnace
#

Then it's one of the numbers

kind schooner
waxen furnace
#

So that's the second profile

kind schooner
#

so the folder 2's profile?

#

i save just the profile or all 3?

fair thistle
#

meow

waxen furnace
peak monolith
#

apparently hot potato has image splashes

kind schooner
toxic cloud
#

you can cheat with DebugPlus anyway
while in your active profile with "unlock all" enabled, type eval G.PROFILES[G.SETTINGS.profile].all_unlocked = nil in the console

kind schooner
#

but its not giving me the achievement now

toxic cloud
#

are you expecting the achievement right after removing it

#

just win another run

kind schooner
#

yeah i won a run and i got it

#

tyyy

rain orbit
kind schooner
rain orbit
#

It is bizarrtrorekoj

silent thistle
rain orbit
#

Just got rear ended drool

somber solar
sleek granite
#

it means number too big stop playing

somber solar
#

no but actually

#

im curious

forest knoll
frigid furnace
forest knoll
#

very cool

frigid furnace
#

(which was reviewed and iterated by someone who's well-versed in googology, jamx02)

#

actually sobbing rn. i have to work with both lua and js on the wiki and im beginning to bleed syntax between the two 😭

sleek granite
toxic cloud
#

at least js and lua share a lot of principles

#

one of which that I like is lenient type

frigid furnace
honest zephyr
frigid furnace
silk sphinx
#

hey guys

#

i have this idea for a card enhancement that works like gold cards in that it triggers at the end of a round

#

what if there was an enhancement that gives xMult at the end of the round for the next round?

frigid furnace
#

what receives the enhancement's xmult?

silk sphinx
#

not really sure

#

maybe it would create a negative consumable that destroys itself in the next round and gives xMult when held?

west hill
#

You can use mod calculate to do this

silk sphinx
#

eh the method of doing this doesnt really matter

#

i just do ideas

#

anyway

sleek granite
#

oh so you dont do anything

half harness
#

longshot, anyone have a random balatro joker sprite i can use that they dont care about

silk sphinx
#

Sword - Tarot Card
Enhances up to 2 selected cards into Iron Cards.

Iron Card - Card enhancement
Iron Cards create Negative consumables at the end of the round. These consumables give x0.25 Mult when held and self destruct at the end of round.

silk sphinx
#

i'm not good at programming so i don't do mods

#

but other people are welcome to use my ideas

forest knoll
#

you're not good at programming yet

#

lua is a very beginner-friendly language, and balatro modding has a lot of good resources to work with

#

no one starts out being good at anything

#

but you can learn

silk sphinx
#

i just do ideas for fun

toxic cloud
silk sphinx
#

Alchemist
1 in 4 chance to create $5 when a playing card is modified.

half harness
toxic cloud
#

ah, so a random joker sprite for video editing instead of a specific modded joker

half harness
#

nah nah, i am coding a joker and need a jokerart instead of just placeholder

toxic cloud
#

darn

#

🤝

#

Sagatro is a huge mod, but most of the artwork isn't mine to begin with

half harness
#

its aight, imma just do some awful drawing on my own, just wanted to see if anyone had something before i start

silk sphinx
#

i think i have one

#

you can use this

toxic cloud
#

I feel it
when code progress surpasses artwork: placeholder

half harness
silk sphinx
#

my job here literally is to supply ideas

half harness
#

thanks! Means a lot!

toxic cloud
#

I completely forgor you have some experience with coding

#

man, it embarasses me for that dumb execution back then

#

you know, SauKhongHuDecks, where a deck drops a huge chunk of ante every round

half harness
#

you mean those decks ?

sleek granite
half harness
#

i mean look its my 3rd best video so i thank you for it

toxic cloud
#

you nailed it with a catchy thumbnail tho

#

"reversed reality"

half harness
#

clickbait at it finest

silk sphinx
half harness
#

Will do, had that in mind anyways

toxic cloud
#

btw, we're still coming up with a storyline idea whose mechanics are similar, if not way more complicated, to 20k Miles Under The Sea
here's a real leak

half harness
#

is that portal

#

xdd

toxic cloud
#

nah

#

instead of under the sea

#

we're going to space

#

the entire idea behind is so, SO complicated that

#

it may become its own game

half harness
#

i am going to revisit, but have some of my own ideas before i do that, i loved the story mode idea

toxic cloud
#

unlike previous storylines, this one needs proper testing since the complexity requires it

#

I'm planning to set up a server for Sagatro and invite people who are interested in testing (and leaks)

sleek granite
#

how do yall have so many jokers

jaunty crest
#

Who the fuck is gene

unkempt current
#

What are those chips

wanton rapids
sleek granite
#

my jokers are slop play my mod

soft coral
#

hi guys i'm here to share this mod idea i had it's basically balatro but instead of poker it's uno and i call the idea "balatruno"

frigid mica
#

When I return to developing my mod, you guys think it’s possible to make a joker use death’s ability through the click of a button?

#

Grim - Rare - Gains +1 Use each round, upon use, turns the left card into the right card.

normal hollow
#

yeah

#

the hardest part is adding use buttons to jokers but there are many examples

frigid mica
#

Death Joker

woven crag
#

if you use spectrallib you dont need to do anything

#

#shill

frigid mica
half harness
sleek granite
#

why use spectrallib thats more code to have to fight with

sleek granite
#

amm petting context is the most normal way to have a usable joker /j

unkempt current
#

What if there was a joker that literally acts like a consumable

#

So it destroys itself when used

toxic cloud
#

very easy actually

#

no extra button needed

#

you just need to make sure your joker tricks the game into thinking it's a consumable, that's it

half harness
sleek granite
toxic cloud
#

yea, that too

#

I have one btw

sleek granite
#

5 strengths stapled together 🗣️

wanton rapids
#

what if there were jokers with like 4 use buttons

forest knoll
#

planeswalker morefluff...

sleek granite
#

one day ill do crossmod again but my mod sucks so why

normal hollow
sleek granite
#

what if you could pet the jokers

soft coral
#

also uh someone should make a jonkler joker

#

Effect description is "Why so serious?"

normal hollow
#

<@&1133519078540185692>

#

not a very smart fella

toxic cloud
#

anyway, here's a joker as a consumable

river mango
#

I’ve asked too many times but I’m gonna keep asking as we will need a team of people for this project, does anyone want to assist us in creating a mod for murphys subathon as a dono incentive meaning everyone who donates gets to add to the mod itself

woven crag
#

i would love to help but i do need to know if ill have time when it happens

delicate sparrow
#

is there a more recent video for how to download lovely and steamodded? most of the videos i have found are around 2 years old and from what ive seen in the process of trying to follow them some of the files have changed

limpid lake
delicate sparrow
#

in most casses though people who code/program "arbitrary" items are the ones who flesh out the mods thoughhh

river mango
#

Well the subathon isn’t until June-July

#

Anyone who wants to help send me a dm so I can invite you to the server

woven crag
delicate sparrow
#

thank youuuuu

#

im just not very smart so most of the time i need visual help with these kinds of things lol\

woven crag
#

ah i understand

delicate sparrow
#

ive been doing what i can to learn more about computers but the software side of things is just over my head, i take apart, clean and reasemble computers for fun though so hardware is my jammmmm

river mango
delicate sparrow
#

who?

river mango
#

Anyone who wants to help

delicate sparrow
#

i mean im not the smartest but im willing to lean, always thought coding would be fun but everything i see seems so complicated

river mango
#

Minty said they’d be interested so that’s why I replied to them haha

#

Do we have any other takers?

lean dune
#

hm sure, sounds interesting

river mango
#

I shall send a dm to ya

delicate sparrow
#

sure, ill bite though i dont exactly know what im getting into

river mango
river mango
#

Oh?

#

May I send a dm?

fair thistle
#

meow

river mango
#

Hi Astro btw

woven crag
#

astr o

woven crag
# river mango ^

-# without a ping this has about the same effect for getting attention as just not replying

#

well nvm i stand corrected

river mango
#

Lmfao i try not to reply ping

fair thistle
river mango
#

Lmfao well if anyone else replies to my message from earlier please reply ping me like 100 times

sleek granite
#

how many enhancements is too many enhancements asking for a friend

long hare
#

also this doesnt look centered

fair thistle
#

Enhancement 😋

#

I love wacky jokers but sometimes I need to tell myself that more

#

That and long wordy effect ≠ wacky

long hare
fair thistle
long hare
#

ah fair

fair thistle
#

you can make a wacky long effect but it's not really a factor in the wackiness, imo
what I feel is a "wacky effect" or a fun effect is one that feels nice to read for its rarity and doesn't try and rehash itself a lot

#

basically subverting expectations but not feeling overwhelming to the player

#

like having a custom animation/sfx on a joker for let's say - a blind disable. that's pretty silly

#

having a long joker effect with effects that don't feel very tied in with each other? Not so wacky as it is just

long hare
#

take os.joker from smallpox
its long, and wacky

fair thistle
#

Weird, to me

fair thistle
long hare
#

ah

sleek granite
#

is this wacky

fair thistle
#

I mean yeah it is

#

I need more effects that are like
"X2 Mult, does some wack ass shit"

long hare
sleek granite
#

there is also +score in thac so it's not impossible for it to be useful

fair thistle
# sleek granite is this wacky

Of course this is me throwing out words that probably don't mean anything but when I talk fun effects, that man's for me, it usually means that the joker ties into itself and its own concept really well

forest knoll
fair thistle
#

I think I typo'd "that man's for me" but I honestly don't know what I wanted to say

sleek granite
#

meanwhile thac also has a lot of Many Words Thing

long hare
#

also is this too much scaling

fair thistle
#

Okay I think I know what I wanted to say again

forest knoll
fair thistle
#

what i MEANT to say is; i don't really like effects where they try to make the effect more fun by just adding another unrelated/loose effect in MY mod

#

think like a joker that gives chips one way and then mult another seperate way

sleek granite
#

it should give ^^^3 score

sleek granite
#

aiko catching strays out here

fair thistle
#

there

#

is that better

long hare
#

not to hate on aikoshen but it does not conform to many people's standards

fair thistle
#

i have chronic nocommonitis i have no commons

long hare
sleek granite
fair thistle
#

i get that i tried the shuffled sticker myself (shuffled to the bottom of the deck) but they dont really

#

come off the tongue very well

fair thistle
#

looping the rooms is fine

#

galileo too

hard plank
#

can't provide support on unsupported platform

forest knoll
finite basin
#

i remember adding this in april fools

long hare
#

you've been sent to the 2 of hearts realm

#

enjoy your stay

fair thistle
#

infimty

finite basin
#

this is what it actually did

#

should i keep it yall

full lagoon
#

Someone make a spookys jumpscare mansion card thing

#

Please

#

Q- spooky

sleek granite
#

play my mod it's vanilla+

full lagoon
granite forum
#

besides xchips

finite basin
#

mightt play it sometime

granite forum
#

this is still just not a great enhancement
it is good but with no other effect this seems like just an earlier game glass card

forest knoll
#

xchips on scoring like this is more interesting than xmult on scoring because you have to put it at the end for optimal scoring
anyway at the very least i think it shouldn't be called "xchips card"

sleek granite
#

you're right

#

xbonus is much better

fair thistle
#

bonus bonus card

river mango
#

I have returned

sleek granite
river mango
#

With food

tardy sigil
finite basin
#

or extra bonus card?

long hare
forest knoll
#

not unless you have other sources of +mult from the cards themselves, which isn't always the case
you always have to move xchips cards for optimal scoring because scored cards always give +chips

#

unless you have like artbox stained cards or something

fair thistle
#

i love xchips and xmult

tardy sigil
#

5 chips, 4 mult

#

5 X2 Chips x 4

#

10 x 4 = 40

#

5 x 4 X2 Mult

#

5 x 8 = 40

woven crag
#

Not if you add chips after

#

Which is the point being made

toxic arrow
#

guys can only specific jokers work with the hot potato stuff

tardy sigil
woven crag
#

yeah

#

?

#

But playing cards give chips

#

And not mult

#

So on scoring xchips is worse

#

Which is again

#

The point being made

tardy sigil
#

its still just polychrome then

woven crag
#

slightly worse

#

unless you put it at the end that is

#

its just polychrome normally

tardy sigil
#

no cuz its still gonna give the standard x1.5 which is exactly what polychrome would do

#

...i think?

#

idk either way its not like its bad

forest knoll
#

it's actually better than polychrome on the same playing card if you have +mult jokers

lean dune
#

it's also usually better on plasma deck

sleek granite
#

i love how people still go feral over xchips never change moddingchat

fair thistle
#

eh

#

the main discourse about xchips is just people repeating the same sentiment

#

everything else is just 1 dude

sleek granite
next sluice
#

has anyone tried the balatro ap mod, I am using mac os and modding through balatro mod manager, i am having an issue where when i put the port in it says correctly, when i do the exact same thing on my windows pc it connects just fine

fervent current
#

1 round into cryptid naturally

woven crag
#

Cryptid is in a fine state they say

fair thistle
#

'naturally'

sleek granite
#

cryptid should strive to be like me

woven crag
#

Cryptid will be good

#

Trust

analog ridge
gusty mortar
#

any1 got some qol mods i should have?

normal hollow
#

galdur

manic summit
sleek granite
#

cryptid wont be good enough to make up for the crimes

lean dune
#

keyboard controller

forest knoll
#

handy is a must-have, galdur is a must-have if you have other mods with a lot of decks or stakes

analog ridge
#

@forest knoll is this the right channel?

forest knoll
#

no i told you the wrong channel on purpose 😭
yes it's the right channel

fair thistle
#

every mod is a quality of life if you consider having more content to be quality : - 3

#

im joking

#

every mod sucks i hate all of you

normal hollow
#

mine is quality of death

forest knoll
analog ridge
fair thistle
woven crag
#

????????

gusty mortar
# manic summit Frosts utils

also, to unlock all jokers and cards and all, what value should i put to collection? i bought the game again on steam and intend on getting all achievements but i dont really wanna grind all jokers again

sleek granite
#

my mod is quality of cardboard card

manic summit
analog ridge
#

idkb

lean dune
#

cryptid is quality of life because it allows you to score much higher

sleek granite
#

X2 Chips if played with less than $4

forest knoll
analog ridge
#

ill change it if its a promblem

lean dune
forest knoll
#

vagabuns

woven orchid
#

today i will be deleting valk redux and i will be releasing The Great Atlantic Garbage Patch instead

sleek granite
analog ridge
manic summit
hard plank
#

I'm tired

forest knoll
fair thistle
#

im gonna give all my jokers soul sprites and add tetration to everything

#

trust

sleek granite
#

i should make more emojiokers

gusty mortar
forest knoll
#

i'm completely scrapping stakes redux and just copying cryptid's stakes instead

gusty mortar
#

hell if i could id wanna copy my ps5 save even if i had to do it manually

#

like setting each thing

lean dune
#

for april fools next year, we are converting all overrides in smods to lovely patches

manic summit
woven orchid
gusty mortar
forest knoll
lean dune
#

actually the new smods is compiled and you have to run an exe injector to install it

fair thistle
#

completely covering the consumable slots

gusty mortar
manic summit
fair thistle
manic summit
river mango
#

No, CryEntVallptid

fair thistle
#

grrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr

river mango
#

scary

sleek granite
#

cant believe cryptid died on its way back to its home planet

neon wing
#

What r some good texture pack mods to look into for cool jokers

soft coral
#

i wanna make balatruno a reality

analog ridge
manic summit
fair thistle
#

because its their cat

normal hollow
#

it's the smods car

gusty mortar
#

also, any way to get the discover every tarot and discover a leg joker achievements

gusty mortar
#

also, does playing gold stake count all previous as completed?

exotic belfry
#

Modding chat
You are not ready for Wormhole tr

sleek granite
#

astra

sleek granite
#

you are not ready for thac

gusty mortar
manic summit
gusty mortar
#

theres 3

soft coral
#

and then ask for someone to code it mayb

#

i'm not experienced with devvings

exotic belfry
#

It's honestly not too hard to pick up, even with minimal coding experience

gusty mortar
exotic belfry
#

There are plenty of guide nowadays

soft coral
#

i've heard that lua is easy

exotic belfry
#

Having tried a slew of other languages, I can attest to that

soft coral
#

alas i'm getting balatoe on my pc in my birthday probably

exotic belfry
#

banger

soft coral
#

and i kinda wanna talk about my ideas for this modde to someone

#

that knows how to do mods

soft coral
#

and stuff

#

so if anyone's interested i can tell the shallow sea of ideas in my mind for the. :)

soft coral
long hare
soft coral
exotic belfry
#

I have noticed something...

#

fellow ace You AceBeepBoop

soft coral
#

oh yea i am

#

me not freaky

exotic belfry
soft coral
#

yay

#

also fellow adhesive disorder haver? probably anyway

#

i'm on the joker spectorm ...

gusty mortar
#

@manic summit sorry for bothering this is the last time i swear

soft coral
#

on the usefulness spectrum (superposition to blueprint) where are y'all

exotic belfry
#

undiagnosed but I digress

soft coral
#

i'm probably on the spectrum more likely

sleek granite
#

adhesive disorder excpet i cant stick to anything

gusty mortar
long hare
exotic belfry
sleek granite
#

no thats the problem

exotic belfry
#

Oh I didn't read "can't" 😭

soft coral
exotic belfry
#

Seals are the most unserious animals on this green earth ong

soft coral
#

sunfish:

long hare
#

anyways i am also adhesive and artistic

soft coral
#

same.,...

exotic belfry
#

mola molas are just dumb I wouldn't say unserious tbh

soft coral
#

usw balatrons are all alike

sacred osprey
#

hey, trying to find some interesting deck skins. scoured the depths of nexus and the wiki, found a few options but nothing crazy that grabbed my attention. any suggestions for skins, preferably non-IP at this point?

long hare
kind schooner
#

whats the mod that allows you to play a specific seed that has certain conditions?

last valley
fair thistle
#

im rehashing my google sheets AGAIN because i forgot that i shouldnt let like 50 people go buck wild on one spreadsheet

toxic arrow
#

having a good start to this run

gusty mortar
#

why does my balatro keep lagging and crashing

toxic arrow
river mango
#

Lmfao I ban the plant when I'm not using mods

#

aside from banner i mean

jaunty crest
#

I love making my self suffer

river mango
#

there could be more stickers on those jokers

jaunty crest
river mango
#

Lmfao perishable 9 of clubs

#

average hotpot experience

gusty mortar
#

can anyone try the balatro x balatro skin pack and tell me if their game self combusts and suicides with that thing activated

#

cause it's either that or my beast of a PC can't handle a poker game

jaunty crest
#

The what pack?

#

Balatro selfcest

gusty mortar
#

this one

manic summit
gusty mortar
#

into smods or next to smods

gusty mortar
forest knoll
#

is there a crash log? if so, please post it

sleek granite
#

play my hand

gusty mortar
jaunty crest
forest knoll
gusty mortar
#

not really the game just crashed didn't give me any log or anything

#

just straight up closed and brought me to steam again

jaunty crest
river mango
#

nooooooooo

sleek granite
#

potato

exotic belfry
#

is it hot

river mango
#

autumn

#

maybe

winged prism
sleek granite
forest knoll
#

lolll

river mango
#

ooo

woven orchid
formal orchid
#

play my mod

frozen vector
#

We <3 taking the idea of a deck from another mod and shoving it into a voucher!

#

Also rewriting it to fit cleaner in your own code

karmic compass
frozen vector
tranquil inlet
#

Mods to remove joker limits

#

Or some sort or cheat mods

normal hollow
frozen jacinth
#

About to head into ante 24, still haven't found either boss re-roll voucher and found a nat negative turtle bean lol

#

This is...interestin

#

Like I'm almost certainly screwed but holy cow

sleek granite
#

what if playing cards were in balatro

frozen jacinth
#

WAIT IT HIT THE BEAN

hard plank
frozen jacinth
#

oh wait wrong spot

formal orchid
rain orbit
#

What would be a good way to word a played hand taking 2 hands instead of 1

#

Like -2 hands instead of -1 when playing

forest knoll
#

"costs an extra hand"

rain orbit
#

'Playing a hand costs an extra hand?'

forest knoll
#

ye

rain orbit
#

Actually is -2 hands when playing even a decent downside to leveling up the played hand

#

I mean the stakes it appears on are gonna be piss easy anyway but you know

sleek granite
#

im gonna stake

#

i must become a vanilla replacement mod

rain orbit
silk sphinx
#

Singularity
When a poker hand gains a level, 1 in 4 chance to level up a random poker hand.

frigid mica
#

Lucky Penny - Rare - On first hand, scored Lucky Cards gain a retrigger

north crater
#

hey y'all ! so atm the person i used to work with on my texture pack is very busy with irl stuff, and along with a few updates i'd wanna give the texture pack, there's also one or two mod ideas i'd like to work on, but i lack the programming expertise, so is anyone else willing to help me out perhaps ?

lost bolt
#

i'd have to hear more to know

north crater
lost bolt
#

Yeah

north crater
lost bolt
#

That's fine

karmic ginkgo
#

what mod made this a cat

winged prism
lost bolt
karmic ginkgo
frigid furnace
#

why would you change smods chat

winged prism
#

Why would you want to MURDER smods cat this is not okay are you evil

winged prism
#

Oh

frigid furnace
#

merci beaucoup wiktionary

winged prism
#

Chat is this you?

#

Is this you chat

north crater
karmic ginkgo
winged prism
#

What the FUCK is wrong with you

karmic ginkgo
shy quail
woven orchid
#

@lean dune are you gonna let this happen

dry dagger
#

i cant believe my game crashed when i had 1551 steel kings

lean dune
#

this is unacceptable

#

look this fella in the eyes and think about your actions

frigid furnace
#

idk why but he looks like he has a human arm

#

in that photo

lean dune
#

no it's clearly a cat arm

frigid furnace
#

well yeah but like it kinda looks like a human arm

#

oh it's 1 am

#

i should probably sleep

storm forum
frigid furnace
#

Worse, your work is being used for nefarious purposes

storm forum
#

Casting upon them.

main crane
#

hi there
are there any mods to get the achievements faster/easier ?

worn rain
main crane
#

is that a no

lean dune
#

it's a "why would you do that"

#

smods disables achievements by default but allows you to re-enable them

wanton rapids
#

if you want steam achievements there are other ways why would you use a mod

lean dune
#

you can easily get illegitimate achievements through other means, but it's not like that would earn you bragging rights or anything

compact loom
lost bolt
#

balatro multiplayer?

#

or are you talking about the numbers under the jokers

compact loom
#

the rares and uncommons only on

#

one*

compact loom
olive oar
#

the mod that lets them use only one rarity

lean dune
#

either custom-made or it's banner

lost bolt
olive oar
#

yeah

lost bolt
#

it's not banner cause then common jokers would appear as jimbo

olive oar
#

e

lost bolt
#

It's probably made for this video

blissful stag
full edge
river mango
#

what is the benefit of glue with modpacks?

#

nvm

sleek granite
#

omg hi ice

full edge
#

Hey Autumn

full edge
# river mango what is the benefit of glue with modpacks?

It's made to help with issues that stem from playing with a bunch of mods. So you can make the shop bigger while keeping the joker spawnrate identical to vanilla, helping you see more of the unique consumables without the number of consumables cramping the shop

sleek granite
#

i wonder how many people have played with my new consumables

river mango
#

crap i gotta reinstall now don't i

main crane
#

what mods would you recommend for quality of life (that dont disable achievements)?

sleek granite
river mango
#

lmfao i stg ima figure out a way to get pinged when you push updates

#

no deck sleeves for me tho 😭

lost bolt
#

i don't remember it being big

blissful stag
#

turns out a joker that creates any uncommon joker you want for every time you play an unlevelable hand is pretty overpowered

tardy sigil
blissful stag
#

yurp

tardy sigil
#

Yeah id assume being able to choose what joker you get is overpowered

#

Huge blunder on your part

blissful stag
#

i mean

#

it was a legendary joker anyways

tardy sigil
#

Make it legendary jokers instead for better balance

lost bolt
#

An IQ too high?

lost bolt
#

i cannot believe i used to play with like as many mods that didnt completely break the game as possible

winged prism
main crane
#

thanks

ember flicker
hard plank
#

hi tsu

ember flicker
blissful stag
#

Honestly I only have smallpox because of my lovely daughter

#

Hi

ember flicker
rain orbit
fair thistle
#

Meow

gusty mortar
#

am I the only one who's having issues with lovely

jaunty heath
#

Cryptid mod with the Card Sleeves mod is fire

peak monolith
primal lark
toxic cloud
#

its insane shop overhaul confuses anyone who haven't heard of it lmao

unkempt current
gusty mortar
#

anyone else having insane lag spikes?

west hill
gusty mortar
#

anywhere from 5 mins of playtime onwards

#

my game explodes

#

goes from 900+ fps all the way down to 1 and then crashes

#

and I don't get any crash report

#

just explodes

#

I don't even have any heavy mods, only thing I have is the balatro collab deck skin

fierce sapphire
#

Hello, I am new here. Has anyone ever made a dungeon crawler inside the game?

cloud willow
#

might do it after jame

fierce sapphire
cloud willow
#

I already got a bit of experience too

normal hollow
fierce sapphire
fierce sapphire
late sundial
#

Does anyone know if there are any TF2 themed mods for balatro?

cloud willow
fierce sapphire
late sundial
cloud willow
#

I dont have any touhou emojis ;-;

late sundial
#

so that means if i want i could make the TF2 balatro mod...

cloud willow
#

within the rules

late sundial
#

Ik, i just don't want to copy other ppl's theme and such

cloud willow
#

but people are bound to have repeat ideas

fierce sapphire
late sundial
#

Yeah but being original makes me happy

cloud willow
late sundial
#

Tbh if i would make a mod i got a lot to learn, art is going fine rn but coding might be a bit tricky.

cloud willow
late sundial
late sundial
#

i actually got the idea of making a TF2 mod cus i made a spy card for fun and now i want to make more

late sundial
fierce sapphire
cloud willow
late sundial
#

tbh working on the mod might take a while, primarily cus i am already working on another mod, mainly as artist.

cloud willow
fierce sapphire
late sundial
late sundial
late sundial
#

the hell-

cloud willow
#

:)

#

I like minigames

late sundial
#

fair enough.

#

what kind of minigame is it tho

cloud willow
#

first one has falling objects you need to collect

#

second is a rhythm game

late sundial
#

Ah alr alr

#

what art do u got for it

fierce sapphire
late sundial
#

i wanna see the art

cloud willow
cloud willow
cloud willow
#

I suck at art

late sundial
gusty mortar
late sundial
#

welp guess ur stuck with red rotating rectangle forever

cloud willow
#

ill sprite it eventually

#

I have such a backlog 😭

#

like 10 jokers and all the sprites for the falling objects minigame

late sundial
#

show me

#

i must see...

cloud willow
#

lemme load the mod

#

anything with that grey background is a placeholder

cloud willow
late sundial
#

It's peak

#

Also got a couple of joker cards specifically for the mod i mentioned earlier

fierce sapphire
lean dune
fierce sapphire
lean dune
#

obligatory cat pic

#

-# yes this is the smods cat

west hill
#

Hello smods cat how are you today

lean dune
#

hello smods fox I'm doing great and enjoying the absolutely amazing weather. how about you?

karmic compass
#

meow mrow mrrp mow mrow :3

golden wren
#

A mod is crashing my game because of an tag, anyone know if there's any way to edit equipped tags externalyl? I was having a really good run and I wouldn't wnat ot lose it

tranquil vessel
lean dune
toxic cloud
burnt burrow
#

Does anyone know a mod that gives control over/just more shop slots? I wanna run a few mods on top of each other but for the sake of being playable I need to have a few more shop slots to start, I remember doing it before but idk what it was

burnt burrow
#

It's glue for modpacks nevermind

karmic compass
fallow cypress
#

I have an idea for a joker but idk if it already exists as a mod

#

It's like a blueprint dagger, the card eats a random card and gains its properties

#

So like, if it eats a baron and an hanging chad it would act like both of those cards combined

#

And when it eats more cards it applies the same concept

lament sleet