#⚙・modding-general
1 messages · Page 956 of 1
that's mostly flavour text though I did want to slow down the game speed originally
but that would be really unfun and annoying to implement
why hands are blue?
oh
is +150 chips reasonable for a no-downside uncommon
A friend of mine just got into balatro modding. Here is his first joker.
Goober
make it +149.99 and you've got a deal
that just astro
Yum
Blue(print)er
creates splash on blind select
I think my first joker is lost to time.
Also I was overseeing the entire process and shit.
but i didnt get there without being berated by multiple people for trying to code my mod in 0.9.8
My first joker was sans undertale
during the age where we were moving to 1.0.0
Teaching him how to do a jimbo™, so I take pride on him making a joker idk
x77 mult for scored 7s
da f*ck
sans undertale drinks all heart suit cards
there's no compensation he just takes them
they are his now
Amazing deckfixing
Checkered deck + sans undertale
checkans decktale
with an obnoxious slurping sound effect every time
my stuff is terrible at following what most mods do lol of my 18 vouchers only 1 of them uses a patch lmao
i'm gonna make this a real thing now
it will go in my unreleased stupid shit mod
idk if this is a thing that i would want to release or people would want released
do we have a 1/10000 foxy jumpscare mod
new joker;
force x0.25 speed
+1 chip
retrigger self 149 times
Nxkoo made that i think
awesome
tf
i think people need more whimsy and silly in their life so yes pls release it
do you have an audio file for this
loofs bamgit is uh...
is this balanced
and there is also https://discord.com/channels/1116389027176787968/1402697777737236521
will release when ive made 10 jokers for it
Subscribe for more Sounds!
http://bit.ly/TiIuFz
DOWNLOAD LINK!
https://www.mediafire.com/file/ljk82vvcmgmw9ek/
Extras Channel!
http://bit.ly/1iQgZ0q
Attribution:
http://www.freesound.org/people/TinyJiro/
Licence Terms: http://creativecommons.org/licenses/by/3.0/
tbh i was expecting nxkoo ngl
who else 😭
Send it in dms
what does he do lol
i want to say heaven but she is pretty dead
he forgets the infinity stones
we have to be friends
mfw i forget the infinity stones (they aren't in fortlatro)
i'll send a request i guess
gonna try mild cryptid for a bit cuz blue stake is kicking my ass and I wanna diversify the experience (or should I do pokermon first)
pokermon
pokermon
pokermon is better
Gives 6 mult since the infinity stones got added 6 years ago
I haven’t played cryptposting
I actually set it to mild to avoid 7eee892 scenarios where things stop functioning
It will be waiting for you even if you don't look for it
Gamesets do very little rn
Why do you have two
also what does does gamesets mean
One is Talisman the other is Cryptid
Like Mild or Madness
talisman is literally only used for Cryptid I think
Still proves my point
and one is a webp and one is a png
Its mostly just for big number mods
damn you file formats
And its annoying for every other mod
cannot stress this enough
1000% real and true
talisman ruins our lives but we have to deal with it because it's used with popular mods
I lowkey got jumpscared by SHONK lol
cryptid/posting
mayhem
and some other unbalanced mods
Ayo is that Marie Re;Shuffled?
Entropy does not require talisman
i do other more prominent things nowadays but yes that would be me
I haven’t played cryptposting
uh mb, i think it does
i haven't stopped looking at the submission sheet but it's still
below 20 unreviewed subs
¯_(ツ)_/¯
I’ll do one for hotpot after it’s public
I mean it doesnt use any talisman features so it would be wierd if it did
fortlatro and punchline use talisman
Hi
hello eris
Undertale requires Talisman and doesn’t use it’s features
hello eric
last i checked, undertale was made before talisman
the mod
what mod
I know you for reshuffled so... That's how i know you lol
ii guess that's fair you probably haven't interacted with tsunami
i'm fusing splash with every joker
In Stars and Space is so very close to isat
mfw i have to install talisman balatro to play undertale
why would tricky tony do this
Undertale dlc 😱
cryptid without talsiman dependency tomorrow
Nefarious Robert
first weed, then gambling, now what
jimbo balatro is the secret boss of c5
alcohol
Suspicious Action Steve
joker display...
we gotta beat him to get out of ralseis gambling debt
the theme is just the balatro theme but with the freedom motif snuck in somewhere in the song
has someone done that yet
song that plays when you fight jimbo
Murpher wheel of mods hit pta
pta?
Comma
Paya's Terrible Additions
The mod is acting weird tho
lmao i saw murphys stream
he managed to break the mod lol
oh neat
how do i make it in order to lose 1 mult per round
i feel bad its crashing so much T-T
like popcorn
cause is losing 1 every hand
#💻・modding-dev also you'd use context.end_of_round and not context.blueprint
alr
dont return mult in the context i gave u, just do the mult decrease there
also i forgot u also need a context.main_eval
my first time doing pokermon
alr
i mean i made a joker that checks if you have fortnite installed so im sure toby could do something like that in undertale lol
you can DO THAT???
i mean its possible by reading through the file system
I wanna know how to do that
yes surprisingly
yeah people have gotten jokers to scale based on discord messages sent
SMODS.Joker{
key = "EGL",
loc_txt = {
name = "Epic Games Launcher",
text = {
"{X:mult,C:white}X#1#{} Mult if you have {C:purple}Fortnite{} {C:attention}installed{}"
}
},
atlas = 'Jokers',
pos = { x = 3, y = 45 },
config = {
extra = {
Xmult = 5,
}
},
rarity = 2,
cost = 5,
blueprint_compat = true,
loc_vars = function(self, info_queue, card)
return {
vars = {
card.ability.extra.Xmult,
}
}
end,
calculate = function(self, card, context)
if context.joker_main then
--print("Starting Fortnite installation check...")
local function file_exists(path)
--print("Checking if file exists at path: " .. path)
local file = io.open(path, "r")
if file then
--print("File found!")
file:close()
return true
else
--print("File not found.")
return false
end
end
local fortnite_path = "C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Binaries\\Win64\\FortniteClient-Win64-Shipping.exe"
if file_exists(fortnite_path) then
--print("Fortnite is installed!")
return {
message = localize{type='variable',key='a_xmult',vars={card.ability.extra.Xmult}},
Xmult_mod = card.ability.extra.Xmult,
}
else
--print("Fortnite not found.")
end
--print("Fortnite installation check completed.")
end
end,
}
but this sounds fun
waaait
i could do a thing like aikoyori's where I have a legendary that gains effects for each game you have installed
yeah one issue tho is that it only detects on windows
yeah well too bad
😭
but thats like 99% of mod players so
I just check for install on every game in my steam library (obv i can't do EVERY game)
i dont even think you can play fortnite on linux because of easy anticheat
well if y'all have it on other operating systems i could make it check other paths lol
yw
hello chat, imma just watch what people do because i like to watch what people have as card ideas...
card ideas are so cool
can someone explain to me what this joker does?
oh dw theres a version that doesnt lie to you
i don't know if it's more weird that you are watching us or that you declared that you are watching us
average card you get in a high card build
is that an arrow head blueprint foil
looks like it
i think its from revos vault afaik
retriggers the card to the right twice if the played hand has a spade?
this is the description
oh right i forgot which mod added the ahead rarity
but I dont understand it lmao
ooooh that's awesome!
the more ahead jokers the more this joker copies others to the right of it
2 ahead jokers? will copy 2 jokers to the right
original
what if there was a joker that opens a random image file on your device
chat am i cooking
Oh wait ahead is a rarity? that makes a lot more sense
i had an card idea but because i dont mod it just stays in my head...
what is it?
yo wait i could legit do it
itd be evil lmao
playing balatro then getting image_friend jumpscared
Top 10:
for each scoring 10, destroy the card after scoring, then generate a random enhanced face card
https://cdn.discordapp.com/attachments/1416857608287031326/1419657797494374552/13_sin_titulo3_20250922141308.png?ex=68d28eda&is=68d13d5a&hm=3d718cc8183dfb4d7ceff98f3e6ec84b080ba7ee4aa36f6153a9b14964734d75&
lmao it would depend on what images the player has
Thank you, that makes a lot more sense now
can i put that in my mod and credit you
sure!! thats awesome!
it depends
but itd still be funny lmao
move all my pictures to the screenshots folder for 20 trillion mult
would y'all install fortnite for x5 mult?
bro i have this in my images folder
the potential is insane
ballin
i had it ready and waiting for this exact moment
balatrin'
you want more? 
ballatro
hell nah
man
=0 mult if any of your files are named fortnite
i mean i also have this
imagine if some popular balatro player played this shit it'd be funny to see like northernlion have to stop and go install fortnite for x5 mult lmao
steal
On Mute: for each point of volume you dont have, add it to the number of chips this joker will give per scoring (up to 300 chips because there are 3 volume bars)
...is it possible to launch a game with balatro? or at the very least a website
finally, joker for deaf people
Yes
yes
u def can open links with love
github right?
It’s just running lua code
brb making a rickroll joker
those who know
toes who nose
WAIT I JUST HAD A STUPID JOKER IDEA
Joker that launches overwaycj when you lose
those who snows
What if you haven’t sinned
its like how lots of animals evolve towards crabs
call it convergent evolution if u will
Those Who Know: for each joker unlocked/discovered, add +0.3 Mult to the amount of Mult this joker will add on scoring
joker that makes you play a match of fortnite and you get mult based on what you placed
does anyone know how to make a joker that plays music bc i want to make a joker you have to obtain to get hatsune miku that plays the first song sung by a computer (ibm playing daisy bell)
that'd be funny if i knew how to do that
SMODS.Sound
then it launches partition manager and removes all partitions from your computer
i dont think u can do that....
just make a SMODS.Sound object and have it so that its select music track function returns 1 or smtn if u have a certain joker
someone should def use my stupid epic games launcher joker tho do some psycho mantis shit and reference games people have played lol
dear god
ban every item except jimbo, judgement and antimatter
that shit appeard in my nightmares, even in dreams
wouldnt it be funny if there was a potato pc card as a food cardç
beating balatro with only jimbos
also i guess you could unban adversary if you have cryptid
inversely scales with fps
new boss blind: debuffs luchador and chicot, -infinity chips, -infinity mult
well is like +12 mult per blind, 248 in the final ante, pretty hard
legendary joker: ant queen, creates a negative jimbo at the start of the round
boss blind that just debuffs all the content of my own mod lol
thats actually hilarious
Potato PC: Starting at 60, substracts the amount of FPS you have from said number, then adds it to mult. Lasts for X hands
send the title screen
that wasnt mine
ae
i am also working on a devious boss blind lol
no more fortnite! no more cards!!
is +120 mods from @warm swan
i really need to polish my mod
i might do this actually
but im downloading atm10 to the sky instead
this boss blind is also pretty stupid
knowing that it wont run
make rare and legendary csvendish
oh you get your jokers back thats pretty cool
oh ok thats balanced somewhat yeah
they just gotta reduce the chips somewhat though
whats the best mod that still remains vanilla in feel?
mine
none
Bunco and Grab Bag i feel
Lucky rabbit too
And maximus
paperback and ortalab also feel pretty balanced around vanilla
but idk about vibes
i actually do want some people to try my mod now that i think about it anybody up for that?
sure whats your mod
what is your mod?
its a vanilla esque mod with some silly joke jokers thrown in
i only have balatro instaled on mobile 😭 wouldnt mind trying if i could if that helps 🥹
sorry rule 4
sry no mods for mobile
WHATS THE NAME
pls dont say jambatro
Jambatro
ok fair, where is it
how many jokers
im currently trying to have an insanely large collection
ayden 2 spoken
def didn't think of it because of this forever ago but then never implement it until recently
https://fxtwitter.com/BalatroGame/status/1876668327747059770
i havent put it anywhere yet but ill be putting it on github soon. for now ive just been archiving every individual version of it on my computer
oh thats nice, how many items till now?
its just kinda funny to hit ppl w the "rookie numbers" and its like 10k jokers
finity mentioned
oh yeah i was using the medieval deck and challengers sleeve for this run
thats great will play
slap berry? fortlatro mentioned!
welp, here it is for anyone who wants it
let me see one random joker
o_O
uhh
lmfao
does anyone know why visual studio code is suddenly aligning all my = signs
when i press format document
this has never happened before and I hate it
pirated soul card 😭
yea thats fair
but i hate how you have to remember everything to try to play something like that
i would love a deck that is something like "destroy every joker, creates 10 random jokers, every round"
didnt get one...
fair
i dont remember anything i love infoboxes
normal balatro player behavior
the gambler's deck 😭
it also randomizes cards consumables and others
i mean i made a legendary that just endlessly gives you 3 random jokers every round
and i have very short term memory
sounds pretty crashing, i love it
thanks
rifff raffff?
RUFFF ROUFFF
yes and no its 3 they can be any rarity and they dont require space
sounds like a dog open a shop
so my mods gimmick is that you have to do certain tasks before you can transmute them into a much more powerful joker
how evil is having the player add 10 cards to deck while owning Idol
thats not bad
dna go brr
AEUGH
you should make a challenge with that like jokerless
"2 eternal legendary,
jokers dont appeard anymore"
yellow text jumpscare
it LAGGED my game for a second when that popped up
the water cooler of doom and despair
though its probably because im doing something wrong here
really deltarune fans?
maybe the card is activating even if not scoring
also since i dont feel like having my mod read yalls screenshots folders imma make a place where yall can submit your own images so that way i dont deal with the privacy invasion of reading the players screenshot folder
because i see that u arent playing any cards there
WHY AND HOW
what
prob in my mod's thread here lol
or if i make a discord server eventually for my mod
assuming it ever takes off
What if there was a card that simply restocked food item values...
I feel like I'm going insane
fridge tarot card
visual studio code is fucking up my formatting
for 1 specific joker
and no other jokers even in the same file
ice bucket tarot card
fantasy fridge
i don't know
I need this joker to stop being so fucking strange graaagh
buffet
salt
they used salt to preserve stuff way back then
ice buffet tarot card
i never ended up using this bug for anything but this was a funny bug when i made it 4 months ago
salted bucket tarot card?
does someone have that one gif of someone cooking ice cubes
i can fix it
boss blind: trampoline
turn this into a different boss blind call it the rave or something
i mean i fixed it after but im sure i could find the old code for it from 4 months ago
nah if i were tasked with making a rave boss blind the mod would need an epilepsy warning
yes give me i can use this for my funny
assuming you can start and stop it on command
every card flashes a random enhancement and edition every frame
what was it
that's so fucking stupid??
if you have 2 spaces between a variable name, and the = sign, it tries to align every = sign
if it's 1 or 0 spaces, then it doesn't try to align them
The Trampoline: makes cards bounce 🙂
going to put this on the jevil joker that gives you +9 hands, discards, handsize, shop size and booster packs and cards in booster packs
and he will also make the background move faster if that's a thing i can do
at first i thought they are bouncing at the rhythm of the music
me when i accidentally code one of those circles that music artists use instead of animating a soul
you want to put a soul in balatro?
yes, the blind is called "The Limbo"
Triple Spike: X3 mult if the played hand has 3 spades
steal
no like on legendary jokers they use soul_pos to put the legendary above the card i was trying to do that but animate the soul_pos
tbf you fucked up it pretty hard
bloodbath: on last played hand of round, all cards give x1.9 mult
alr that sounds cool!
yeah i did but it WAS animated lmao
working on a big font (numbers + question mark only)
6 could use a bit of work but i'm pretty happy with how things are coming out so far
urge to do this
i mean i made the game do this before
i will
although this blind will be classified as joke content and therefore able to be disabled with config toggles
most balatro jokers are OCs if you think about it
616
so turn this into an instant run ending boss blind?
split the joker
like i have had some of the most strange errors while making my mod mostly because i am not good at coding
joker randomly has a chance to explode any second
if it explodes, instant gameover
one time i SOMEHOW managed to turn specifically stone cards blue and this would crash the game i wasn't even trying to do anything with stone cards or the color blue
Split the Joker
X5 Mult
1 in 10 chance to explode
but it doesnt say what the explosion does
concentrate lapiz lazuli
what it actually does is destroy all your jokers and set round score to 0
Dumb question: From what you know of Ortalab, what would you like to see more support for?
splash
The Atom
i know nothing about ortalab, but you guys have to have a splash of some sort in there
We have splash if it was cool
how dare you
you're blue now that's my special attack! ~my terrible coding somehow in like 2024
Special Blind
everything is blue
uh? revive it and make it better :v
Special Attack
X2 Mult if High-Contrast Cards is enabled
i honestly have no idea what id even do with that it just crashed the game before if you played a card that was blue and i've absolutely lost the code for it sadly
all fiction?
Frying Pan: After shop closing, destroys every Egg Joker in your hand, then adds 10% of it's sell value to xMult (starts with x1 mult)
blue stone is probably a cousin of the ERROR of spades fr
chat am i cooking with this
would y'all play an ERROR of spades? (it also just crashed the game if you played it)
rare how there are a lot of jokers but you cant cook
code it, open a kitchen
if only 😭
chickenç
i forgor from which mod it was
alright the limbo blind is one step closer to being a reality
SDM i think
After Boss Blind is defeated, spawn a egg joker
no die, instead crashout
its not a bug, its a feature
wonder if i can make a random chance for it to actually crash the game
help
ok no this wont work
What happened there?
i installed multiplayer and in a agme with nebula deck i opened a bufoon pack and the game crashed
Ohhhhhh, there's a multiplayer mod?
yes
thats what im doing
so at the start of the blind itll do the keys and if you wait too long or get it wrong then
all jokers and cards are debuffed
or what it could do is it multiplies blind reqs by 10x
yeah prob better
hi guys sorry to bother, i'm having a problem with the talisman mod, where can i go to ask for some help?
also its not gonna be a showdown boss blind
its gonna be a regular blind
Can I DM you? To talk about mods
ok
straight up the limbo key sequence
i even have the key sprite
now the hard part is programming the shuffle animation
average cryptocoin experience:
Are you in the cryptid server?
i tried with the link in the github but it's expired
thank you very much, it worked!
I can find the old images if you give me a second
I don't play Balatro anymore btw
If you ever need mod names/recommendations though, I'm here. I know every single mod in existance so
ok the half second of game over is hilarious
I still haven't won a pokermon run
deltarune mod?
ah nvm
thank you anyway, i quickly found the solution in the cryptid server!
hey sorry to interupt but im trying to work custom deck builder but whenever i select a joker and go back to my deck i get a gamecrash
@warm swan this one?
anyone know how to install the brainstorm mod?
@formal orchid
extract the folder in mods folder
thats one cray title screen 😭
no shenanigans here
i dont have the brainstorm folder
no thats why i asked how to install it
oh the same way you installed smods
"where's the download" and "how to install it" are two different questions
in the workshop?
oh you use BMM¿
this is what i said
here's the mod https://github.com/OceanRamen/Brainstorm go to the releases tab and download the latest source code zip
if you intend to use it with any other mods it probably won't work btw
oh no
what other water joker is there
and what outdated version?
damn it might need some fixing lol
it just made a boss tag REALLY REALLY big for a second
lmao
hovering on the tag fixed it
I understand that with many jokers it can be normal for the game to take a long time to process, but even with the Talisman mod, is it normal for it to take this long? I removed the animation in the mod settings, but I give up on all games with my mods because of the delay, not because the game ended by crashing or something else. I just want to know if this is normal and if there is anything I can do. Thank you.
fine :/ thre is anything i can do?
Abort and do a new run
Or get a cpu that can handle 10 thousand calculations in a 0.1s
or play another more fun mod
he (mild spoiler for the joker) also seems to have
unshuffled my deck
Like joyous spring
and it will never shuffle ever again
the deck is ordered by ranks and suits perfectly and always drawn in that order
i'm very confused and it's perfect
i just need to do another thing
Hi chat, I’m chilling as I kill zombies in Dead island 2
hi chat, i just nuked my steam installation
nice
Cinema
That's cool, Clippy from microsoft
📎
You think clippy would like steam
clippy would never use 100% of your cpu on background
Microsoft stopped using Clippy in 2007.
Steam was created in 2003. There was a time where the two overlapped
But yeah, Noticed people using clippy as a profile a lot recently
finally
install Yorick and Better tags
it's a movement/protest against the youtube ai age guessing stuff. dunno why people are doing it on discord exactly
i got bored with my pizza tower noise pfp so i changed it
wait why is pokermon hard even on white stake
i am in purgatory
this is so funny
if i close lovely while playing will it disable the mod?
This is so peak
hi astra from hotpot
hello cool modders you are all doing very cool things
some are
so anyway i made a profiler that probably nobody uses except me
incorrect. you are a cool modder who is doing very cool things :3
there is more where that came from (also joker reveal)
i do not know why the jimbo is doing that
i spawned it in with debugplus to see how it would look next to the other card
to see if its soul sprites were too big
and it just did that
thank you jevil very cool
he would do this
Thanks lol
I want this mod to get finished but please take your time.
Just give us a settings menu to write our unfunny jokes.
what does pcmcia card actually doing to balatro
My FUCKING CARD 😭
I HATE BUILD FILES
SDJKN NFD
GHJKBNMUY TVY FCRDXEB%YH^NU&JM*KIO <L>P:bygvfcntyjumk,il.ohbugyfc
hjknm, bgvfctdrxse45yb6h7unj8imk9o,l0.pj nhybgtvfrc
the
shenanigans never stops
but when does the hot potato start
I thought I'd die after being sent to ante 8 directly after ante 2, but chad chili pepper and boredom are insane
ah fish
Gotta love a round 7 victory
I'VE BEEN THINKING HARD SORRY
smh
I'M TRYING
hi chat
...fluff?
notmario...
missingnumber
code my jokers
im really braindead rn but im gonna continue trying to work on element consumables
uh congratulations i guess
what the fuck is going on
jokers
This is an SMODS feature that's gonna be coming out next update thanks to Kekuism. I'm simply showcasing some extra functionality for it that I made (being custom sounds and juice times), but that probably won't come til the update after next
do you like them
WE CAN MAKE JIMBO SAY SHIT NOW???
First Time. Need Help:
Oops! The game crashed:
main.lua:2414: bad argument #1 to '?' (table expected, got nil)
Additional Context:
Balatro Version: 1.0.1o-FULL
Modded Version: 1.0.0~BETA-0711a-STEAMODDED
LÖVE Version: 11.5.0
Lovely Version: 0.8.0
Platform: Windows
Stack Traceback
(3) C function 'function: builtin#96'
(4) main chunk of file 'main.lua' at line 2414
(5) global C function 'require'
(6) LÖVE function at file 'boot.lua:323' (best guess)
Local variables:
c = table: 0x1bcb5a00 {identity:false, version:11.5, accelerometerjoystick:true, modules:table: 0x1bc8ffc0, gammacorrect:false, title:Balatro, externalstorage:false (more...)}
openedconsole = boolean: false
confok = boolean: true
conferr = nil
(7) global C function 'xpcall'
(8) LÖVE function at file 'boot.lua:362' (best guess)
Local variables:
result = boolean: true
(9) global C function 'xpcall'
(10) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '(LÖVE Function)' (defined at line 355 of chunk [love "boot.lua"])
inerror = boolean: true
deferErrhand = Lua function '(LÖVE Function)' (defined at line 348 of chunk [love "boot.lua"])
earlyinit = Lua function '(LÖVE Function)' (defined at line 355 of chunk [love "boot.lua"])
i never thought i would reach a point in balatro modding where I need to debug my joker sending you to purgatory if you start a new run while you have it
also hi it's me again
Yeah it's on dev SMODS rn
Honestly Quips are pretty easy to implement, even for a non-coder
Hey, I don't know if this is the correct place for this, but I just updated steamodded, and it made a duplicate mod folder in the roaming folder that stops me from launching the game
Which one(s) am I supposed to delete here?
finity did it
This is all it takes
...huh
the date modified could be helpful in this situation
(delete the top and bottom ones)
Yeah, I should've figured it would just be the newest one, but I wasn't sure if the old ones had any ✨ important data ✨ or something
Thanks!
You could always make a mod that throws up a reference to the no way screen from Sonic 3 & Knuckles if it detects Talisman is loaded if talisman is that dog shit.
do we at least get to play blue sphere
can you even play genesis roms from luna lua?
Bro PLEASE stop yapping oh my god
or has nobody figured out how to do it.
astra
aikoyori
guys rate my setup
marie
jtem gc is just us playing activities
no
no (with ping)
Nah that's crazy 😭
WTF
it's literally just us playing
this is breaking every new boss i defeat
you should play my mod it has miku in it
i think you're good.
Average cryptid run posting in mod chat that nobody really cares abt
never knew the roaring knight was a miku fan
haya did all the work
got this error, anyone know whats wrong? Oops! The game crashed:
main.lua:5124: bad argument #1 to '?' (table expected, got nil)
Additional Context:
Balatro Version: 1.0.1o-FULL
Modded Version: 1.0.0~BETA-0711a-STEAMODDED
LÖVE Version: 11.5.0
Lovely Version: 0.7.1
Platform: Windows
Stack Traceback
(3) C function 'function: builtin#96'
(4) main chunk of file 'main.lua' at line 5124
(5) global C function 'require'
(6) LÖVE function at file 'boot.lua:323' (best guess)
Local variables:
c = table: 0x3eabe668 {identity:false, version:11.5, accelerometerjoystick:true, modules:table: 0x3eabe6b8, gammacorrect:false, title:Balatro, externalstorage:false (more...)}
openedconsole = boolean: false
confok = boolean: true
conferr = nil
(7) global C function 'xpcall'
(8) LÖVE function at file 'boot.lua:362' (best guess)
Local variables:
result = boolean: true
(9) global C function 'xpcall'
(10) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '(LÖVE Function)' (defined at line 355 of chunk [love "boot.lua"])
inerror = boolean: true
deferErrhand = Lua function '(LÖVE Function)' (defined at line 348 of chunk [love "boot.lua"])
earlyinit = Lua function '(LÖVE Function)' (defined at line 355 of chunk [love "boot.lua"])
i think your game crashed
while we're just playing daily sudoku together
Could you send the crash file instead?
IS THAT HOMOPHOBIA Heresy!? (The joke is that someone said Heresy from Ortalab is Homophobic)
this has been happening a lot
use the latest talisman release
i think somebody should use super balatario as a base line for a mod that puts a bunch of jokers that lets you play various roms in balatro with how you do in the roms adding either chips or mult calculated from the score.
n
hi
im cooking at 11pm
the super balatri- CHEESE
cheese sandwich
that's enough cheese.
would eat
erm.. what the cheese?
I'm not a skin walker
I like women
same
note to self:
this looks ass post-redesign
did you get hacked
did you lose a bet
what the hell happened to you
With?
peak
The fuck did I do bro
look at her tags i don't think she got hacked
I mean stuff like:
Sonic 3 & Knuckles - You gain Mult based on your score/100.
the tag was what i was concerned about
Lesbian = hacked
are you sure you're really comfortable in your own skin?
okay mpreg tag.
aiko what do you mean by this
i am going to juice_until your skin until it start_dissolves itself apart
Blinks
what the fluff
I'm still not a skin walker
hi still not a skin walker
i never said you were
hi notmario
I'm just clarifying
hello N
I'm still thinking on what to add to the hot pot
oh hey it's the guy from that triangle fps game
who also happens to have made a balatro mod
yes you do
I DON'T
add daily sudoku together
your mod is like 80% good ideas
😭😭😭😭
me when i am in a lying about my skills competition and my opponent is aikoyori
I sneezed
im trying to reach this number in 1 run
you wont
you cant
i ran out of ideas
oh
make more
I think the entire point was not being able to hit that
the game crashes before you can get close to it
hot potato doesn't allow cross mod right now
Oh
i forgot what # tbf
I'm in a team but I'm kinda useless
what is hot potato
Game
how do i update lovely? i need a newer version for the utdr mod
basically people gather in teams and work on 1 mod and pass it over to the next team
that sounds cool
wanna bet
extract the version.dll in the local files of balatro
Yea, twenty bucks
polterworx isnt here anymore, you cant
bet
aikoyori's shenanigans is here tho
Go ahead
pffff
That’s not near your goal at all
splash is here
you will need more than one ^ buddy
you need at least 2 ^
yeah i dont think i can possibly convey how far away you are
I can
You are closer to the sun in steps
if you were to pull out your small intestines and compare them to the length you had to crawl to get to your destination, you would die
I wish you said this sooner, I’ve already pulled them out

ok let me make you understand.
you right now have chips × mult
thats not enough
you can have chips ^ mult
thats not enought
chips {10000} mult is not enough
The fuck does {} mean in math 😭
the real question is
can TREE(3) beat the omeganum
Still so far
its like a way to write higher operators
yeah probably
tree?
tree
🌳
We put fucking nature in math?
it's apparently a number so large that we can't measure it
but it's proven to be measurable
which is funny as fuck
Like pi?
no
"if we try to comprehend it our minds would shatter"
pi is 3.141592653589
stop being so irrational
we can comprehend that
Yea but it’s infinite
yeah but we can comprehend it
Shut up nerd
a{n}b "n" is the exponent
1{1}2 = 1 + 2
1{2}2 = 1 × 2
1{3}2 = 1 ^ 2
1{4}2 = 1 ^^ 2
etc
etc
etc
what's the first digit of TREE(3) go
yeah you're just being irrational at this point
it's still real
fractals
is that just a factorial or am i forgetting
factorial its 2!
here's a diagram
factorio the videogame??
I can’t tell if ur makijf a joke or not
2! = 2
3! = 6
4! = 24
5! = 120
You had me until 24
I added the entire known universe as a scale
5! = 5x4x3x2x1
so you can see how big it is
is this logarithmic scale
its linear and logarithmic
well i have infinite time
wanna bet
its physically impossible with the jokers you have installed
add nomansky and minecraft too
the humble scoring screen: no you don't
i also added naneinf naneinfs naneinf times
Where is it
it's there
Oh it’s there mb
it's right between the required score and their score
1ee100 is already bigger than the amount of atom in the entire universe
I am flote
chat place your bets on if i get to omeganum
I am a pear
cryptid cant get to omeganum cap
so place a bet
What
your house
you do not understand that it is impossible
"Infinity" doesnt count btw thats a bug
Is a Miku fan?
someone explained this to me a while ago i think i can explain it
twenty dollars if you reach it otherwise i donate it to The Trevor Project
it is impossible for you to get any bitches, but that doesnt stop you from trying
okay maybe not twenty but I'll donate if you don't reach it
literally false but alright
I’m a bitch and they got me
oh!
Or husband
you have a infinity, but not the right one, thats why you cant reach omeganum
We’re friends tho
omeganum is so imprecise that you physically cannot reach its limit because once you get towards the end of it, there aren't enough represented numbers for your score to increase?
someone said something like that to me
yeah thats about it
Numbers are gay
im at 2 es rn
And given the lack of countermeasures against high score, it gets boring fast
you need to go past es
you know what e means?
You need to hit the fuckin hashtag
Tag
no
#ReachingInfinity
the hashtag is from social media
Shut up liberal
😭😭😭😭😭
I just really wanted to say this
otherwise it would be a hashtagtag
If you want cheap hashtags, then play morefluff, use a couple of retriggers and hyperjimbo/hypercam
tf? explain less
Stop, I’m literally a cat and ur bulling me
damn ....
i would bully any creature regardless of its social credit score
sounds like you come from reddit
im sorry for your loss
i went on reddit to post a pixel on r/place but then i found out people were getting fucking doxxed for placing pixels on shit
so i deleted my account and never went back
Jokes on y’all, I pay for Balatro VIP
what the apple arcade
what the capitalism
what the apple arcade
No it’s DLC, trust
JAJAJA
happend to my friend xd
Apparently its literally the same as mobile balatro
i didn't place a pixel
Thanks for explaining the joke to me, I will take that into consideration
modding chat has a very
different energy
to modding dev
i guess it makes sense but i don't come here super often
modding chat is basically off topic 2 at times
I got called a slur on Roblox once
im sorry for your loss
yeah you shouldnt be playing roblox
"at times"?
at times can be all times
"modding"?
But… I like being silly…
Often why I do not play most multiplayer games
Chris Hanson wants to know your number
I don’t play anymore, it was like a year ago
I dont get called such but seeing those is demoralizing
modding chat is where all the cool awesome modders go to grovel about how bad their mods are and i feel like these people are actually people and not some far off mystical deity who makes the things i could only dream of making
that excludes the roaring fraud
I’m pretending you said something I understood
Wow, awesome!
rory nite :3
play my mod its bad
@cedar plinth i don't think you are reaching the limit
play Autumn's mod its plaid
@cedar plinth still here?
modding chat is where i come to see how many blocked messages there are and see autumn doing cool cross mod
I sneezed
@cedar plinth barbecue bacon burger
how many blocked messages you up to now, N
Me checking ur profile to check if I’m blocked /j
how many persons do you have muted right now?
I'm so sorry
does anyne know if theres a guide to be able to make my own texture pack for some cards ideally compatible with malverk
i dont like saying it while there might be blocked or ignored people in chat
so true did you see my eyes suit deckskin
yes it's very nice
what are they gonna do
complain?
i think it's a bit mean
I stopped blocking people bcs I realized it doesn't matter
It doesn't immediately kill them so why bother /j
thats fair. how many cross mods has autumn done since you last looked into chat then
I'll still not a skin walker
100
send photo of your bloqued
thats a lotta cross mods
i havent devved today i was eepy 😭
I block people and I actually genuinely block people because most people don't follow through when they say they will block someone
I literally haven't blocked anyone anywhere
Yeah the only "upper-echelon" (the really smart) people who frequent here are Aiko and Autumn, others check in every once in awhile
I'M NOT THAT SMART
im sorry but this one is funny
hello eepy, im dad
you're my real dad shut up
guards kill this person thank you
YOU ARE DAMN IT
N… am I ignored…
no
god for some reason i thought the white of that flag was pink and immediately mentally tagged minininlla as trans before my vision autocorrected
you were for a bit
Geronimo Stilton
No, they are Aiko
no youre flote
Hi yes, that’s my pfp
am i ignored...
guards kill both of them
trans would be cool, argentinian is evil
of course not
Hi N
me?
would a trans argentinian cancel out or is it like one overpowers the other

