#⚙・modding-general
1 messages · Page 133 of 1
👍
i'm so confused rn
there was a voucher that caused my game to implode when triggered
Eevee, you pick WAAAAAAAAAAAluigi
here we go
nice
It will took some time but not that difficult
Oof
how can i allow my windows defender to download the lovely injector file from github? it keeps blocking the download
damn, and this was a good run
It was for science
yep
anyways, any balanced deck is a good run tbh
it goes so hard lmao
ah yes... "Balanced"

ok, i will do
Error
Syntax error: game.lua:4: '=' expected near 'Game'
Traceback
[love "callbacks.lua"]:228: in function 'handler'
[C]: at 0x7ffe18de2fa0
[C]: in function 'require'
main.lua:18: in main chunk
[C]: in function 'require'
[C]: in function 'xpcall'
[C]: in function 'xpcall'
keep getting this error
verify game integrity
??????????????????????????
i love you
WHAT WAS THIS TIME?! I DON'T HAVE THE THING
thank you L Corp
REEEEEEEEEEEe
There is an LobCorp Mod?
(Crash log btw)
call me myst
:3c
Once the current mod pack doesn't implode on me
You may need to update betmma mods, did you use the most recent?
nope, cannot find the download link tho
last time i tride to update all
i just found some of them
- another one gave me
some mods about game Balatro. Use Steamodded (https://github.com/Steamopollys/Steamodded) to load them. - betmma/my_balatro_mods
Just use latest release
oh shit you're in moonframe
lol
if ankh hits an eternal it stays there
I'm fairly sure thats a bug with base game too
either the game is gonna crash, or I'm boutta see some NUMBERS
numbers
Perkeo
five build
oh, that one
so, many five of a kind or flush five?
5 queen build
flush five Q build?
you need to clean that deck a ittle ngl
yes
I get seconds per frame every time I score
I played a jack and got e22000
waluigi is pulling more weight than I expected
beeg number
not quite the infinity I got a few days ago on ee308
but that's some number
I have 1800 hanged man’s and they’re still coming…
What have I done…
I didn't THINK I had 2491 retriggers, but I guess I do....
I can't play the game, there's too many cards on screen
A
I should not have taken your advice
2492 hanged mans and regret fills my heart
tf happened-
Oh... the Perkeos
wait- WHAT
RETRIGGERIG 2490 times a hanged man
Uhh... kinda surprising the game itself wasnt deleted
the game fell tf apart
I just want to ask... how
canvas
bruh
many many canvas
^
I am doing a different game
It wouldn't even let me sell any hanged men
and even if it did I am not clicking the sell button 2400 times
i'm genuinely baffled
did you hear my voice?
^
imagine if all of them turned polychrome
my ears would bleed
no animation skip?
I have animation skip on
i mean, i dont' use it because im that one goy
it doesn't skip those
good heavens
that's... surely something
y'know, now i think that a mod that llows you to trigger/sell in batch could be useful here
oof
what about c/c+/c++ /j
:)
lmao
My windows defender keeps finding the version.dll file and marking it as an unsafe virus / hack / tool and attempts to remove it. I've tried marking it safe, and telling it to always allow, but often it just removes it anyways. As soon as it removes this file, I loose all acess to the mods and have to manually move it back to the /balatro folder. Am I missing something here? Is there any solution for this?
Taskbar > Search "Windows Security" > Virus & Threat Protection > Manage Settings > Turn Real-time protection off
then scroll down that page to "add or remove exclusions" > "add an exclusion" > navigate to the version.dll file and add it to the exclude list
make sure real-time is off first otherwise the exclusion doesn't add correctly for whatever reason
and once the exclusion is added you can turn real-time back on
thanks, did that. Now i'm checking the allowed threats section..
PUA:Win32/Puwaders.C!ml
normal?
yeah, it didn't show that before though lol let me loko into it
yea its not super descriptive
Pretty likely it’s just adware but keep it blocked nontheless
nothing to do with the version.dll file?
ah fair
pretty unlikely, does it give you a location or file name?
nope!
i simply just clicked don't allow and we'll see if it comes back. It might have been from the pathfinder wrath of the righteous mod I had that allowed me to edit characters
yeah that’s the more likely culprit
worth keeping disabled in any case
any mods that let me pick which joker (or jokers) I want to start with?
use this mod and you can control jokers, consumables, suits, etc
once it’s installed hold tab to activate debug mode, and click ‘3’ on any item in your collection to spawn it ingame
tbh i dont think debugplus is suitable for casual gameplay bcos its mostly meant for debugging so it'll be filling ur screen with info you as a player dont need to know
there was a "choose your first shop joker" mod but idk if its been updated from smods 0.9.8 so you'd be at mercy of smods' 1.0.0 backwards compat
accidentally created a monster
How much is it worth
sells for 6
12 cost
but because blueprint and brainstorm sell for 5
it triggers those
which both trigger the duo
Ok so, it's worth more than every joker in the game except legendaries then?
yeah lol
i wanna make a new rarity for it but theres no api for that apparently
you can some pretty funny things with it lol
e13 with a level 1 pair on plasma
Makes sense
im not really sure what i what pochita to do yet
You should give it a 1 in 3 chance to start the card each hand for 3 hands to give x3 mult then have it disapear
yes I am saying this because the little :3 and the fact we LOOSE POCHITS TOO EARKY
i cant kill him noo 😭
IF THE WRITERS CAN YOU CAN, also what do u use for ur jokers they look really good
maybe he can not die, but turn into another joker as a little pochita heart
i use paint.net for the artwork lol
Ooo wait that’s good
Im interested in how you coded the trigger joker effects on all or them
Give a random joker a pochita effect that’s essentially the polychrome or smth and gives a little heart
calculate = function(self, card, context)
local jokers = {
message = 'Bang!',
card = card,
}
local ret = false
for _, joker in pairs(G.jokers.cards) do
if joker ~= card and joker.sell_cost < card.sell_cost then
local joker_ret = Card.calculate_joker(joker, context)
if joker_ret then
ret = true
if joker_ret.chips then
jokers.chips = (jokers.chips or 0) + joker_ret.chips
end
if joker_ret.mult then
jokers.mult = (jokers.mult or 0) + joker_ret.mult
end
if joker_ret.x_mult then
jokers.x_mult = (jokers.x_mult or 1) * joker_ret.x_mult
end
if joker_ret.h_mult then
jokers.h_mult = (jokers.h_mult or 0) + joker_ret.h_mult
end
if joker_ret.repetitions then
jokers.repetitions = (jokers.repetitions or 0) + joker_ret.repetitions
end
if joker_ret.Xmult_mod then
jokers.Xmult_mod = (jokers.Xmult_mod or 1) * joker_ret.Xmult_mod
end
if joker_ret.mult_mod then
jokers.mult_mod = (jokers.mult_mod or 0) + joker_ret.mult_mod
end
if joker_ret.chip_mod then
jokers.chip_mod = (jokers.chip_mod or 0) + joker_ret.chip_mod
end
end
end
end
return (ret and jokers) or nil
end,```
thats such a good idea
not my finest work
thank you that’s my only purpose I don’t understand coding and I can’t draw so I have idead
Wow I really am a great dm
at least youre good at coming up w stuff
Haha if you have the fusion mod you could create chainsaw man with the fusions
Does that not take into the values in the extra config?
That would be sick
i might look into that
wdym
the joker_ret is a table with extra and message
well
Oh ok
It’s a little jank lol but it would be a super cool way to get cards
i was looking into how cryptid did retriggering jokers and theres so much stuff to it
so i settled with the slightly less nice looking just add all the values from the jokers and add them at once
Im surprised just calling "card.calculate_joker" isnt enough
But I guess for messages and all it can be annoying
getting a crash tryint to cash out here
yeah they return the messages to the eval play functions and then all the effects are calculated from there
i spent a while tryna figure out why i couldnt just called calculate joker lol
Is it possible it's because I already won the last ante (ante 12 I ean), but the ante to win got raised while I was already playing ante 13? I didn't get the win screen again
im gonna be honest looking at that screen is hurting my head
ive got no idea sorry
i dont play with enough mods
lol, no worries. I know my color tastes are... unique
man, my hurt heads
not even the colours, theres just more jokers than i can count lol
Would be nice if it was an until included in SMOD, lots of people have been wanting retrigger on joker or something, I thought MathIsFun would have added it by now
Dementia
I tried making a Balatro mod and had errors on 6 of the lines
there were 5 lines the ide was registering
genuinely couldn’t even make the first line of the page lol, lua isn’t for me anymore
lua has some weird quirks
maybe this isnt strange but i feel like not being able to print booleans is weird
why do i have to tostring it
i dont do that with numbers
I don’t understand :5
thoughts on how balanced this would be??
seems reasonable
I think it’s good, love the art too
i had it at 50% increase but thats way too much earlier on in the game
thanks
its my favourite out of the 3 ive done so far
Yeahh I’ve seen the third it’s a teensy bit busted
nahh
Seems like the kind of joker I would never use 🙃
i didnt intend for it to be too broken
i was gonna have it not be blueprint compatible
but i thought ah why not
5blue prints 1 x3 mult
I mean, surely you would just sell this after the big blind, right?
currently running an experiment
oh did you mean the fox devil joker?
oh its a fox
i just got what you said
you could yeah
sorry i thought you meant you wouldnt use the other one because its too strong
oh no, the fox
I think it'd be more useful the other way around
or it's only useful for 2 rounds
and then you should sell it
i see yeah
because if you can deal with the boss blind having 25% more requirement, the other part isn't helpful at all
i was thinking like kinda risky but you can chill during the first 2 rounds
yeah thats true
im gonna flip it then actually
thank you for the suggestion
I think flipping makes more sense 👍
for sure
ge an easier boss blind but you make the prior ones harder
makes way more sense
idk what i was thinking lol
test time
idk why that one queen is debuffed
i have not played it
I mean I can see why youd go with that, since the Fox Devil refs (not gonna spoil here)
||If you watched or readed it, the fox devil is used on more weaker devils, iirc theres one time it was use on the sword devil and she asked something along the line of "what did you put in my mouth" before getting destroyed by said devil||
| | without space
thanks
||yeah i feel like i remember it being used on a weak devil and getting upset about it, so i was thinking you use it on the weaker blinds, and then because you need a contract to use it the payoff is harder boss blind||
having it flipped makes more sense game wise tho i think
i really need to reread part 1 soon
what are the possible ways of destroying jokers?
i can only think of dagger
madness
oh yeah
i forgot about consumables completely
cool, i wanna make a joker do smth special when its destroyed but i dont want it to be literally impossible to destroy it
anyone have any idea about this?
what's on this line? functions/common_events.lua:2818:
uh... nothing? Looks like the file is only 2745 lines long
you need the lovely dump
unique taste for sure
nah, that color theme isn't my thing, it's the default for my text editor (at least with this gtk theme)
Now, this is more my speed
I am not sure how the eligible_bosses table works
would be interested to see what people think of the state of each stake in this image?
Yeah
yeah I'm not sure if it's used anywhere or not
but still, is it obvious what state each one is in?
lmao
like ones that you can play, can't play, have won on, etc.
not sure how exactly it's a mess..
- Did you install lovely?
- If yes, did you follow the antivirus instructions?
Do you get a console window popping up when starting the game?
then lovely isn't installed right or got deleted by AV
is version.dll still there in the game directory alongside the executable?
you might have also put it in your mods folder instead?
No
You just had to read the instructions...
Oof Triggered
on the lovely page
Why are there skulls popping out of nowhere
please don't complain the instructions are messy when you're not even properly reading them
no idea
We need a chat command for when people ask this question that just tells them to read the instructions properly
A bot really
PLS
applying as mod just to add this
same
jk I already did, but I think they might be paused atm
how about some constructive feedback so I can actually improve what you think is bad?
nah
imo steamodded guide is pretty good
only issue with it is that its incomplete
which is like, innevitable since theres only so much a few people can do
the actual installation guide is very thorough
i agree
The guide is bad because it lacks subway surfer gameplay videos
it's fine, I don't need to listen to someone who can't follow instructions smh
If you become mod dont forget to delete that cancelled mod forum post ty 👍
can mods do that?
I think? Dont see why they couldnt
I know the one who created the thread can't do that
In terms of art, just asperite. In terms of coding, I'm not making yet
Yea its dumb
note to self, never get negative pochita
Oh that's so cool!
lol
lazarus flip the deck
Hey chat is there any modpacks or smth?
Or a way to download all the mods at once
because I want that
ultimate modded balatro experience
Wdym by “all” the mods
Well this has a lot of them https://discord.com/channels/1116389027176787968/1255696773599592458
Mine maybe not a good one, but it has mods
https://discord.com/channels/1116389027176787968/1267720426109272135
This one is enjoyable
Um I did download the modpack but it's not working
idk how the modpack actually works sry
where do the mods go???
git commands
The mods are not in the roaming balatro folder
You will need to copy them manually
It is required to downloads all mods at once
Should be in C:/user/<your user name>/Dimserenes-Modpack folder
Or else you should just use batch install file to setup
also it didn't install the steammodded for me
It does, what it does not is lovely injector
Why don't you come discuss at my thread instead
Do I download the 0.9.8 or 1.0.0 alpha?
okay wtf there has to be a way to make center injection not O(n^2)
I can't do it ):
why is it O(n^2)
The injector doesn't work ):
How do I download the injector without chrome blocking it??
by using firefox
getting table length is O(log(n)) apparently
Inserting into the middle might cause indices to have to be adjusted
ok used google edge to download it and now it crashes
like
using the file crashes it
I'm not inserting in the middle and I'm trying to keep track of the length manually already, but apparently it's still quadratic?
Currently working on this Python script for creating custom challenges (python shell output shown)
Balatro modding is impossible...
I need to double check between luajit 2.0 and 2.1 dangit
I keep forgetting that some things only work in luajit 2.1
Apparently when a thread is locked by its host, it is impossible to unlock it again.
70k took a full minute
Any mod here can help me unlock my thread?
i mean the amounts I'm testing with here are completely unreasonable anyways
I need help why does the steammodded injector doesn't work
why would you lock the thread lmaoo
@gilded tulip can you unlock #1255696773599592458
Welp
and while you're here also lock #1226433760426201179
don't use steamodded injector
what do I use then???
I don’t know if it is safe to share .py files here
thank you egg
Hello?
I'm actually not so sure either if it is
why don't you give it a shot
if it gets flagged I'll sort it out for you
ehh it's fine there's a whole thread of python scripts
Unless you are redistributing source code
I don't know what to do anymore...
then it's the 
First step: install lovely injector
I don't know what to do anymore...
@prime cairn
Okay, here it is… the balatro challenge editor prototype that I (hastily) spent only one day on.
(Can someone try this and point out any bugs in my code?)
Well
I'm no programmer
but I feel like those defaults could be put in a separate .py file in the future
looking at all those 150-index long arrays hurts my soul just the slightest bit
howdy egg
Hi hi
quick question since I didn't find anything on the matter, do you happen to know if mod applications are paused currently?
there were mod apps?
There were. That's how I became a mod
there's a form in announcements
but they've stopped long ago
I figured since it's so far up
We just kinda got picked one day and here we are
(obviously there was some strict vetting)
it's 65 mods
I wonder how many jokers you can get if you download more modpacks...
Probably more crashes than jokers
True
I will try getting as much jokers as possible later
I wonder if I can go 1000
But wooow
Can't belive balatro mods went from 100 jokers in 20 mods to this...
enjoy the jokers you have first
CURSES!?
woww
Can't belive balatro modding community found ways to make the game 100x bigger
Welcome to balatro modding
eventually we'll have a mod that adds like 200+ jokers
We're severly autistic and have too much free time
Biggest joker adding mods right now are cryptid and twewj, maybe it will be a reality someday
there is some mods I know from before and some are not
also is there going to be a day when every mod gets a way to be compatible with others
haha, never
it would be fire to play modpack with every single mod ever
also i'm pretty sure if i counted abnormalities from all three pm games there would be at least 200
The fights we'd have on who's responsible for mod compats and all
"why on earth did you overwrite the entirety of level_up_hand for Piss Joker #90"
who overrode the entire game and added the entirety of shrek
wait how many jokers is cryptid at
I- .... Are you taking an example out of a situation of mine?
the character and events in this message are entirely fictitious, any similarity to names or incidents is 100% coincidental
That's just rude..
no dice then i guess, though the server has grown a lot since. I find it a bit weird to have no movement in a moderation team, but then again I'd be wrong saying it's not working out here
Rapid movement would be even worse, I think
Oh sorry for the overreacting that was just way too similar to something that happened to me lol
Like you got the right function too
balatro discord chill
lmao, i need to be more absurd with my hypotheticals
that's funny, all good
Agreed
nvm i'm just reading my own logs wrong
What is this
mfw useless tag
worse than useless
null tag vs cat tag, who would win
Meow
second warning was playing during this let's go
This thing is actually strong
this used to be less than 50% of blind during testing
Many blueprints on burglar strats
Oh, that’s one thing I haven’t done on cryptid
+100 or more hands
This thing is op because I can just play one good hand and then spam highcard
I somehow duped tf out of a hanged man to have 2400 of them
That was crazy
I didn’t realize I had 2400 retriggers, but I did
Toss in along with it Perkeo, observatory, and your choice of planet card, and that's probably an easy trip to Ante 39
^
if you were a joker based on power from csm what your ability be?
genuine question
i def dont have no idea what to make her do
Probably something related to red suits
sounds like a good place to start
okay turns out most the time is spend formatting strings that get tossed by sendTraceMessage?
nothing else I did was at all meaningful...
did you win
I'm adding Blood cards, so I'd probably use those
yeah i oneshot it
Is this going to be 100k chips or the current ante
current ante
incredible
i would like to thank all of the m jokers for helping me
Oh yea is Dimserenes modpack supposed to play with all unlocked?
because the savefile I'm playing the mod on has all base game jokers unlocked
Very OP
old merry Andy but better?
it is
but later on its not as good
I made this and I think it needs a nerf #💻・modding-dev message
it's good forever
econ jonkler
And it’s Legendary
It is extremely strong
^^
nahh
everyone is telling you it is super good
I posted a run I had with Solomon David
if i wanted other peoples inputs i wouldve asked
:
cap at 1 total hand and 1 total discard
thats ass tho
twas a joke
Look at Solomon
No one has 
I still think she could use Blood cards 
My placeholder effect for Blood cards is that they gain +1 Mult when you destroy a card
I have Bone/Skeleton cards that grant the cards in your hand their Chips when they’re destroyed
And Flesh cards that consume the card to the left of them at the end of round, gaining their stats
I don’t have an economy one yet though
joker gains a bit of x mult when hearts/diamonds are destroyed
id still like her to be pretty strong
What about xMult when Hearts are destroyed?
after all the effort i put into the art i wanna use the card lol
That’s why I do art last
yeah maybe hearts specifically is better
No reason to make art if the idea is scrapped
i find that if i do art then im more motivated to finish it all
well i knew i was gonna make csm themed stuff so i thought might as well start with art
yeah for sure
how much mult is reasonable per heart destroyed then?
1.5 might be a bit strong
Is she rare?
yeah
I’d say like 0.2
I love this joker
0.2 sounds reasonable
It might be too low, but you can try it out
why not
iirc it still has the same blind size reqiurement (2x)
But it’s tripled by its associated bonus blind which is the only way to get it
consistency with other boss blinds and I’d have to add “very large blind” to the description
the needle doesn't mention "smaller blind"
My Boss Blinds that have multiple phases but a lower size don’t mention they’re smaller
it shows the differing blind size in the collection regardless
neither do mine
(only crimson dawn has abnormal blind sizes now)
so the blind is either in game on screen or has its size multiplier visible
This seems pretty minor also it would change Rewind Blind behaviour
also i just realized i forgot to add a disable effect for violet noon and midnight uhhhh
Again I prefer if the base is larger because then it generates as an actual Blind
Can you give me an example of another mod which could generate this blind?
i mean it's piss easy for me to make a "Fight any Boss Blind"
i have the tools already
Hey uhh my boss tag is making the game crash
Okay but im being asked to balance around other mods which could potentially spawn this blind
So I’m going to need an example
oh yeah then just don't care about it lol
I can't continue my game because of this
Currently I randomly select Blinds but I don’t think I would randomly select this at the moment
yeah it's an universal bug since boss tags are fucked
I randomly select Showdown Boss Blinds, and among non-Boss Blinds I have a list of Blinds I can randomly select from to avoid errors
whitenight is a showdown blind 
Boss tag dissapeared after opening a planet pack???
what is happening
So you don’t have an example?
Putting the L in L Corp
nah, this is a W Corp. moment
No, the player is sure to L
I mean I could make one 
ok this was too easy
Make a whole mod just to get me to do the most minor change of all time
It’s not a whole mod
It’s already part of my mod
As I said I currently generated random Blinds, but from a list to avoid issues
So this is too minor for it to really matter
I could make the random generation configurable to generate any Blind
I mean, you can just say you don’t want to do it
You don’t have to justify yourself
I agree with mathguy here tbh
that's right! steamodded has to be rewritten because thunk fucked up all the code again
😭 i was going to make a joke but it got automodded
I'll be ready to diffcheck all of Balatro's code, that's for sure
my thoughts exactly
but I wont say fucked up
just changed
comedic effect
Also maybe smol bug fixes?
Boss tag?
Like, the boss reroll tag?
yes it's called boss tag
crazy
daily challenges would be dope
yeah
it's 3 face down cards, so obviously 3 different additions
mayhaps
modding support :clueless:
i would love mobile balatro
A new card type would be insane
i dont even play stuff on my phone but i would literally play so much
You mean like a new enhancement?
Oh maybe
Big consumable if it is using a whole card back
is that not the usual background or
usual is darker
oh right
can't, all the glyphs have been exhausted
Finisher boss then?
doesn't mean he can't go beyond
Could also take a different alphabet
What’s the issue with it? (ping)
Like the t1?
ye
thunk alphabet
idk there has been a bunch of boss tag crashes
for Flint
The Flint:
How so
Global
if you skip for boss reroll, it counts as you used 10$ to reroll
that was my first though
three jokers 🤔
Oh, how so? There’s literally a global variable to avoid that
but I think it's bigger than 3 jokers
¯_(ツ)_/¯
Three mods >:)
cryptid is now included in balatro
Thunk adds 600 suits to Balatro
It would be nice if you could hold boss tags for when you need em
three mods added to balatro :o
Coffee legend
Dancing Isaac added to Balatro
Three common jokers
According to the code there is no base game green BG outside of blinds. And of those blind they aren't bright green enough to match this (plus they're mixed with black to look more dynamic and this isn't).
Three Wizard-Kings
Full House jokers
yeah i'd love it to be like. free usage of director's cut
So either elaborate troll or something gicing us a new BG
oh wait in English they’re just the Three Magi
New Poker Hand: Straight Pair
Hmmm
10 card hand with two separate straights
Triple Sevens Joker
I think if thunk adds new legendary jokers he wouldn't just tell us what they are
Nope, something like 2 2 3 4 5
The next Legendary Joker will be Paul
The masses
“Who’s Paul?”
"The Masses"
The next legendary joker will be Thunk himself
exotic jokers when
“Chat”
Drone
Someone suggested a female Legendary Joker during the demo
Imagine if codex arcanum is added
I myself thought of King Momo
which exotic joker would be most balanced in vanilla, actually
Other famous historical figures that may or may not be less of a joker maybe?
Effacire comes to mind
That’s what the suggestion was
A historical female Joker
universum only if it's toned down to +mult/+chips
I don’t remember the name
Fear the fan art if a female joker is added
No way guys I was able to use paint photoshop to flip one of the card 😱
Legendere jokers is way ahead of you
Plus, says the one who made Ankh a mummy
not balatro font
0/10
fake as hell
It's just low res trust
lets be real, if thunk doesnt add #1268971774708678731 with the update, it's never getting 10/10
TRUE
What do you mean
Like your jordan’s
Haven’t you seen the already existing fanart?
I've seen the Jupiter card.....
I wanted to make a Joker about it because a certain HiltedTat drew it
But I couldn’t quite figure it out
Ankh
Also I’ve seen way more than just the Jupiter card lol
wh
Balatro adding fishing minigame confirmed
Balatro adding TCG minigame confirmed
if a game doesn't have a fishing minigame is it really a good game
:)
Honestly no?
More like fear you
Have you looked at your own art or did you do all that blindfolded?
You missed Galatro and the one texture mod which is too much for this server
Not familiar with Galatro
maybe maybe 3rd part of the update is native TTS support?
I AM familiar with the other one but I guess I didn't qualify that as fan art
ya mean #1256057277832761385
people were asking for that since the release
I don’t know if it was released but they shared two images here
Wait now I’m curious if we’re thinking of the same one or not lol
Probably??
The other one a friend shared with me after they found it on Tumblr
how many of Those mods could there be...?
completely unrelated to the convo:
lobcorp text is no longer wavy
I was surprised there was one, much less so many 😭
I’d share it but it’s actually NSFW IIRC
although I thought it was cute IIRC
baron + mime builds in shambles
slide into tilted's dms
I've literally only seen ONE, how could there be more
Lobocorp text is now straight
L
this is bad for the gay economy
Sometimes to quote like this you just want to answer the stupidest stuff like "2pm"
No longer italian
is this gay enough
Not gay, but this is moderately lesbian
What flag is that, lesbian?
lesbian
what country is that
Lebanese island
the one where all the pretty girls are from
Lesbos island
so i had an idea
most underrated dynatext feature
true
i've literally seen nobody use this outside of ankh until now
nah i've repurposed attention_text which is basically dynatext
(i added text_rot to it)
uielements don't use dynatext tho so they can only have one color grr
ive suddenly got an urge to take estrogen
you just need multiple UI elements nested inside each other
true
one uielement per letter
anyways i made it start with blue and turned off trance
i forgot misprint uses dynatext lmaoooo
if you want the code, won't post it to #1209506514763522108
it's only 2/2 wdym
[2/?] is never a good sign for anything in this mod unless L corp is trolling 
well i mean. [2/?] is only on two abnos......
Voucher tag giving voicher crashed my game
why are some things just broken in this game
because 
Why is everything making the game crash
I'm trying to do the most optimal choice and it crashes
I can't do anything in the shop
This mod pack is broken
post the crash logs in the modpack thread
Didn't know jimball changes to music
didn't know this was even possible with mods
also ):
What caused this...
well one of the cards reduced the global value by 1
This guy is doing something with the heart cards...
i wonder what
idk
also she is not a guy >:c
yeah no worries lmaoo
I need help to fix this
no clue what borked but try going out and back in
restarted and didn't work
f
I guess I will never know who is the hidden joker... ):
what did you do before that happened
bought the voucher and went to main menu
because I realized it reseted the vouchers
I mean
booster packs
quite a few issues with voucher packs i suppose
ohh nooo
oop they found censored
Um
Hidden cards doesn't matter for me because I'm playing the Ballin' challenge
This is not bad...
Uh It's over...
modded moment
fun fact there are three mods that add blinds with that exact effect
oh shit just realized i haven't added joker display for censored
It's a peak effect.
So peak that it'll be funny if Thunk releases a blind with this effect.
i own the copyright to that effect since mystblinds was made first
I wonder if someone suggested that effect during the demo
I suggested a Blind called the Root, but with a different effect (taking the square root of your score)
jimball so powerful it doesn't need to be censored
that boss should be blacklisted 
Tag moment
i find it funny how censored censors jokerdisplay
almost as if "NO CHEATING FOR YOU"
good news... it doesn't crash!
Is Saturn's issue with localization ERROR strings fixed yet?
Just paint the screen Joker black
@toxic walrus
second try's the charm
...nothing happened
but it didn't crash this time at least!
oh wait i have a common on the right
wdym
You remember, clicking the button to apply settings would cause a bunch of Steamodded's strings to show up as "ERROR"
ok it works
new retrigger api... actually works
but I only fixed joker_main so far
it's beautiful
the old lovely patch was 50 lines long
and now it's two one-liners
Woohoo!
do u guys remeber the shortcut to change all instances of a word in an ide
i forgor
ctrl+f2 for vsc
yes its fixed
uhm actshually badge suggests otherwise
😭
Nonbinary he/ pronoun
he/he/haw
You mean, he/he/waw?
LMAOAAOAOAO
is there a mod that essentially turns balatro into a sandbox?
I guess turning on Debug mode is almost that?
ah
i have an interesting mod concept but im not sure if it's possible
anything is possible
could you puit a cardarea in the description of a joker?
joker descriptions are just tooltips and because of the run info menu we know that tooltips can contain cards
so yeah very likely
idk how you'd go about it
im just taking a calculated guess
(what im referring to btw)
btw one thing I forgot to mention, in blackhole, this patch insertion causes crash with latest lovely because there's no space at the end
if not G.sticker_card or not G.sticker_card.area or not G.sticker_card.area.cards then return end
it just goes endend
I assume regex patches behaviour changed to not auto insert space or something?
noticed this with cryptid as well since I was the only one crashing from a similar patch
you'd have to override the standard description, but you could absolutely do this
alright noted, I'll just add a newline
And... I just noticed 3 errors in my code. Gotta go fix them...
Why were you using a version outdated by 2 versions? Lol
i wasn't, I was just trying to figure out someone else's crash


