#⚙・modding-general
1 messages · Page 278 of 1
What does this mean
I'm changing it so that
played cards will be permanently selected
if drawn
Ah, so like this:
Hold on I’ll need a minute to find the video haha
Wish Cryptid planet cards had a shot for showing up in place of the vanilla cards (So, Pata can show up for a played flush 5, for instance)
Wdym, uhhhh?
how it feels to buff Splash
a deck that makes Splash permanent Seltzer 
not to mention you can get multiple copies of it without Showman
trance theme?
1 FPS
Code
lavender loop
thanks aiko
new charger will arrive in 3 days
how am i supposed to play Jen's Almanac now

what does the deck actually do
apply Splash
retrigger all played cards once for each additional Splash owned
allow Splash clones to appear (without the need of showman)
wet deck
it's call tsaunami (tsunami + sau)
bro
Finally got the abduction system working! Now only to get any silly notions of spicing it up with shaders out of my skull
Is there a way to revert a game back to the start of a blind? Or even go back just one hand lol
Cryptid has a code card
Who greenlighted this? 😭
And that's two upgrades to the antimatter deck!
cryptid my beloved
OH SHIT
WHEN DID I PUT THE SPEED TO 123
😭
turns out steammodded was instaled twice
[Ortalab for Deck + CardSleeve for Sleeve] The (nearly) impossible deck
It have a deck size of 0, shown in bottom right corner
-# why are you running a mult card deck
-# why not
-# you fucking bastard, you are cool :3
[Ortalab + CardSleeve] Royal + Erratic
its actually pretty good, honestly
as long as you can get the uhh play face card = mult joker early
for the 8x arcana pack
quadruple tag + voucher
is there a mod that lets you see the seed when starting
oops all strength
a lot of unique options here
oh, when a pack has nothing else to uhh, show
all of that is strength
then it chooses a random card and duplicates that until all the slots are filled
im pretty sure
oh
oops all king
im scarred of the fact that it needs to calculate my score
welp
is there a mod that lets you see the seed when starting
After started?
i mean before the game ends like normally
It shows seed on escape menu
During run
thx
I hate love this game (The entire deck)
is there any mod for analyzing seeds?
you can probably find yours in here
Balatro fan site
(repost)
anyone here have expertise with linux?
what program would i use to replace the assets of balatro.exe? theres no graphical version of 7zip to do it on as instructed
cryptid experience emulator
what distro
Download PeaZip for Linux x86_64, 7Z, BR, RAR, TAR, ZST, ZIP software. Free archive manager application, Open Source WinRar WinZip alternative.
idek what the fuck
tysm 🙏 will test later
goodluck
modding in linux is ass
windows ftw
its basically the same?
linux just has proton

