#⚙・modding-general

1 messages · Page 1443 of 1

chilly pine
#

base P(x) where P is a polynomial function

buoyant kestrel
#

base f where f is a function

#

not base f(x)

#

base f

chilly pine
#

base e^x

hard plank
#

do you think i could

#

add more puzzle bosses

chilly pine
#

can you add some chess bosses

#

maybe a deck

foggy fiber
#

im new how can i find balatro mods here?

wanton rapids
#

or the wiki

chilly pine
buoyant kestrel
# buoyant kestrel base f

raising a function to a power is actually defined sort of
f^n(x) means (f(x))^n but it usually isn't done with f by itself

foggy fiber
#

thanks 👍

quartz socket
buoyant kestrel
#

and of course the function is never evaluated

#

so the value of each digit are all functions

chilly pine
#

its because of trig i think

#

they didnt use the () yet

buoyant kestrel
#

and you can wonder what adding functions means

dire meadow
#
function BaseB_to_base_10(n, b)
    local result = to_big(0)
    local place = to_big(0)
    while n > 0 do
        local digit = n % to_big(10)
        result = digit * b^place
        n = n/10
        place = place+1
    end
end
#

?

#

now how do i approximate this...

chilly pine
#

so (f x)^k would be anbiguous with f(x^k)

buoyant kestrel
#

is there any defined method for adding functions like that

chilly pine
#

but we litterally have the modern function notation now and f^k(x) would be perfect for notating applying f to x k times

buoyant kestrel
#

if we can't assume parameters

chilly pine
#

to match up with the notation for it's antifunction

#

which is f^-1

buoyant kestrel
#

yeah honestly thats much more sigma

#

anyway what is f + q where f and q are both functions

chilly pine
#

just take the digit's place as the argument passed into it

buoyant kestrel
#

well actually hmm.

#

the bases are all the same function

#

instead of different ones for each digit

#

could f be treated like a variable?

chilly pine
#

f is a function vro

buoyant kestrel
chilly pine
#

do you mean algebraically manipulating it

buoyant kestrel
#

you aren't calling it its just the function

chilly pine
buoyant kestrel
#

the output is a function

#

you don't need inputs

chilly pine
#

ew

#

higher order functions :bleh:

leaden vector
#

Not exactly woke, but definitely good

buoyant kestrel
#

like you could do f + f and that would reasonably be 2f yeah

chilly pine
#

what is this, functional programming?

chilly pine
dire meadow
#

👀

buoyant kestrel
leaden vector
#

Fire

buoyant kestrel
#

perhaps there is a default value, like 0?

chilly pine
#

okay then just make it take two sets of inputs

#

ez

buoyant kestrel
#

true

dire meadow
#

guys is this base stuff

#

peak or leak

buoyant kestrel
#

this also makes for a disgusting output function

dire meadow
#
local big_ass_number = to_big(10)^1000
function Base10_to_base_less_then_10(n, b)
    if n == to_big(0) then return to_big(0) end
    b = math.floor(b)
    n = math.floor(n)
    if b > 10 then
        return BaseB_to_base_10(n, b)
    -- silly goose
    elseif b == 10 then
        return n
    end
    -- this is a VERY rough approximation of what would happen during a base conversion, only use for when /10 doesn't reduce the tailsman number or it just takes too long man...
    local approximation = math.log(10, b)
    if n >= big_ass_number and b ~= 1 then
        return n^approximation
    elseif n >= 1001 and b == 1 then
        return 10^n
    end
    n = math.floor(to_big(n))
    local result = to_big(0)
    local place = to_big(1)
    
    if b == 1 then
        for i = 1, n do
            result = result * to_big(10) + to_big(1)
        end
        goto base1_skip
    end

    while n > 0 do
        local remainder = n % to_big(b)
        result = result + remainder * place
        n = math.floor(n / to_big(b))
        place = place * to_big(10)
    end
    ::base1_skip::
    
    return to_big(result)
end
function BaseB_to_base_10(n, b)
    if n >= big_ass_number then
        return 10^(math.log(n, 10) * math.log(b, 10))
    end
    local result = to_big(0)
    local place = to_big(0)
    while n > 0 do
        local digit = n % to_big(10)
        result = result + digit * b^place
        n = math.floor(n/10)
        place = place+1
    end
    return result
end```
chilly pine
#

scalars work nicely though

#

but f + f wont necessarily result in 2f

buoyant kestrel
#

just give a new effect

#

jimbo.exe is funny in name and i don't want it to die lmao

neon urchin
#

industrial steam turbines are pretty cool

chilly pine
#

what if function plane

#

like the complex plane but for functions

buoyant kestrel
#

as in 2(f(args))

dire meadow
#

what on EARTH are you two talking about

buoyant kestrel
#

good definition

leaden vector
buoyant kestrel
dire meadow
chilly pine
#

i guess itd be simple functions that map nums to nums tho

leaden vector
chilly pine
#

wait no thats just the normal x y plane

buoyant kestrel
#

we could treat all functions as taking infinite inputs and giving infinite outputs

chilly pine
#

R^inf space

dire meadow
#

@chilly pine: so this function will increase the bumpscosity in the local area
@buoyant kestrel: fantasizing

buoyant kestrel
#

which is technically true its just most functions don't use all of them

chilly pine
#

nil in math real

buoyant kestrel
leaden vector
dire meadow
civic atlas
chilly pine
leaden vector
leaden vector
buoyant kestrel
#

using the hyperoperator recursive function

#

hmm

chilly pine
#

okay youre losing me

buoyant kestrel
#

the hyperoperator function

#

its a recursive function sequence thing that defines the operators

#

and we have H of 1

dire meadow
buoyant kestrel
#

addition

dire meadow
#

do you think that jamirror and guitar can see anyone else in the chat

dire meadow
#

you know

#

i want a joker that sums up all of the digits of a number

chilly pine
dire meadow
buoyant kestrel
#

but this won't allow us to do non-whole b until we extend it

dire meadow
#

but how do i balance it

buoyant kestrel
chilly pine
#

yes

dire meadow
#

oh my god can you two take this to dms

buoyant kestrel
#

so if you could give me a moment i could evaluate H of 2 multiplication

dire meadow
#

@buoyant kestrel @chilly pine take to to dms

chilly pine
#

why is f + p relevant though

dire meadow
#

💔

chilly pine
#

Ample Guitar M II Lite

buoyant kestrel
dire meadow
buoyant kestrel
#

if we use this existing definition

frigid mica
#

I still don’t know why trueprint from Yahimod and Chad from cryptid crash my game when they’re in the same room

neon urchin
#

k

buoyant kestrel
#

besides its likely to pick up some nice properties

frigid mica
#

Also jamirror I’m having trouble trying to inject my booster pack into the game

chilly pine
#

okay i guess

exotic belfry
#

I hope the modding community is ready to open presents on Christmas Day tr

dire meadow
#

hi lasttry

frigid mica
#

i finally finished the infinity cards

chilly pine
#

ok

frigid mica
buoyant kestrel
#

mm

chilly pine
#

how're you doing it

frigid mica
#

it's supposed to say boosters

buoyant kestrel
frigid mica
#

only 5 tho

buoyant kestrel
#

and i'm not sure theres a "functional unit"

#

there is a "functional zero" but

chilly pine
#

u(x) return x end

buoyant kestrel
chilly pine
#

u(x) return end

buoyant kestrel
#

well not really actually

wanton rapids
#

and addition

buoyant kestrel
#

i think that works as one yeah

frigid mica
#

why is silverautumn not in clams

chilly pine
#

because i dont want to

wanton rapids
#

f(x) -> x would probably be the multiplicative identity

buoyant kestrel
frigid mica
#

jamirror check #dev-help

tepid harness
buoyant kestrel
#

multiplication is being figured out lmao

wanton rapids
#

okay then zero would just be f(...) -> 0

#

or whatever zero is for the data type

chilly pine
#

hes true

buoyant kestrel
#

ordered set?

#

matrix

#

they need to add nicely

wanton rapids
#

you should make numbers also functions

buoyant kestrel
#

lambda calc

chilly pine
#

1(...) return 1 end 🔥

wanton rapids
#

yeah

chilly pine
#

oh yeah lambda calculus exists

wanton rapids
#

two would be that but f(f(x))

buoyant kestrel
#

what we're doing is similar since function outputs still exist as a concept

chilly pine
#

so f^k(x)

buoyant kestrel
#

but they're not important for the math

wanton rapids
#

yeah basically

chilly pine
#

what does this even have to do with bases anymore man

buoyant kestrel
#

function base

wanton rapids
buoyant kestrel
#

ohh

#

that leads nicely into exponents

wanton rapids
#

addition would be a bit harder to define but you can just repeat a successor

lilac brook
#

what is this

#

how 2 fix

keen knoll
#

atlas file is missing

lilac brook
#

how 2 get atlas

#

what is an atlas

hard plank
keen knoll
#

iis this your mod

hard plank
#

😌

lilac brook
keen knoll
keen knoll
#

not much you can do if the image file isnt there

#

if u really want to play the mod you can also replace it with a random image at the cost of making all the mods consumables invisible

hard plank
#

you are finally in the game

keen knoll
#

what

lilac brook
lilac brook
#

😭

quartz socket
#

Haha imagine not being in the mod

strong obsidian
quartz socket
#

It says so right there

#

Me

keen knoll
chilly pine
dire meadow
chilly pine
#

1e3ag chips goes crazy

dire meadow
# dire meadow

what do you know you don't know what it does when the sum is above 10, are you stupid?

chilly pine
#

meanie

gilded river
#

instant game winner

lilac brook
#

i downloaded the mod

dire meadow
#

in a bit

keen knoll
gilded river
#

if you get 12 mult the 12 will be turned into base 3

quartz socket
chilly pine
#

this is the base i think

gilded river
#

same with chips

lilac brook
#

LET ME OUT

#

LET ME OUT banging on door

keen knoll
lilac brook
keen knoll
chilly pine
#

@dire meadow can you add medium crossmod and not add ejank

keen knoll
#

since theres only 4

lilac brook
chilly pine
dire meadow
chilly pine
#

please dont

dire meadow
#

what don't you like about ejack

chilly pine
#

i dont like how it ulates

quartz socket
#

Ejack saved my life

#

He caught me when i fell out of a helicopter on my thirteenth birthday

ionic crystal
#

hi chat

lilac brook
#

@keen knoll hey

#

stop begging me to download your mod

#

i downloaded your mod

keen knoll
#

lol

dire meadow
#

@fair thistle

quartz socket
#

Yeah drool

dire meadow
#

no

#

9 mult = 10 mult

#

since base 9

#

also

#

bases higher then 10 are treated like

#

base b -> base 10

#

i guess

#

its kinda hard to explain

quartz socket
#

Oh the sum of all digits combined

#

Ooo

dire meadow
#

i put this on decamark since its kinda confusing

quartz socket
#

How does 9 become 10?

dire meadow
#

because

#

9 in base 9

#

is 10

quartz socket
#

Oh ok

dire meadow
#

10 would be 1111111111

quartz socket
#

0 1 2 3 4 5 6 7 8 10

dire meadow
#

so this joker is powerful but incredibly unpredictable

#

misprint ifi it was good

chilly pine
#

what if you have 0 mult

dire meadow
#

the game dies

dreamy abyss
#

glitch pokemon gaming

dire meadow
#

probably

quartz socket
#

Well how would you achive that

dire meadow
chilly pine
#

its entirely possible trust me

quartz socket
#

Oh fr?

dire meadow
#

in that situation

chilly pine
#

just return 0

#

or the empty string

dire meadow
dire meadow
quartz socket
#

powerful but incredibly unpredictable

dire meadow
#

like i said

chilly pine
#

idk i didnt think that far

dire meadow
#

IM IN CALC 9short for calculate_individual_effect0 WHY WOULD I WANT THAT

#

🤬

#

1+7+8+5

quartz socket
#

9+10

chilly pine
dreamy abyss
chilly pine
quartz socket
#

Yes

dire meadow
#

it's hard to explain but i think you get it now

#

also at high numbers

wanton rapids
#

wouldnt converting to a base higher than 10 reduce the number

dire meadow
#

yet again

wanton rapids
#

you're converting from the base to base 10

dire meadow
#

red deck gold stake decamark ONLY

#

could you winners the game

wanton rapids
#

this is what the joker says it does

dire meadow
#

the point is to favor the player

#

don't alembic react me

chilly pine
wanton rapids
#

then say convert chips from base [sum of chips] to base 10

dire meadow
#

then

#

what happens when the base is lower then 10

#

🪱

wanton rapids
#

if you have lower than 10 chips then that's your loss

#

same with mult

dire meadow
#

dude

#

READ

#

THE

#

DAMN

#

DESCRIPTION

#

sorry

wanton rapids
#

oh i guess

dire meadow
#

also ignore the weird ZAZZa

#

its supposed to be ZZa

#

🪱

chilly pine
#

thank you xbox gaming bar

dire meadow
#

@hard plank gets violently covered up (happy)

#

no i hate the player

#

fuck them

quartz socket
#

Heh

#

😈

dire meadow
#

the implications...

#

😨

#

for every 2 scored stone cards, spawn a negative The Tower

chilly pine
#

fuck this game

#

amazing

#

why would you do that

#

@hard plank is this indtended

hard plank
#

not really

chilly pine
#

this also doesnt work

hard plank
#

math deck is a gimmick as hell deck

chilly pine
#

okay so is letter deck but it gets some love

#

this math deck stuff is so easy just spell the number on the first hand

hard plank
#

not always actually...

chilly pine
#

softlock

hard plank
#

i might or might not fix this

#

depends if i have time from cold beans

#

i mean

#

helping iro with cold beans

chilly pine
#

okay buddy

hard plank
#

yes

#

it is true

quartz socket
hard plank
#

you cannot play

#

if statement does not evaluate to anything

quartz socket
#

Oh damn

chilly pine
#

just make it display a unique string smhh

#

up to 1e+100

plush hound
#

@forest knoll heeeeeelp

hard plank
#

steamodded moment

chilly pine
#

time to play letter deck

#

okay this just does not effect the game at all

#

why would you leave it in

hard plank
#

chess deck

chilly pine
#

ok bro

hard plank
#

you can add normal cards to deck still

chilly pine
#

why would you do that

hard plank
#

combo

chilly pine
#

still its inconsequential most of the time

quartz socket
#

Ok nerd you make your own deck that completely changes the game then

chilly pine
#

so i cant give any sort of negative feedback??

#

this is so rigged

latent crescent
#

math deck and letter deck should be challenges, not decks

hard plank
#

idc

#

they are decks now

chilly pine
#

never playing aikoshen again

latent crescent
#

ik, just saying

hard plank
#

no one fucking look in challenges

chilly pine
#

dabbing??? in MY balatro??

hard plank
#

bad for discoverability

#

no one checks modded challenges

strong obsidian
dire meadow
quartz socket
chilly pine
#

im the goat

#

the duality fucking sucks also

#

this fucking SUCKS

quartz socket
#

Thats a great joker in like any other deck

dire meadow
#

boss blind that changes max to min 😨

wanton rapids
dire meadow
#

choked on hoverboard 💔

plush hound
#

its shaders

wanton rapids
#

i know very roughly how shaders work

plush hound
#

whats the codeblock code for shaders again

#

fs?

plush hound
# wanton rapids what do you need help with?
#ifdef GL_ES
precision mediump float;
#endif

extern vec2 astral;
extern vec2 mouse_screen_pos;
extern vec2 screen_scale;

vec4 effect(vec4 colour, Image texture, vec2 uv, vec2 sc)
{
    vec4 tex = Texel(texture, uv);
    vec3 col = tex.rgb;

    col = vec3(
        col.r * 0.7 + col.g * 0.1,
        col.g * 0.85 + col.b * 0.1,
        col.b * 1.15 + col.r * 0.1
    );

    float d = (uv.x + uv.y) * 120.0;
    float f = mod(d - astral.y * 6.0, 5.0) / 2.5;
    if (f > 1.0) f = 2.0 - f;
    f = pow(f, 3.0) * 0.4;

    vec3 scan = vec3(0.4);
    col = mix(col, scan, f);

    float d2 = uv.y * 200.0;
    float f2 = mod(d2 - astral.y * 12.0, 2.0);
    f2 = pow(1.0 - f2, 5.0) * 0.15;

    col = mix(col, scan, f2);

    vec2 p = uv - 0.5;
    float r = length(p);
    float v = clamp(1.2 - r * 1.8, 0.0, 1.1);

    col *= v;
    col *= colour.rgb;

    float _keep_sc = sc.x * 0.0;
    float _keep_mouse = mouse_screen_pos.x * 0.0;
    float _keep_scale = screen_scale.x * 0.0;

    return vec4(col, tex.a * colour.a);
}
chilly pine
#

check jank_param.lua

wanton rapids
#

what's the issue?

dire meadow
#

INSANE balancing act

#

later

chilly pine
#

1/4 you get fucked

dire meadow
chilly pine
#

3/4 its a direct improvement

dire meadow
#

disabled by default atleast

woven orchid
chilly pine
#

the changing of the operator requires a joker

quartz socket
#

I’ll spend all of mine on vbux and vapes

woven orchid
plush hound
#

yes of course i need help

quartz socket
#

Hell yeah

plush hound
wanton rapids
#

what's the crash message?

plush hound
woven orchid
#

hm

#

i might recommend you

quartz socket
#

Too many scottish people

#

Im leaving

chilly pine
woven orchid
plush hound
#

oh lord

woven orchid
#

but this has a lot of other stuff which i think the shader needs

chilly pine
#

why wouldnt it be

woven orchid
#

and vertex position or wtv its called

quartz socket
#

~<

woven orchid
#

basically the tilt shader

chilly pine
#

""up to 999,999 cards"" okay sure buddy

dire meadow
#

if you could select that many!

quartz socket
#

^⩊^

dire meadow
#

:3

hard plank
#

lily

woven orchid
#

aiko

plush hound
hard plank
#

aikoshen cross mod with aquilatro

lavish pike
#

hi

woven orchid
#

its Aquillarri

#

also Probably not unless you really want it
aquillarri will be a little numbersloppy so yk

hard plank
#

saorry

woven orchid
#

i can see other mods not wanting to interact with it

hard plank
#

Aquillarri

chilly pine
#

what in tarnation

hard plank
#

number slop

woven orchid
#

in fact in its release version i will probably recommend people to only play with aquillarri content-wise

plush hound
#

this? @woven orchid

chilly pine
#

i simply can not allow this

dire meadow
woven orchid
dire meadow
wanton rapids
#

all of the externs i think

chilly pine
#

@hard plank add tarnation NOW

dire meadow
plush hound
#

i figured it needs a bunch of externs

#

but i dont know which

woven orchid
#

the only crossmod i'd recommend is more upgradable sets

chilly pine
#

actually it might be in the 500k list

dire meadow
#

crossmod glop

woven orchid
#

i can show what the first set is

plush hound
#

like sure, mouse pos, scale, dissolve

#

and then what else

woven orchid
plush hound
#

let me rewrite

#

brb

#

hijhjdfnkokiuohasjdjl

#

fuck me

dire meadow
#

dude im on that xmult grind

dire meadow
#

1 is +mult and the other is base

#

erm gulp... i hope i can win this!!

woven orchid
#

i love how balatro doesnt use pixels in its positioning

dire meadow
#

BALAUNITS???

wanton rapids
#

oh is it just x100

woven orchid
#

the way the game measures the position of things is in hundreds of pixels

#

and i dont know why

woven orchid
dire meadow
plush hound
leaden vector
#

horse walks in

dire meadow
#

into wall

plush hound
#

@woven orchid

wanton rapids
#

send the first few lines

woven orchid
#

nxkoo i get that you are not intentionally dense but sending the crash without the shader code is like saying my tires got slashed and then sending no picture evidencec

hard plank
#

lily...

leaden vector
#

quite an interesting display name change

plush hound
#

wait yeah

#

😭😭

#
#if defined(VERTEX) || __VERSION__ > 100 || defined(GL_FRAGMENT_PRECISION_HIGH)
    precision highp float;
#else
    precision mediump float;
#endif

extern vec2 mouse_screen_pos;
extern vec2 screen_scale;
extern vec2 dissolve;
extern vec2 astral;
hard plank
#

you need to restart the game for that to take effect tho

plush hound
#

what the fuck happened to the second line

woven orchid
#

i think you should just use the base i sent 1:1 and then copy over the effect function from what you previously had

#

because the base i sent i have confirmed works because i use it for every shader ever

plush hound
#

alright bet

hard plank
#

im stealing

wanton rapids
#

what mod is this for niko

plush hound
#

rewrite again

#

ufhgyfhgyufhuf

woven orchid
#

god

#

i wish lua had the with keyword like c#

#

basically like

#
local x = {a=1,b=2,c=3}
return x with {b=4}

returns {a=1,b=4,c=3}

#

yes you could use a function but the point is how convenient it is in c#

plush hound
wanton rapids
#

really?

hard plank
#

microsoft java

quartz socket
#

Minecraft java edition

plush hound
wanton rapids
#

oh did that get scrapped?

plush hound
#

😭

#

also look at what happened to high score

#

heavily demotivated due to interpersonal dramas shit + i dont think my ideas are original/good

woven orchid
#

last i checked G.consumeables =/= G.deck 🥀

plush hound
#

no no not like that

#

i had a beef with a couple of people in hotpot

#

and one of the people i had beef with was my artist

#

its a long story, its not appropriate to say

wanton rapids
woven orchid
wanton rapids
#

incrementing all the digits is like

woven orchid
#

Talisman:

wanton rapids
#

x2 at best

limber oak
woven orchid
limber oak
#

-# no its not a table

woven orchid
#

both effects are crippled by talisman

wanton rapids
#

i mean if you have like

#

e1#1##1

woven orchid
#

because you cannot convert extended hyper e notated numbers back into numbers from strings

#

talisman just does not support it

wanton rapids
#

🤔

limber oak
#

Numberslop Speedrun any% (Common)

Sets score to 1.8e308
self-destructs

woven orchid
#

am i stupid

#

its literally defined

#

gender and pronouns are not the same

#

you may perceive one

#

you may perceive pronouns

limber oak
#

looks at you

quartz socket
woven orchid
#

bad

neon urchin
#

can i have your gender? can i receive your gender

quartz socket
#

Or them (not me)

hard plank
#

@chilly pine will you kill me for what i have made

limber oak
quartz socket
#

Ah

alpine cosmos
quartz socket
#

Anyways guys im bored let’s discuss porting balatro to different platforms and then discuss modding balatro on other platforms that arent pc >:3

alpine cosmos
#

I KNOW RIGHT????

vivid seal
wanton rapids
#

add a bone trinket to blindside that plays that sound effect

alpine cosmos
#

OH THATS GOOD

#

i will do that

#

Xylobones

woven orchid
#

doess anyone know what love2d version balatro runs on

vivid seal
#

i think it displays the version in a crash(?)

wanton rapids
#

eval print(love.getVersion())

vivid seal
#

no nvm

woven orchid
vivid seal
#

it displays LÖVE not love2d

wanton rapids
#

love is love2d

woven orchid
vivid seal
#

yeah?

#

why is that your name
what happened

quartz socket
#

Hey guys what are your thoughts?

woven orchid
#

it will only fail for you and benefit me

vivid seal
quartz socket
#

Does it matter why?

wanton rapids
woven orchid
#

i love updating smods

vivid seal
#

are you in a gender confusion stage? i do not understand if i should worry or not and if i could help

wanton rapids
#

why dont you just git pull ?

woven orchid
#

because it was faster to delete it and reopen it than run the command palatte thing to reopen the repo and then wait for it to process and reopen

#

and then hit pull

woven orchid
woven orchid
#

i just dont Jive with the label of female and neutral is also very very wrong

vivid seal
#

same tbh

woven orchid
#

and male is even wronger

quartz socket
#

Real

vivid seal
#

i'm kinda getting out of mine though, reconsidering becoming nonbinary or genderfluid

#

i wish you best of luck in finding your true gender identity though

plush hound
#

my fluid has gender

woven orchid
wanton rapids
#

Yes

woven orchid
#

there will be actual info on it when im done and also itll only appear at the end of the ante

#

i plan on having it show like
overscoring consistency, average overscore percentage, and increase in blind scaling based on those factors
as well as having it show a fancy graph comparing old and new blind scaling

vivid seal
#

cool as fuck

hard plank
#

my mod is subpar in quality

chilly pine
#

also the polite overrides splash

#

might wanna get that checked out

hard plank
#

it does

#

the boss overrides all splash

#

because it gets calculated after

chilly pine
#

it should state it somewhere

hard plank
#

this also applies to alignment

hard plank
#

too much info overload i think

#

maybe i can add an icon for it

chilly pine
#

k

#

finally

#

err, fucking liar??

hard plank
#

psychic does this

#

this should be fixed by smods smh

#

informacion

lavish pike
#

that's cool

wanton rapids
#

oh the serifs make it so much better

chilly pine
#

err wtf

hard plank
#

balatro is not a word 😔😔

#

check run info tab

chilly pine
#

it should be

leaden vector
#

heh, i know a little bit of spanish

chilly pine
#

im the goat

lavish pike
#

Idea for my mod - Chips (consumable)
A consumable which gives a perma effect like a voucher, but has to be in your consumable slots to work.

chilly pine
#

@hard plank your word list sucks

woven orchid
#

aiko

hard plank
woven orchid
#

do you know how to position a dynatext without putting it in a ui element

#

you seem like you would know

winged prism
#

Doesn't that gimmick use scrabble words only

chilly pine
#

okay im bored im gonna play a little freedom deck

hard plank
woven orchid
#

yeah but its not going where i want

#

how do i like , actually position it somewhere

hard plank
#

i think dynatext has position when you initialise it

chilly pine
#

okay buddy

#

oh it just kills itself you cant even use it

#

amazing

grand geode
#

fym use ethically

wanton rapids
#

how could i disable the tilting and shadow on a specific consumeable type?

woven orchid
#

ive done the same thing with the censored edition in vallkarri but

#

it only applies to the censor layer

#

you might gain something from looking at its code tho

wanton rapids
#

i can probably adapt it yeah

chilly pine
#

wtf do you mean i cant drag cards there

woven orchid
#

your hand is still technically at the bottom

#

you have to drag them down to where it would be if you were playing i believe

chilly pine
#

i guess

#

thats dumb though

#

the hand is literally hidden

#

oh yeah theres another cardarea here too LMAO

cloud cipher
hard plank
#

buddy

hard plank
#

drag cards to the

#

the

#

the booster pack text

#

surely it will work

cloud cipher
tulip kernel
#

Yahia mod is peak

hard plank
#

I'm just a nobody

tulip kernel
#

uh

limber oak
#

a challenge

leaden vector
#

i wonder if i'm considered known here

lavish pike
leaden vector
leaden vector
lavish pike
#

hello

hard plank
lavish pike
#

i cant spell

leaden vector
lavish pike
#

well, I know you

leaden vector
#

Indeed yes, but i'm meaning like uhhhh

#

i would say aikoyori known but they're very known

lavish pike
#

yeah

#

Im... here

#

I just exist lol

leaden vector
#

Is to "just exist" considered bad

lavish pike
#

I dont know

#

depends on who you ask

#

some people say my existence is bad, but those people are dicks

leaden vector
#

amen to that

lavish pike
#

lol

leaden vector
#

all people should be allowed to exist

lavish pike
#

hmm, sounds to bizare of an idea /j

leaden vector
#

bizarre?

#

like...

#

jojo's bizarre adventure

lavish pike
#

and subscribe

#

oh

#

or that I guess

leaden vector
lavish pike
#

lol

lavish pike
#

I got it this friday

leaden vector
#

I did indeed see it, i'm very jealous

lavish pike
#

damn

leaden vector
#

I want it 💔

#

i'm gonna steal it >:3

lavish pike
#

oh dear

leaden vector
#

this candy cane fire as hell

misty herald
#

How do yall update balatro n its mods? im stuck at an old version and i forgot entirely how to mod

limber oak
misty herald
#

a

#

also does this even work

limber oak
#

it does
i use bmm myself

misty herald
#

i see

misty herald
#

so idk if that would clash w bmm

hard plank
limber oak
#

im happy how it turned out

latent crescent
hard plank
#

i will be rebalancing expert blind

tulip kernel
hard plank
#

do you really care about theming

frigid mica
limber oak
#

survive (or cheese it by putting vessel as your leftmost joker (watch out for any brianstorms tho)

#

vessel is blueprintable

primal valley
limber oak
grand geode
primal valley
#

wtf!!!

grand geode
#

im ngl

hard plank
winged prism
primal valley
#

aikoshen is 🔥

grand geode
#

shitposting is not at all a coherent theme

#

anyway

#

play aikoshen

limber oak
primal valley
limber oak
#

gud

primal valley
#

alr

limber oak
#

its literally in the name-

limber oak
# limber oak gud

/(Ante*Round) Chips and Mult
-# updates when added to deck or when blind is selected

primal valley
#

??????????'

limber oak
#

division

hard plank
#

addin genshin inmpact

primal valley
hard plank
primal valley
#

wait no i alr saw that one!!!

#

is it gettinh implemented????

hard plank
#

it was already implemented...

misty herald
winged prism
#

Spin my wheel

blissful stag
#

Im going to kill someone

winged prism
#

Oh no

hard plank
blissful stag
#

I need ro slave away making sprites now

#

Sigh

latent crescent
#

murder in modding chat

winged prism
#

Murder is lowkey bad chat

#

Don't do it

misty herald
#

well...

misty herald
#

cause apparently Talisman doesnt work or sum idk

leaden vector
winged prism
leaden vector
#

calling them "artists" is a stretch

hard plank
#

did you know that Balatro screenshot on Discord is out of date

grand geode
misty herald
#

uhh

grand geode
#

love and deepspace

leaden vector
misty herald
#

well nevermind i guess

hard plank
#

demo ahh gameplay

misty herald
#

ill ask somewhere else

hard plank
#

maybe try removing each mod one by one first and see what caused it

#

actually let me look again

#

sigh

leaden vector
#

behated

#

i like that

misty herald
limber oak
#

clg got buffed

plush hound
hard plank
#

i am not beating cant let go bruh 😭😭

misty herald
limber oak
plush hound
#

should work

misty herald
hard plank
#

OH MY GOD FUCK THIS

limber oak
hard plank
#

ROBTOP DECIDED TO JUST ADD 300 ACHIEVEMENTS

limber oak
#

funny

misty herald
misty herald
#

same error too

plush hound
#

hmm

plush hound
misty herald
#

yep, same error

plush hound
#

because those two are old mods

hard plank
misty herald
limber oak
ionic crystal
#

today i learned ortalab blinds come from linear a

hard plank
#

im dead

misty herald
plush hound
misty herald
limber oak
hard plank
#

toe2 is ass

limber oak
#

i was able to beat theory 2

ionic crystal
limber oak
#

which means
so can you @hard plank

donut give up

hard plank
#

i don't care

#

i give up

limber oak
#

profound mental...
idk

grand geode
#

i bought gd just to play quaver on it

#

priorities

dreamy abyss
#

aikoyori can you play mopemope

wanton rapids
hard plank
#

and I'm not playing it

dreamy abyss
#

what, you think im trying to scare you or something?
no i just think it’d be funny

umbral pilot
lavish pike
#

Hi

rustic helm
lavish pike
#

👍

hushed furnace
#

whats the balatro mod where you can ask for specific things like for example a blueprint within the first 2 antes and it tells you seeds with those requirements

#

when i saw it it looked like it was in command prompt or something so maybe its an external program but still the name of it would be good

hushed furnace
#

thanks!

flat crow
winged prism
#

Balatro Plus sightings

umbral pilot
leaden vector
#

hhhhhhhhhhhhhhhhhhhhhhhhhhhhhh i'm gonna go bald istg

quartz socket
#

No

winged prism
#

Do not

leaden vector
#

oh okay

#

i'm just realyyyyy fucking stressed :(

hushed furnace
#

if anyone knows anything about immolate help would be appreciated

leaden vector
#

how do y'all deal with stress

tardy sigil
#

pick off dead skin off my feet

#

and then eat it

hushed furnace
#

erm

winged prism
#

My coping mechanism isn't good

tardy sigil
#

or go to the casino

quartz socket
leaden vector
#

outside of gooning 💔

hushed furnace
#

is everyone here like this 😦

tardy sigil
#

no

#

but a lot

leaden vector
quartz socket
#

Oh sorry

tardy sigil
#

idk i like to play some tf2 or something

leaden vector
quartz socket
leaden vector
#

It's pretty late, but I'll have one in the morning

#

thx

woven crag
tardy sigil
#

are you sure

winged prism
woven crag
#

im sure

leaden vector
hushed furnace
limber oak
leaden vector
hushed furnace
leaden vector
#

Should just be able to search "OpenCL Drivers" and download them from whatever official sources you find

hushed furnace
#

but that was a while ago

leaden vector
#

What brand is it?

limber oak
#

im playtesting stellarity rn

leaden vector
#

Just out of curiousity

hushed furnace
leaden vector
limber oak
#

idk the var in SMODS.Challenge that handles winning ante sooooooo

#

im doing a temp workaround

hushed furnace
#

its got a windows 8 sticker on it so it cant be that old

#

funny thing about it though is that it has a terabyte of storage so i can download pretty much anything i want but just cant run any of it

quartz socket
#

Can you download me?

hushed furnace
#

are you less than a terabyte

leaden vector
quartz socket
winged prism
#

Human brain would take a lot of space even if it's not good at functioning

hushed furnace
leaden vector
limber oak
leaden vector
quartz socket
#

You could download me but just not install me even if i am more than a terabyte right?

quartz socket
#

🤔

winged prism
#

Samsung refusing to sell ram to samsung

quartz socket
#

I’d love to be put in a zip file honestly

hushed furnace
#

i heard about tha

hushed furnace
winged prism
leaden vector
#

guys, don't they know they can just download more ram

quartz socket
#

Um think of your dad

leaden vector
#

what quality would the images be?

umbral pilot
quartz socket
#

Hm

#

Think of your mother

umbral pilot
#

no

leaden vector
#

hey gang can i do a quick lore drop on y'all

quartz socket
#

So none it seems

#

slaps Astro

leaden vector
#

My mum went into rehab for 1.5 years for drinking, and I feel like i've never really been the same afterwards

polar oyster
limber oak
#

asto die

leaden vector
#

I feel like my relationship with my parents has diverted from that of a son, into that of someone who just lives with them

quartz socket
#

Im sorry

leaden vector
#

my relationship with my father has never really been great, and the only person that I had to lean on emotionally was my mum, but I became deattached from her

hushed furnace
#

how did the rehab work? was she away all the time or just sometimes

leaden vector
limber oak
#

am i overdoing it (i dont think so)

leaden vector
#

sometimes shit happens

#

i'm just glad i could say that

#

thanks

quartz socket
#

Ofc

quartz socket
limber oak
quartz socket
#

Noo the banned one

limber oak
#

^Chips based on jokers
has synergy with pry stellar so banned

quartz socket
#

Oo

#

Whats the other joker you start with?

limber oak
#

Ominous Flower (creates pry stellar when you defeat a Boss Blind)

Astronomer

Challenge Extender (sets winning Ante to 16)

hushed furnace
#

whats a pry stellar

limber oak
#

Makes Planet Cards and Packs free

hushed furnace
#

i didnt know it made packs free too

limber oak
leaden vector
limber oak
#

yeah i kinda broke the theme

woven crag
#

hashtag shilling

hushed furnace
leaden vector
winged prism
hushed furnace
limber oak
hushed furnace
#

ik but i dont know what is what

woven crag
hushed furnace
woven crag
#

i couldve just made the sleeve always the same but thats boring

tardy sigil
#

testing my mod and i got this fuckin nutty build LOL

leaden vector
#

and then we all clapped

hushed furnace
tardy sigil
#

this is awfully familiar

tardy sigil
leaden vector
#

hehehe, christmas is 3 days away

#

for me atleast

tardy sigil
#

just a week away

leaden vector
#

i am so happy about this information

tardy sigil
#

no....

leaden vector
hushed furnace
#

do you guys know dead cells? its another roguelite but its got a "custom mode" where you can deselect items so only certain ones show up. i wanna see that in balatro where you can make it so only certain jokers and tarot cards appear.
its probably already a mod

quartz socket
hushed furnace
leaden vector
quartz socket
#

What?

quartz socket
#

hushed furnace
#

im not prepared for christmas mentally

leaden vector
hushed furnace
#

its still the start of december in my mind

quartz socket
#

HE’S NINE?

hushed furnace
#

a full motorbike???

leaden vector
quartz socket
tardy sigil
#

is it like one of those little cool ones

leaden vector
tardy sigil
#

sweet

leaden vector
#

he says it's like 50cc or something