he killed my wife
this is why I'm a diehard fan of binbows
Can the mobile version be modded or only the steam one?
only the steam one, other platforms can't and really shouldn't be modded (as per the rules for these chats)
The fact that Linux is entirely developer-oriented makes this statement completely false but go off with your bloat ware I guess 😂
Ew OS discourse 
Pointer suggestions?
Is there a reference to all of the different possible values of context? I'm trying to do something at the conclusion of the scoring animation
that would likely be context.after you are looking for
@wraith seal after is having the desired effect, but it isn't rendering as desired. I'm trying to implement this: https://www.reddit.com/r/balatro/comments/1insn7s/joker_concept_dunce/ - I am setting next_joker:set_debuff(false) after scoring. If I don't do this, it crosses out the Joker, which makes it a little clearer that it's been debuffed. When I add this, the Joker is debuffed, only for this turn, but it doesn't render the cross out
White Hole
i didnt mean to start anything lmfao
😭
White Hole, Perkeo, Neutron Star
...hm, thats odd, set_debuff should auto add the cross on the joker if my memory serves me right
maybe try using this instead of set_debuff?
It does, but putting the set_debuff back to false in the after event removes it.
I think that's for cards, not Jokers
oh, so what you want to do is still keeping the cross even when the joker's debuff is removed?
No, I'd like the cross to be removed as soon as the scoring animation concludes, but not beforehand
Here's my full code block. I might be missing something else. This is my first time modding
`SMODS.Joker {
key = 'dunce',
loc_txt = {
name = 'Dunce',
text = {
"Copies the ability of the rightmost Joker and disables Joker to the right. By u/Spicy_burritos"
}
},
rarity = 2, -- Uncommon
atlas = 'ModdedVanilla',
pos = { x = 0, y = 0 },
cost = 4,
calculate = function(self, card, context)
if context.before then
for i = 1, #G.jokers.cards do
if G.jokers.cards[i] == card then
next_i = i + 1
if i + 1 <= #G.jokers.cards then
next_joker = G.jokers.cards[next_i]
next_joker:set_debuff(true)
end
end
end
end
if context.after then
next_joker:set_debuff(false)
end
local last_joker = G.jokers.cards[#G.jokers.cards]
if last_joker and last_joker ~= self then
context.blueprint = (context.blueprint and (context.blueprint + 1)) or 1
context.blueprint_card = context.blueprint_card or self
if context.blueprint > #G.jokers.cards + 1 then return end
local last_joker_ret = last_joker:calculate_joker(context)
if last_joker_ret then
return last_joker_ret
end
end
end
}`
ohhhhh, i think i know what you mean now
so basically, you want the disabled joker to only have the cross during the scoring so that players know its debuffed, but the cross is removed outside of that right?
Exactly
Might wanna shift gears to #💻・modding-dev for this
SMODS.Joker {
key = 'dunce',
loc_txt = {
name = 'Dunce',
text = {
"Copies the ability of the rightmost Joker and disables Joker to the right. By u/Spicy_burritos"
}
},
rarity = 2, -- Uncommon
atlas = 'ModdedVanilla',
pos = { x = 0, y = 0 },
cost = 4,
calculate = function(self, card, context)
if context.before then
for i = 1, #G.jokers.cards do
if G.jokers.cards[i] == card then
local next_i = i + 1
if next_i <= #G.jokers.cards then
next_joker = G.jokers.cards[next_i]
next_joker:set_debuff(true)
card.ability.extra["debuffed_card"] = next_joker
end
end
end
end
if context.after and card.ability.extra["debuffed_card"] then
card.ability.extra["debuffed_card"]:set_debuff(false)
end
local last_joker = G.jokers.cards[#G.jokers.cards]
if last_joker and last_joker ~= self then
context.blueprint = (context.blueprint and (context.blueprint + 1)) or 1
context.blueprint_card = context.blueprint_card or self
if context.blueprint > #G.jokers.cards + 1 then return end
local last_joker_ret = last_joker:calculate_joker(context)
if last_joker_ret then
return last_joker_ret
end
end
end
}
i think this should work?
the reason why i think this didnt work is that you didnt declare next_joker as anything
@exotic belfry What's the purpose for each of those channels?
so the game doesnt know what card you are referring to
#⚙・modding-general is primarily for general, but for modded balatro
#💻・modding-dev is primarily for coding
Sounds good. The above snippet doesn't work. Let me ping you on the other channel. Thanks!
love me some bloated spyware
waiter waiter, i need more
I'm dead
Rip aiko
Hi everyone! This has probably been asked before but I'm new here -- I'm currently trying to download mods for the first time, and I'm having a hard time locating version.dll in Lovely-Injector; where exactly is it? Thanks!
balatro crashing with cryptid + hidden aces
thx
i believe it was when you download lovely just open the zip and should be there
@wraith seal
fixed loc vars
Okay I will ask this once and for all: is there any way to inspect code-wise that whether a mod is talisman-compatible or not
127 fps?????????
What do you mean code-wise? As its own mod or just a separate script?
Like looking at the code, do something like Ctrl+H to_big or something else
Yadi yadi yada
Yeah I imagine a script that looks at all the values Talisman turns into tables (like dollars, hand levels, etc) and checks if they're wrapped by to_big should be feasible
The only edge cases would be mods reassigning those variables to other local ones with different names but I don't think it's that common
pretty shader...
Seems like a good idea
Though is there a list of to_bigable values?
:3
about to go to bed lol
photochad enjoyers when the lemmy boss blind walks in:
oh this is what they meant
If someone guesses every joker I have in this screen shot I’ll give them $20
you cant see like half of them lol
[also r+y pfp based alert]
That’s the point
If you can correctly guess all the jokers just by the negitive spine that’s impressive
Mmmm e48
Mmmm broke cryptid
um i don't think that's supposed to be there
My cryptid score is so high I can take a shower during the scoring
Like a 5-10min shower lol
easy game
Mmmm e110 mult
I would ask someone mathisfun or someone in the cryptid discord maybe
good idea or nah
no this is fire
this is so good, what 😭
wait how do debuffs work in your mod?
for builds which dont rely on playing cards at all (jokers with base mult + xmult), this is like finding the golden scar lmfao
you play a certain amount of rounds with them and then they give a reward
ahhhh i see
doesnt that count as a challenge more, if anything
debuffs usually dont give you buffs lol
i thought this would be like actual friends vs. friends and you'd debuff your enemy with this
silly, only in my mod can you debuff cards :3
well, I considered that
but just making everything suck isn't very fun
do you have a github for this mod so i can ogle at all the cards
Bring the chaos of Friends Vs Friends to Balatro. Contribute to rae-vyn/FriendsVsBalatro development by creating an account on GitHub.
turning balatro into a turn-based rpg game, brick by brick ✊
I'm going to make another release in like an hour, so be ready 
me trying to make balatro paper mario color splash battles
my original plans also had jokers with levels too lmfao 😭
but its definitely too much to handle
ah yes, because gacha mechanics and rpg stats aren't /j
no but at least its just a one-time management thing
for levels, you have to take note of all of your jokers' xp too
for example: I had a debuff that removes -5 chips from each card every time it was scored
but if that's all that happened, you'd just end up with a bunch of cards giving low (or negative) chips
no reward would just be mean 😭
cant there be a joker thats really good but gives a debuff card in exchange though
honestly could be fun, technically pokermon has an xp system but it's less so actual xp and more so jokers just evolve after a certain point
not when there are other mechanics to be wary of, like speed tuning (making sure your jokers' excess action value is such a number that its retriggers will be at the same time it will receieve all the good buffs), ultimate tuning (ultimates have cooldown and automatically used when all the conditions are met, so thats another factor)
my mod really rewards players for thinking ahead :3
got modding working on mobile without jailbreaking 🎉🎉
-# please dont discuss about that here, thats against rule 4, but thats cool :D
good but don't discuss it here
also wondering if i should make it so that when you enter a blind paper mario's battle music starts playing
and you can choose which theme you wanna play or have it off as well
yeah, you can do that
Battle Theme Paper Mario The Thousand Year Door (TTYD) Music Extended.
Subscribe to my friend's Youtube channel for similar content. https://www.youtube.com/channel/UCpD1G_iLwtHVGvVhE7-izsw
Have a request? Comment down below.
Developer(s) Intelligent Systems
Publisher(s) Nintendo
Director(s) Ryota Kawade
Producer(s) Shigeru Miyamoto
Ryou...
always gotta have peak playing in the background
OH FUCK YOU
ok seriously i love pokermon
its such a great mod, and suprisingly balanced.
also i saw some small easter eggs that fulfill my nerd heart 😄
world's most useless
new boss blind idea
damn
Hey is there a program that makes programming a mod for balatro easier?
Seeing the same rn
Helllo
What like an IDE?
Probably
nvm i think discord tripping
it stopped tripping
i want to get mods for balatro, but are they safe and how do i get them?
mods for balatro are 100% safe as long as you download them from the github they originated in. You can find a bunch of mods in #1209506514763522108 , where people show off their cool creations and (probably) link a github page where you can download the mods from!
okay thank you!
i wouldn't say 100% safe
woah woah woah
most mods are safe as long as you download them from the github they originate from
like 99.9%
impostor card
What about a blank white card that’s just always debuffed
oh you mean
Yeah but instead of the red xs all over it’s just blank and debuffed
So it’s consistent with game
oh you mean the debuff seal
oh you mean null card
Does anyone know what the cat tag does?
I got it to level 4
But nothing really happened
it meows
Where was that seal from?
my mod?
I wasn’t sure
I want to make a partial debuff but I’m not sure what’s the best way to do it
Although I do know there’s a mod-wise debuff function
Partial as in
Part of the time
whew close
what does the blank deck do on cryptid
nothing
its just the deck you play to unlock the antimatter deck iirc
i c
ello chat
does anyone have the old steammodded you need for the cryptid mod
i can’t find it anywhere
oh sweet
old calc is dead
does anyone know what is the effect of Revert from Cryptid
anyone from Great Britain?
Bro got an entire PLANE
what the most caotic mod?
This is bad advice, mods are executable code and shouldn't be inherently trusted at all. But if you found it here and it has an active forum page and community it's likely fine.
Bad actors are out there and nearly every modding community has at least a few examples of malware in mods
i trust all links all the time, send me some links to click
correction: ^
also yes generally you should exercise caution when downloading mods (and internet files in general) but most of the time people arent going to bother and mods from the balatro community generally wont have that kind of stuff because a lot of the reason balatro is moddable in the first place is because of the trust the dev has in the community, and no self respecting community modder would want to break that trust
is there a reason i cant install lovley on my computer?
are you on linux or mac or windows
Anyone can help me?
i asked for help first mf😹
Oh, try disable the antivirus and whitelist the lovely.dll
Sorry, asking in this place is really gamble. I solved my problem but I wonder why.
can anyone walk me through how to actually install crytpid. I feel like a smooth brain cause it just doesnt work for me
when you have fifty million jokers ye
do you have both smods and talisman downloaded?
probably a loading error on cryptids end, but i dont know that much about the ins and outs of cryptid lul
I solved it by removing some vanilla jokers mentioned in the error line, but one of the folk from Cryptid say some of my mods are probably outdated. I suspect it's because my mods stew itself.
yes does talisman just go in the mods folder?
yep
yes, rename it to Talisman and remove the "-main"
same with smods?
I think smods is fine, iirc make sure Cryptid folder also named Cryptid only.
I feel like an idiot lmfao, lovely was installed as well, removed it and bingo it works now
sometimes double checking things does wonders. Now to absolutely fry my pc
nevermind i fixed it
you have to rename balatro.exe into balatro.zip then edit it
its uh
weird
what mod can disable scoring animations for cryptid
talisman!
just point a gun at it and tell it to work, should be fine then.
wait how
check the mod settings
appreciate it
game with any mods crashes after playing a hand sometimes - crashlog says something about "pitch has to be non zero finite positive number"
anyone know anything abt this?
update smods
can you send me the latest version? i swear i donwloaded the latest from github
im just using the one provided in the cryptid mod folder
but using the one from the github crashes too
How do i change the joker card slot amount
hi
idk
All i know i saw it in a vid
its still going
Guys, the game has been calculating for an hour...
were now on the joker part
Does Balatro require a high spec?
not really
Does anyone know a good guide or thing to download to start modding?
these are the minmum specs for balatro according to steam
I'm actually referring to this 🤣
Start with the core steammoded and lovely I guess
ive been at this for over an hour on 128 speed
its not even adding to mult
Can you record video? I want to see
yeah
do you guys know if there a way to prevent game progress/steam achievements while mods are active
thoughts on vouchers that impact scoring? like, something like "your common jokers give x1.1 mult" or such
I think I will just disable scoring anim if I ever get to that point 😭
nevermind
if you create a new profile and do unlock all it disables achievements for it
kind of a weird work around solution but it works
huh
any mods that people think are a must have?
Balatro goes kino, and no others, really
But it'll really depend on what you're looking for. Content mods, vanilla-esque, broken high score mods, or just QoL stuff. For vanilla, Extra Credit and Paperback are my favourites
FINALLY ITS DONE
i think i need some more qualitty of life stuff but im just annoyed that saturan is broken
Galdur and Malverk are good QOL
do you think you could drop a link to them
me when glitched deck
not as good as 6x oil lamps stacked on a universe card
Havent tried Malverk, will check tomorrow.
too goated
does the cat tag do anything in cryptid or is it just a fun thing
i nearly have a level 9 one
Does anyone know the mod roffle uses that adds those higher tier jokers its like the everything is broken mod but I don’t know the name
Cryptid?
I’m not sure that might be what it is called
read the first sentence in the error message, find your mod, track down why its giving a null value
Okay
I think Mika's Mod Collection is severely outdated
just a meowing
So. Weird question, not sure where to ask properly. I'm trying to run this on Linux with Love naively, but I'm getting the below error:
attempt to index nil field 'platform'
I looked at the code, its the field platform inside the love global, I cannot find any documentation online about such a table existing
doesnt run natively iirc
https://steamcommunity.com/sharedfiles/filedetails/?id=3220403989
Granted, this is from almost a year ago
hey, any chance I could get some help at least figuring out what's causing/why my game's crash? Game loads up fine, but crashes on resuming a run.
Even weirder still, I can't find functions called from in the game love.platform in Love's source code
- (Handy)[https://discord.com/channels/1116389027176787968/1270746376312979456]
- (Galdur)[https://discord.com/channels/1116389027176787968/1270516504470880357]
- (JokerDisplay)[https://discord.com/channels/1116389027176787968/1241580123766128761] OPTIONAL
- (NextAntePreview)[https://discord.com/channels/1116389027176787968/1348357294383038484]
- (Incantation)[https://discord.com/channels/1116389027176787968/1248924034716930100]
Hmm, seems worth it?
There is another mod called Nopeus, which is located in here https://github.com/jenwalter666/JensBalatroCollection/tree/main
That should be all, the rest you can explore
FYI, Steamodded config has an option to disable achievements
why is mine optional
joyousspring mentioned!!
this isn't the first time you've noticed me running with joyousspring, nor will it likely be the last lmao
mod is still goated and very funny to me
❤️
i specifically made sure to not hard code any values so cryptid could change all of them and they work
if its unbalanced also what ideas could make it better?
same
maybe people wanted their UI to be clean
which is NO OFFENSE, your mod is great, the reason i dont use it is because clutter
especially with betmma's mod
maybe people like the default deck look and galdur is not optional 😦
(im joking btw)
noooo,,,,,,,,
i mean, FAIR
but who doesn't want a good animation of a card shuffling when you select it
i like your mod btw:(
Joyous Spring is fun. Makes me want someone to make a Cardfight! Vanguard Mod
DUDE
I WAS JOKING
Meawhile
Can I make the mod brainstorm search for perkeo in the skip tag and blueprint in the first shop or something similar?
can you send the crash log?
you could try
well
if this is actually just a thing thats happening with everything im gonna have to work it out
i dont know why my theme is inconsistent
ok
why does some mult displays use the mult color but others use the red color
💀
this happens with xmult too
trance theme?
yeah
i at least figured out it was what was happening
now misprint doesnt look strange
means my menus are a bit stranger though
oh now this looks worse too
lol
ill just choose the lighter red i was using before i suppose
glad you implemented this
im tired of middle clicking every jokers 😭
You suppose to hold middle click and hover cards you want to sell
doesn't work for me somehow, i have to hover over and over
guys why is it so wide
big blind
no idea either
"guys modded balatro isn't that broken"
modded balatro:
nobody ever says that though
tbh I just had a funny set of jokers and that was the best punchline I could think of
fair enough
you dont say
what zip apps have you tried so far
hey yall, whats a good mod thats more balanced than cryptid?
more leaning towards vanilla esque?
the one you told me about
i ended up getting it to work though following a solution from reddit
not exactly, more like one where i wont consistently be able to get to ante 20 just playing pairs without thinking
oh that's good to hear then, how was it
get CruelBlinds and BlindEditions
-# also play harder deck
i did that with red deck
try black deck with fair sleeve
also looking up cruel blinds gives like zero results
hold
also try beating the fuck you deck at https://discord.com/channels/1116389027176787968/1344877887982931968
maybe, sounds kinda boring
fair enough
yeah and that combo is already boring me
i had to rename balatro.exe to a .zip
then modify it
and then rename it back to .exe
you could find some challenges mod
i was trying to find a mod other than cryptid but ig its the only content mod
whats the mod that lets you drag to click cards again
base score already one-shot 
its handy right
other content mod are either vanilla esque or pandemonium
yes
uhhh how do i enable it
you can try these
- UnStable
- Ortalab
- ExtraCredit
- NeatoJokers
- Handsome Devil
should be in Overall or Interaction settings
so you hold right click
away from.your card
and start dragging
you can also try Mistigris hehehehe wink wink I'm bad at promotion
silly number
uh, now that I think about it, are there any number caps I should be worried about?
also try Mistigris and Balatro Goes Kino
nah
if you have talisman, you're good
lets go :dab:
heads up: cryptid conflicts with a lot of mods
so you should probably avoid using it if you wanna try the other popular mods
isn't that a lot better now? I thought the most recent update helped.
Hell, my mod list is using a handful of pretty popular ones, and the only issue I've had was unrelated to cryptid
maybe? i dont actually use cryptid
but if its fixed then thats pretty nice
nah not really now
i got 1k jokers, with Cryptid installed
it's crash free*
follow up question, is there a new ante cap? Or an effective cap like naneinf?
under talisman, I mean
i dont think there's any caps on ante
lol
gotcha, so this is quite literally until I get bored
or it crashes, whichever comes first
the only limit is your hardware
what changes should I make to Benign Joker?
Only retrigger once, after that no more
like per hand
Heyo
hi
What does the cat tag do?
so it adds a Nine, and it retriggers the first played 9 of every hand
nothing
yes
Seriously?
or last hand
it just meows
Damn
I leveled that thing up to level 4
who doesn't want a cat tag
also give these a shot
- Bunco
- Plantain
- Paperback
- Buffoonery
RIGHT, PauperDeck and Paperback
i was wondering what did i miss
does ortalab need talisman to work? (i hope the answer is no)
why would you want it to be no
because i heard talisman breaks a lot of crap
so i'd rather just not bother with talisman at all
I mean, afaik it just breaks the number cap. I haven't really had any issues with it
that's, not true
atleast in my knowledge
well idk i just see a lot of people having compatablity issues with talisman so i don't want to deal with that
probably version wise
it's not a big deal overall
but you could try installing ortalab without talisman
back to my question: does ortalab require talisman
try, i don't think so
break the rules
ever drawn three sets of pairs instead of a full house?
nope :3
in any case thisll actually let you do something about it
oh thats interesting
you can by default play six card straights
like itll play all six cards and everything
just got an answer from the ortalab discord. talisman is not required 👍
nine eleven
very weird seeing this
The Second Tower
Retrigger all played 9s and Aces
that's FUCKED
0 cards in the deck 💀
and I'm assuming this is plasma because of the doubled blind scores
yep
Oh it’s that challenge
Hey wheres a good guide to help me start modding on Balatro?
i posted this in the channel but i also figured id ask here just in case its a regular one
is it possible to mod balatro if on steam
yes
this is how to get started
ive been here for 3 hours
uh oh
this isn't too many jokers is it?
@plush hound
guess not
after i discover the final 2 (modded) spectral cards, i'll throw handsome devils into the mix
There's not enough jokers so I put jokers in your jokers
Show what they do
you want me to show every single joker? (excluding the vanilla ones of course)
YES
no
you can't make me
Please? 🥺
Whoa, handsome devils...?
I do wish you could sort Discord Post™️ posts by like. total activity/follows/whatever.
That'd be neat
It would! Then I wouldn't feel like an ass when I'm all "hey what mod do you think I should play next" to a room mostly fulla people who make the dang things.
i wish there were better ways to advertise mods, cause right now I'm just bumping my post in #1209506514763522108 over and over again and hoping people see it 😭
Kinda real
It's lowkey half the reason why I added Maximus to BMM despite the traffic from it probably being minimal
honestly same
Do you guys wanna see something cool
Gah DAMN dude
:D
I'm crying
crying resumes tomorrow
is this a balanced Joker?
2
4
I'm gonna bump every mods if i could
It was for my mod, doesn't do anything yet, it's just UI practice
It's a neat concept! The sound design feels a little... Long? That's a personal thing tho. That's some intense and beautiful work, whatever way ya cut it!
undoubtedly my proudest creation
Is that like the uhh, cryptid decks where you choose one, or is it locked to ten of spades? Curious if there's a reason you went ten of spades specifically.
it's a custom deck that I made for Mistigris
and it's 10 of Spades as a tribute to that one bugged Erratic Deck seed
is it that one glitched erratic deck?
I KNEW IT
deck art when
¯_(ツ)_/¯
Ah! I was aware the All 1 Card erratic deck seed existed but I wasn't sure if there was more than one, this makes MUCH more sense!
Could take the Erratic deck art and chop it up slightly.
shape it into an ace of spades
Am I cooking at all
I don't think it's Gordon Ramsey but I think it's good cookin'.
1 hand only, 0 discards only, +12 hand size, decreases by 1 every round until it’s back to normal size
butter dog
four fingers in this deck would be godly
butter on a dog
a butter dog
butta dog
free bobux here !!1 (no clikbeit): https://youtu.be/dV5SSb17ggA
Anybody else's mouse cursor just disappear randomly within a run?
are you in full screen?
I was in borderless, it happened, then switched to fullscreen, and it happened again
are you using any recording software?
Lotta good ideas in here if you wanna pull from those.
Balatro doesn't play nicely with screen captures for some odd reason
how have i not crashed???
probably because you dont have 70 jokers
I keep crashing though
Only after playing a single high card
its still going im at 900 seconds
oh
bruh im at almost 6 mil for money and e 5k
does anyone know how the talisman mod works? I was playing a super high score seeded run and was scoring upwards of e2700 but at some point it stopped showing my score and all my hands score infinity x infinity?? then i went to the config to increase the score limit to omeganum so that i can actually see my score, but for some reason when it's set to the highest score limit i don't have an option to "continue" on my profile (as in the save isnt even showing up). But when i go back to the lower scoring limit (bignum) it shows me my save again, but my hands still score as infinity x infinity
example of what i mean
dunno
omeganum saves arent compatible with bignum saves
is there any way to migrate it to make it compatible?
nope
aww that's such a shame
thanks for helping out though
HOW LONG DOES THIS GO FOR????
looking for thoughts and feedback on these blinds, also still trying to figure out what the empty ones should be
ah wait that's meant to say "finisher blinds", not boss blinds. these are all boss blinds
hey how do you get the speedup mod now? I can't seem to find the steamodded example mods
im getting constant crashes with cryptid, no matter what i do. sometimes it happens when i try to cash out, sometimes it happens when i get a joker or consumable
it gives different errors everytime if anyone can help
the cryptid discord might be able to provide more help with that
oh i honestly had no idea there waas a cryptid discord tbh
i just started modding balatro today lolz
and/or making issues for said crashes on the cryptid github (assuming it's not related to compat with other non-cryptid mods)
cryptid comes with steam modded i think i had to deleate that fo rit to load up for me or somthing
when i tried to boot it up without steammodded it would insta crash
steammodded is like, the foundation that makes most mods work
I think they're saying they deleted the Steamodded that Cryptid comes with, not going without steamodded
yeah now it says everytime it crashes "attemp to compare number with table"
as it the one it comes with
yeah or i deleated the one it didn't come with one of the two
okay yeah the one that comes with cryptid is gonna be the correct one
it can go on for days
oh god its still going
how much longer am i going to wait
im almost 50 mins in already
i did install sm that came with cryptid and got rid of the other one i downloaded but i just keep having issues with the mod rip
nope
are you writing in vim wtf
notepad++
i mean i have other mods installed, but not active while playing cryptid
but i also havent had any issues with other mods
i'd go ask about it in the cryptid server, someone there can probably help you
is it up to date
post crash log lad
try moving them to a different folder and reinstalling cryptid and if that doesn't work deleate the steam modded in there and get the newest one
crash log will make reporting easier
it's apparently the package that has cryptid, smods, and talisman all bundled together, I don't know if they made a new package like that for recent versions, but regardless it's odd that it crashes so often if everything should be compatible, regardless of how up to date it is
should i just send it here? its kinda long
yes
Is there a way to get multiple Exotics on Cryptid without DOE?
antimatter deck i know for sure
Isn't anitmatter the one which combines everything? That would be equivalent to the deck of equilibirum (DOE) which I mentioned before
oh probably
how?
compare number with table sounds like talisman compat issues.. which is odd for a mod built on talisman?
hypothetically...
- wormhole deck
- get Lock, make your first exotic eternal
- find Gateway, obtain second exotic
i'm also getting this error whenever i try to to use talisman's omeganum even if it's the only mod loaded
huh, so talisman is busted then
i tried downgrading to smod alpha, and using the new beta, but doesnt work regardless
probably a better idea to just not use omeganum until that's fixed
yeah fair
oh its that the omega num setting?
unfortunately i dont think there's another mod that really disables the score limit
yes
yeah thats what ive had it on the whole time
huh, sounds like omeganum is just broken on the version of talisman shipped with cryptid
ill try bignum and see if something happens
to be fair, this is the screen that my game kept crashing on lol
antimatter deck is kinda funny
oh yeah, it's on Cryptid's disco server FAQ
"...and 2 more" lmao
hold
never seen that
i cant seem to join the discord for cryptid
i pasted the url and it said it didnt work and i tried finding links for it and none of them worked either
try setting it to omeganum
its been at omeganum
no, omeganum is currently the one that's broken, which appears to be a recent thing
huh
cryptid faq has not been updated in a while, but where it does say to switch to omeganum, it's specifically referring to jens almanac which is separate from cryptid
you literally can't run Jen's Almanac without it
well, from his crash logs
it seems that he's also running Jen's Almanac
these are the only 3 smods mods
oh shit im tweaking what
might've read jenwalter and mistook it for jens almanac
that probably
i swear i never had that error before
talisman working fine for me
you could ask for help in their server
they might know better
you can have this if you want it
you need more to it like +1 level if beaten in 1 hand or osmthing
what yall think about
[Joker name]
Uncommon
if first hand of round has five scoring cards, destroy the lowest ranking one
this is still open, by the way
I feel like this’d be a rare card, no?
Nah, it doesn't have any inherently positive effects
If it came with extra mult for the destroyed card or gained chips equal to 2x the card's chip value, sure, but it doesn't, it's just a deck cleanup tool
You'd need an edition to make it worth your while to keep in the long run, as five-card hands are more encouraged and it's important to have all the cards you need for those hands.
Also, overuse of the joker could lead to an eventual game over due to running out of cards, if you're not careful to keep up with restocking your deck.
The drawbacks and limitations are significant enough to justify an Uncommon rating.
-# if you hadn't picked up on it, I put entirely too much careful and detailed thought into things like this
art for it? you could it needle?
idrc if u use the art it took me like 5 min to draw lol
is there a way to disable steamodded without uninstalling it
😲 yes!!!!!!
What about a deck with 3 joker slots but all joker values are doubled?
Each joker then becomes crucially important
Maybe as well every four big blinds /12 rounds, make one joker of your choice negative / receive an ectoplasm
In your mods folder, you can make a folder with a name that lovely will see and bypass
I can't remember what specifically you have to name it, ask someone who knows
Essentially yes.
I might actually try to make this idea bc I’ve been meaning to make a mod for balatro
hey, my game keeps crashing when i try and press play with the galdur ui mod
even when none of my mods are activated it won’t work
crash log?
i’m not familiar enough with coding to want to send it, idk what kinda info there is. but the issue arises from trying to “index global ‘Galdur’ [a nil value]”
you can copy the crashlog
Ctrl + C
also a flush five would win anyway
nope. it won’t let me.
wdym it wont let me
screenshot it
as i said before, i am not experienced enough with coding to feel comfortable sending a screenshot
this is the error message.
well, we can't surely know what caused it without the crashlog
people usually post the crashlog here
i am telling you what caused it
the crash logs are designed to be shareable and provide a lot of useful infromation for debuigging crashes
Things to look for
- Steamodded version
- Lovely version
- crash cause
- stack traceback to the error (now that part is a bit tricky but even my inexperienced ass can look into that and see "oh, the crash happened here, and past that is the game trying to cope")
^ ur not givin anything particularly sensitive when you do share
Noticed that Balatro University has a mod that shows how many times a Joker has done something for you (money rebate has made you, how many dupes Perkeo has made, how many sixes that Sixth Sense has destroyed). Does anyone know what mod does that?
WE GOT MY ISSUE FIXED
JokerDisplay?
there you go
That displays what a Joker will do, whatever mod this is displays what the Joker has already done for you. It's appended to the Joker description instead of getting its own bubble too.
chat
what if
i want to clean
but i
uh
unplayed suits are debuffed
Velvet Vapour
a pair to Razzle Raindrop
soo i think its time to alt f4
no
Uhhhhhhhhhhhhhhhhhhhhhhh...
joker sandwich
@lilac rapids pls do not idea
Luminous Lake is interesting
@hard plank Is your mod on the hub?
Mistake
But I had said “Cloud’s wording is a bit funky”
Either “Enhanced cards are debuffed” or “Played Enhanced cards are debuffed”
Cards with enhancements already played are debuffed
So “Played Enhancements are debuffed”?
yeah
Vapour is the opposite of Raindrop
Raindrop removes debuffs from played Ranks?
Interesting concept 🤔
Suit
yeah i understand
By the way
...jesus christ
How did you implement the Debuff Seal?
I tried to find it in the GitHub but I couldn’t
It’s alright
it's in stickers btw
The code that makes it work too?
oh
Or is it in a patch/hook?
I was going for "RATS", but sure
yeah i think
What is this green mult?
Tranced
I need to lose a hand
How fitting that I'm using the vinesauce mod and I get to spell SAUCE
...now I just need to spell out VINE
@hard plank Feel free to use my stupidity for an achievement. Idgaf if it's not a valid scrabble word
Yes
this part is not done
Eh, it was fun
im sorry
Nah, I meant fucking up your name lmao
i've just checked previous messages and it seems mods don't work on game pass version - are they looking to allow this?
it's not like it's not allowed
just that the tooling for that version isn't ready
yeah i seen other games allow it so makes sense
just the tooling
staircase deck
2
3
2
no
Ladder Deck
Welp
what the heck is this run how was your most played hand played only 2 times
also did you just like... not reroll?
and how did you only play 15 cards
The Joke exists
bro got sent to ante 8 from 1
are those all showdown blinds
yes
wdym
i need you to correct something for me
reducing the number of discards you can have is already diabolical
BROKEN / PANDEMONIUM
-# PROCEED WITH CAUTION:
- Cryptid
- Jen's Almanac
-# Both of these are best friends actually
Quality Of Life:
- Handy
- Galdur
- Incantation
- Cartomancer
- NextAntePreview
- JokerDisplay
Content Mods:
- Ortalab
- UnStable
- Bunco (a bit unstable)
- Buffoonery
- Bakery
- Balatro Goes Kino
Honorable Mention:
- AikoyoriShenanigans
- Mistigris
- Maximus
- BRAPTRO
- Plantain
- Prism
- Opandora's Box
- GARBSHIT
- Balatro: Star Rail (WIP)
- Fennex (WIP)
- LuckyJimbos
Fun Mods
-# kinda changes the gameplay mechanic and whatnot
- HighestPriestiess
- TooManyDecks
- Hit, Blackjack Deck
- Any Deck mods overall
- Reverie
- Betmma's Mod
😭
did i miss anything
honourable mentions
oh shit victin
balatro on crack
Oh, I somehow missed that. Luminous isn’t hard enough to be a Showdown Boss Blind
your mod is b
peak
My mod isn’t F
It’s ok XP
i can bump it to 2
It’s your list
i wrote it for the people who asked for some mods
I’ll tell you to do that so I can put the original in my mod
😭😭
😈
split content
the lumine




