#⚙・modding-general

1 messages · Page 954 of 1

mossy lion
#

huh. weird. let me try myself, launching steam

#

i updated everything just now so if i get this error too then something went wrong

astral vapor
#

guys

west hatch
#

Did you get it?

drifting kraken
#

I want to lose! Why do I crash?

astral vapor
#

how the fuck do i make a joker discount 50% off

#

can anyone fix my crap code

mossy lion
full edge
drifting kraken
mossy lion
#

something about fonts

astral vapor
#

@full edge can u help me code my jonkler

full edge
astral vapor
#

its not applying the discount

azure dagger
astral vapor
azure dagger
astral vapor
#

wheres the github

#

of vanilla remade

azure dagger
#

i got you

full edge
#

There's a chance that it's a timing issue, iirc

astral vapor
full edge
#

You can take a look at how I implemented a similar joker (it makes booster packs free, but the logic for that should be identical)

#
function Card:set_cost()
    -- print("entered: " .. (oceans or ""))
    b_sc(self)
    if (self.ability and self.ability.set == "Booster" and G.GAME.kino_oceans_11) then
        self.cost = 0
    end
    
end``` and this hook
west hatch
#

I'll wait for Aikoyori to fix

astral vapor
#

it shouldn't be this hard to discount an item

full edge
#

I implemented this months ago, though

astral vapor
#

my head hurnts from reading the code im so sorry

full edge
#

there's a good chance that there's changes to smods that handle this easier than how I did it

#

it's 5 relevant lines in total

normal hollow
#

i want to do context.set_cost at some point

sleek granite
#

i think maybe we go darker tho

full edge
#
        G.GAME.kino_oceans_11 = true
        if G.shop_booster and G.shop_booster.cards then
            for i = 1, #G.shop_booster.cards do
                G.shop_booster.cards[i]:set_cost()
            end
        end
    end,```

as the thing that forces cards to check for a change, so that it happens when you buy the card too. It just iterates over all boosters and then sets the cost
astral vapor
#

i got a joker to set price to free

#

how is it so much harder to do it for a 50% discount...

#

im an artist, not a programmer...

full edge
#

so, i remember for oceans 11, the issue I was running into was that the effect that calculates whether prices should be discounted trigger before the joker was actually added to the card area, which is why I don't check for the joker being present, but set a global (though there's probably better ways to handle that)

astral vapor
#

i need a code snippet

full edge
#

I sent you snippets of all the relevant code just above. As I said, the way I implemented it was only a few lines

#

on that joker, just ignore everything that isn't add_to or remove_from deck

astral vapor
#

what does set cost do

full edge
#

it actually sets the cost of a card

#

just changing the variables doesn't impact the card object until it's made official through set_cost()

astral vapor
#
    add_to_deck = function(self, card, from_debuff)
        G.E_MANAGER:add_event(Event({
    func = function()
        for k, v in pairs(G.I.CARD) do
            if v.set_cost then v:set_cost() end
        end
        return true
    end
}))
    end,

    remove_from_deck = function(self, card, from_debuff)
        G.E_MANAGER:add_event(Event({
    func = function()
        for k, v in pairs(G.I.CARD) do
            if v.set_cost then v:set_cost() end
        end
        return true
    end
}))
    end
} 
      
local card_set_cost_ref = Card.set_cost
function Card:set_cost()
    card_set_cost_ref(self)
    
    if next(SMODS.find_card("j_modprefix_shopkeeperkagami")) then
        if (self.ability.set == 'Joker' or self.ability.set == 'Tarot' or self.ability.set == 'Planet' or self.ability.set == 'Spectral' or self.ability.set == 'Enhanced' or self.ability.set == 'Booster' or self.ability.set == 'Voucher') then self.cost = math.max(0, math.floor(self.cost * (1 - (card.ability.extra.discount_amount) / 100))) end
    end
    
    self.sell_cost = math.max(1, math.floor(self.cost / 2)) + (self.ability.extra_value or 0)
    self.sell_cost_label = self.facing == 'back' and '?' or self.sell_cost
end```
full edge
#

@west hill no need to look at it, I managed to figure it out. Not entirely sure why it works like this, but I think my guess is close enough that I can continue

sleek granite
#

ice do you think my eyes are cool

astral vapor
#

whats wrong with my code...

full edge
#

well, first off, it won't just change the price of cards in the shop, it will also halve the price of every card you own yourself. I think there's also the risk of this running at every set_cost, instead of just halving it once? The reason setting it to 0 is easier is that if you set it to 0 twice, it's still 0, while if you halve it twice, it's quartered ofc

full edge
stiff pivot
#

how do i fix this on mac os? i try to launch the game from the mod launcher and this happens

astral vapor
#

wait im an idiot

#

IM SUCH A BIG IDIOT HOLD ON

full edge
#

I'm also not sure why you're touching the sell_cost or the label, btw

astral vapor
#

NEVER FUCKING MIND

full edge
#

you don't have access to card in set_cost, as card isn't given as an argument by the function. You'll wanna use self

astral vapor
#

what do i need to change

#
add_to_deck = function(self, card, from_debuff)
        G.E_MANAGER:add_event(Event({
    func = function()
        for k, v in pairs(G.I.CARD) do
            if v.set_cost then v:set_cost() end
        end
        return true
    end
}))
    end,

    remove_from_deck = function(self, card, from_debuff)
        G.E_MANAGER:add_event(Event({
    func = function()
        for k, v in pairs(G.I.CARD) do
            if v.set_cost then v:set_cost() end
        end
        return true
    end
}))
    end
}

local card_set_cost_ref = Card.set_cost
function Card:set_cost()
    card_set_cost_ref(self)

    if next(SMODS.find_card("j_mktjk_shopkeeperkagami")) then
        if (self.ability.set == 'Joker' or self.ability.set == 'Tarot' or self.ability.set == 'Planet' or self.ability.set == 'Spectral' or self.ability.set == 'Enhanced' or self.ability.set == 'Booster' or self.ability.set == 'Voucher') then self.cost = math.max(0, math.floor(self.cost * (1 - (card.ability.extra.discount_amount) / 100))) end
    end
end```
#

@full edge

sleek granite
#

i wonder if this is too much

unborn plover
#

Eyes

#

Lots of eyes

#

But those aren't burning eyes...

full edge
unborn plover
full edge
astral vapor
#

i had it set to 1

#

fixed it

#

its set to 50 now

north crater
#

erozion

full edge
# stiff pivot anyone?

never seen that error before and inexperienced with macs, sorry! If you don't get an answer, try posting in the Lovely thread, potentially it'll get seen later there by someone who knows!

north crater
#

chat, name a joker

unborn plover
unborn plover
north crater
unborn plover
#

Uhm... Onix agate?

#

Dusk?

#

Idk I'm just throwing joker names at this point

#

Small question: what is Onyx agate based off?
Some sort of mineral?

full edge
#

a stone thunk found

wise stag
#

anyone know why arent the consumables stacking?

cloud cipher
unborn plover
wise stag
#

saturn was recommended by the dude who got me into modding 😭

astral vapor
#

FINALLY GOT IT WORKIGN

#

FUCK

#

ME

cloud cipher
#

As you can probably tell considering the consumable stacking mod is not stacking consumables

full edge
#

Yeah, overflow's the meta consumable stacker atm

cloud cipher
#

I think saturn has no way for modders to add compatibility so it can only stack vanilla consumables

#

It's really old

north crater
#

right ?

astral vapor
#

@north crater could i ask u to sprite somethin

north crater
astral vapor
umbral pilot
astral vapor
#

please make this joker look... less ass

umbral pilot
north crater
umbral pilot
#

I like it remove the joker part refine the font

astral vapor
#

this is a joker im proud of tho

#

tbf i pixeled my own art that i drew like, a year ago

#

silly bug

north crater
astral vapor
#

im also proud of this one

#

this one however..

#

god put some anti-aliasing on him please

north crater
#

im not doing it

astral vapor
full edge
#

Got that to work! 😄 Now the only thing left to figure out is how to make the shader's positional manipulation of the card actually incorporate the counter text

astral vapor
#

i will add antialiasing myself lmao

north crater
#

:/

astral vapor
#

i wasnt asking u to do that one

#

sowwy for phrasing

#

thoughts on my technique tho

#

since ur pretty good with pixels

#

@north crater

north crater
#

i mean you did shapes and a gradient

#

nothing much else to say

astral vapor
#

just realized i've played this game for way too long-

full edge
# astral vapor

I think you can solve a lot of the visual harshness of this by just using a lighter shade for the blacks. If you incorporate some darker greens, you compensate out a bit, as at this resolution, the thinness of the lines makes the black colour stand out a lot more

astral vapor
north crater
#

which is a strange choice imo actually

full edge
#

I love the effect of a dither gradient over a smooth gradient. Looks really funky in a very fun way, Lumiii

north crater
#

i'd say pixelated gradients work best on large surfaces you're supposed to see from far away

unborn plover
#

I like the coloring you gave to your reskinned jokers

north crater
#

thanks

#

what next tho ?

astral vapor
unborn plover
astral vapor
#

idk why it just scratches an Itch

north crater
#

i was already doing the heart stone n shit

full edge
astral vapor
#

ba dum tss (please kill me im not funny)

astral vapor
unborn plover
astral vapor
#

where i take full size images and add palette quantization and dithering

#

like what i did for my shopkeeper kagami joker and the y2k bug sona

north crater
#

this is what i got on that heart stone btw

astral vapor
#

i wanna take a bite out of it

#

(compliment)

astral vapor
#

i have

unborn plover
astral vapor
#

i have my actual proper mod set up in my subconscious so i can play balatro in my dreams

#

(i played nothing but balatro since i got the game)

wise stag
#

Oops! The game crashed:
main.lua:2718: functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)

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
Steamodded Mods:
1: Entropy by Ruby [ID: entr, Priority: 666, Version: 1.0.0~alpha, Uses Lovely]
2: Overflow by Ruby [ID: Overflow, Priority: 10, Version: 1.0.4, Uses Lovely]
3: Cryptid by MathIsFun_, Cryptid and Balatro Discords [ID: Cryptid, Priority: 114, Version: 0.5.12~dev, Uses Lovely]
4: Saturn by OceanRamen [ID: Saturn, Version: 0.2.2-E-ALPHA, Uses Lovely]
5: Talisman by MathIsFun_, Mathguy24, jenwalter666, cg-223, lord.ruby [ID: Talisman, Version: 2.3.4, Uses Lovely]
Break Infinity: omeganum
6: Handy by SleepyG11 [ID: Handy, Version: 1.5.1f, Uses Lovely]
Lovely Mods:

Stack Traceback

(3) global C function 'error'
(4) Lua field 'update' at file 'main.lua:2718'
Local variables:
dt = number: 0.063231
success = boolean: false
msg = string: "functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)"
(5) Lua function '?' at file 'main.lua:934' (best guess)
(6) global C function 'xpcall'
(7) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '?' (defined at line 905 of chunk main.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"])
any idea on what caused this? 😭

astral vapor
#

AND I GOT THE GAME RECENTLY

fickle elbow
astral vapor
#

whatever,,, go my ruis

unborn plover
#

Chemist, Geometer and Paleontologist are the best jokers I made out of the first bunch:

fickle elbow
#

208.7/336 hrs playing balatro to doing anything else

astral vapor
#

im so cooked once school starts

main path
main path
ocean vapor
#

Dr stoned

astral vapor
#

i'll be failing college but at least i have balatro

sacred pebble
#

can someone tell me whats the issue

astral vapor
#

do you think anyone is gonna notice its not me

sacred pebble
#

i have the newest version of cryptid and talisman

astral vapor
#

they're the same picture

fickle elbow
#

It says aiko on the shirt lol

astral vapor
unborn plover
#

And this is the result of my first bunch:

sacred pebble
hollow coral
#

got two new joker ideas but it's gonna take a lot more programming knowledge than what i currently know
scaling and codependency

astral vapor
#

😭

sacred pebble
#

HELP ME FIX MY BALATRO

astral vapor
#

ok i found the problem

#

rename the smods folder to just "smods"

#

(no quotation marks)

prime dock
#

how my friend feels after seeing the balator opened notification for the 50th time (i’m debugging)

sacred pebble
astral vapor
#

yes

#

now boot up the gamer

#

i can help u troubleshoot live if u shared screen in vc

fickle elbow
#

My friends probably see me open balatro hundreds of times a day i feel bad for them

sacred pebble
sacred pebble
astral vapor
#

ring ring ring

#

pick up yo phone

unborn plover
#

I'm actually impressed by how I managed to make the stalactites/stalagmites shading and details look realistic:

#

Man I'm on a roll

dry kettle
#

I don't think that someone can help, but still. Some of Balatro mod's puts some "Rock" Balatro theme, that piss me off. But what piss me off more, that i can't find the mod. Does anyone know which mod put the rock cover of Balatro theme?

ocean vapor
#

What mods do you have

wanton lintel
#

my pinterest board names are so stupid

dry kettle
ornate bone
#

I've got another rotten idea.

dry kettle
#

or i send this wrong?

ocean vapor
#

No it’s just so much mods

ornate bone
#

Wplace joker that just kills your run the moment you end up with it in anyways

ocean vapor
#

It light be lost edition

dry kettle
#

hm, there's no option's in config to turn music off

#

damn

#

Ah, problem solved

main path
main path
dry kettle
#

It was Lost Edition, their music config lie in basic balatro settings

ocean vapor
#

Is multiverses out

main path
ocean vapor
#

Is multiverses out

#

Is multiverses out

main path
ocean vapor
#

Multiverses is out

#

HOLY SHIT

dry kettle
#

by experience with other mods, i thought that music config would be in mod config

wise stag
#

man does anyone know how to fix ts Oops! The game crashed:
main.lua:2718: functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)

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
Steamodded Mods:
1: Entropy by Ruby [ID: entr, Priority: 666, Version: 1.0.0~alpha, Uses Lovely]
2: Overflow by Ruby [ID: Overflow, Priority: 10, Version: 1.0.4, Uses Lovely]
3: Cryptid by MathIsFun_, Cryptid and Balatro Discords [ID: Cryptid, Priority: 114, Version: 0.5.12~dev, Uses Lovely]
4: Saturn by OceanRamen [ID: Saturn, Version: 0.2.2-E-ALPHA, Uses Lovely]
5: Talisman by MathIsFun_, Mathguy24, jenwalter666, cg-223, lord.ruby [ID: Talisman, Version: 2.3.4, Uses Lovely]
Break Infinity: omeganum
6: Handy by SleepyG11 [ID: Handy, Version: 1.5.1f, Uses Lovely]
Lovely Mods:

Stack Traceback

(3) global C function 'error'
(4) Lua field 'update' at file 'main.lua:2718'
Local variables:
dt = number: 0.0724051
success = boolean: false
msg = string: "functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)"
(5) Lua function '?' at file 'main.lua:934' (best guess)
(6) global C function 'xpcall'
(7) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '?' (defined at line 905 of chunk main.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"])

#

it happened to me before whenver i play two pairs

#

like it did not happen once when i did J+J+10+10

#

but then every other two pairs its happening

azure dagger
#

Welp, o7 to this run. And my PC.

#

wrong image

#

there we go

azure dagger
#

j e s u s

hard plank
#

the flexibility is uncanny

meager gale
azure dagger
unkempt current
meager gale
unkempt current
#

That can't be trance
I used trance lately and it doesn't work

#

Maybe because of steamodded

azure dagger
unkempt current
#

Interesting

sleek granite
#

trance works lmao

unkempt current
#

Whenever I use trance the chip and mult windows just revert back to the original colors

#

Wtf

wise stag
#

where do i post mod crashed and find help for them? 😭

#

its mad annoying the fact that i cant do two pairs without my game crashing lol

normal hollow
#

here or in the mod's thread

wise stag
# normal hollow here or in the mod's thread

Oops! The game crashed:
main.lua:2718: functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)

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
Steamodded Mods:
1: Entropy by Ruby [ID: entr, Priority: 666, Version: 1.0.0~alpha, Uses Lovely]
2: Overflow by Ruby [ID: Overflow, Priority: 10, Version: 1.0.4, Uses Lovely]
3: Cryptid by MathIsFun_, Cryptid and Balatro Discords [ID: Cryptid, Priority: 114, Version: 0.5.12~dev, Uses Lovely]
4: Saturn by OceanRamen [ID: Saturn, Version: 0.2.2-E-ALPHA, Uses Lovely]
5: Talisman by MathIsFun_, Mathguy24, jenwalter666, cg-223, lord.ruby [ID: Talisman, Version: 2.3.4, Uses Lovely]
Break Infinity: omeganum
6: Handy by SleepyG11 [ID: Handy, Version: 1.5.1f, Uses Lovely]
Lovely Mods:

Stack Traceback

(3) global C function 'error'
(4) Lua field 'update' at file 'main.lua:2718'
Local variables:
dt = number: 0.0724051
success = boolean: false
msg = string: "functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)"
(5) Lua function '?' at file 'main.lua:934' (best guess)
(6) global C function 'xpcall'
(7) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '?' (defined at line 905 of chunk main.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"])

#

do yk why is that happening 💔

normal hollow
#

yeah i read it before i have no idea

exotic belfry
#

My bets are on Saturn being the cause ngl

normal hollow
#

yeah i was going to say saturn and overflow together is weird

wise stag
exotic belfry
#

Yes

wise stag
#

or even unistalll it

wise stag
exotic belfry
#

Hm

wise stag
#

i disabled handy too

#

man i think a specific card is causing it..

#

is this even possible

#

i do have a feel its a queen card 💔

blissful brook
west hatch
#

its been a long time and i havent got a way to fix this

wise stag
#

man i legit cant do two pairs

#

now i am supposed to lose the run? 😭

forest knoll
#

try switching to the release version of cryptid

forest knoll
#

I was talking to Yea, sorry

wise stag
west hatch
forest knoll
#

I'm stumped on your end unfortunately

wise stag
forest knoll
unkempt current
#

Oh somebody sent the link anyway

wise stag
#

thanks yall

unkempt current
wise stag
#

and i delete my old cryptid right

fallen trellis
#

hey guys. can someone send me a link to the mod that lets you zoom in on the jokers? playing cryptid with 50 jokers makes it hard to move the blueprint around

wind panther
#

is that a good thing? probably, considering i had a feeling this was kinda jank

hard plank
#

😭

woven crag
wind panther
#

but like. ship of theseus much???

hard plank
#

it was probably eremel himself

wind panther
#

it was eremel

fallen trellis
wind panther
#

yea

wind panther
hard plank
#

i mean most people would be happy that it got merged at all

wind panther
#

i mean

#

i am

#

very much so

#

but also like

hard plank
#

considering eremel doesn't do these kinda custom oeprator stuff

#

usually

fallen trellis
golden reef
#

I need help with modding

hard plank
#

at least you got to make the PR 😭

#

I did NOT get to make the PR for the new mod menu

ocean vapor
woven crag
#

Read pins

wind panther
#

i'm glad to have contributed but also like did i really even contribute??

exotic belfry
wind panther
#

ah yea

#

well that's good to hear

hard plank
#

astra

#

i am out of ideaws

exotic belfry
#

Rip

wind panther
#

add a third scoring parameter

ivory sinew
#

Pow?

wind panther
#

outside of chips and mult

#

nahnah

#

mult 2

woven crag
#

Zulu

ivory sinew
wind panther
#

green

ivory sinew
#

See? Pow

full edge
#

A lot of programming is figuring out how to do something inefficiently before you figure out how to make that more efficient. Even if your stuff got refactored to be more generically accessible in SMODS' style, that doesn't happen without the effort of the initial code

wind panther
#

huh.

exotic belfry
#

I think Pow definitely applies as a third param

west hatch
ivory sinew
#

From Pacdam

wise stag
#

yo its still happening

wise stag
#

is it cuz my two pairs are high lvl?

#

its lvl 2+12

west hatch
#

no entropy though...

wise stag
#

💔 idk what to do atp

exotic belfry
#

Considering the game cannot find the mult number your hand is supposed to give, maybe it is that

wise stag
#

do u think its cuz of my jokers?

west hatch
#

OK there's a problem with highest priestess, still playable tho

tidal nimbus
#
Cursed Jokers

Twisted Astro - Decrease all hand level by 1 when round is over

Twisted Shelly - Cards permanently lose up to 5 Chips when played, cards with 1 Chip give X0.95 Mult when played

Twisted Vee - When hand is played, all cards in hand have 3 in 5 chance to be debuffed until end of ante.

Twisted Sprout - When blind is selected, create 3 random negative twisted vine joker
Envious Vine - -40 Chips per card held in hand
Prideful Vine - Cards give X0.9 Mult when scored
Greedy Vine - When hand is played, -$1 per joker you owned
Gluttonous Vine - Cards has 1 in 2 chance to lose any card modifier when scored
Slothful Vine - 3 cards in your hand cannot be selected, changes when you discard or played hand
Lustful Vine - If played hand is less than 4 cards, destroy 1 random joker
Wrathful Vine - When you use discard, -1 hand size
(All vine joker self destructs at end of round)

Twisted Pebble - X0.6 Mult, debuff rightmost joker (Except self)

So here's a concept of a cursed joker. If you able to survive long enough or do specific stuff, they will turn into legendary jokers to help you

#

I believe such concept already exist

west hill
forest knoll
wanton rapids
#

potassium update when

wise stag
wise stag
# wise stag

those are my jokers, cards lvls, and the cards im trying to play

#

should i js restart the run

#

@forest knoll can u give me ur opinion on that

wind panther
#

i had a feeling

wise stag
#

man.. i used that bind token

#

and it solved it

wind panther
#

thanks for merging it at all lol

wise stag
#

a bin token can cause all that??

ivory sinew
#

Hell yeah Pow finally works as intended even with other TOML-heavy mods

forest knoll
ivory sinew
#

I got AikoShen and Paya's and it works w/o crashing

hard plank
#

what if mine and haya's were the broken ones

lunar sluice
#

i think gamma is just broken

hard plank
#

?

lunar sluice
#

but it shouldnt be

ivory sinew
#

Nah it's not that, it's the whole managing all the toml stuff

#

Shit it won't show when a hand is pure anymore 🙁

astral vapor
#

@hard plank hot potato

distant badge
#

how do i. Steam moded

lunar sluice
#

what is a straight flush?

astral vapor
ocean vapor
#

Is it a straight that contains a flush or a flush that contains a straight

hard plank
astral vapor
forest knoll
astral vapor
#

im changing the name of my mod btw

rugged forge
#

sup everyone , can anyone tell me why this error pops up? Oops! The game crashed:
Syntax error: functions/common_events.lua:3499: 'end' expected (to close 'function' at line 473) near '<eof>'

Additional Context:
Balatro Version: 1.0.1o-FULL
Modded Version: 1.0.0~BETA-0817c-STEAMODDED
LÖVE Version: 11.5.0
Lovely Version: 0.8.0
Platform: Windows

Stack Traceback

(3) C function 'function: 0x29b8f810'
(4) global C function 'require'
(5) main chunk of file 'main.lua' at line 884
(6) global C function 'require'
(7) LÖVE function at file 'boot.lua:323' (best guess)
Local variables:
c = table: 0x29b95e48 {identity:false, version:11.5, accelerometerjoystick:true, modules:table: 0x29b61728, gammacorrect:false, title:Balatro, externalstorage:false (more...)}
openedconsole = boolean: false
confok = boolean: true
conferr = nil
(8) global C function 'xpcall'
(9) LÖVE function at file 'boot.lua:362' (best guess)
Local variables:
result = boolean: true
(10) global C function 'xpcall'
(11) 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"])

azure dagger
astral vapor
azure dagger
rugged forge
#

like 24

astral vapor
rugged forge
#

its probably a conflict right?

astral vapor
azure dagger
exotic belfry
astral vapor
azure dagger
hard plank
#

sega

exotic belfry
tender atlas
#

Need feedback on a thing pls

astral vapor
ivory sinew
#

Now we're cooking

exotic belfry
astral vapor
#

dies

ancient fog
#

what's the name of the mod which allows you to swipe to select cards in hand?

torn urchin
astral vapor
azure dagger
#

Yea

astral vapor
forest knoll
azure dagger
forest knoll
#

very fun then

astral vapor
hard plank
#

hi meta

azure dagger
forest knoll
#

hello aikoyori

astral vapor
astral vapor
#

sybau

#

where the fuck is that emoji of the rose with erectile dysfunction

astral vapor
#

thnak you

azure dagger
astral vapor
rugged forge
astral vapor
hard plank
rugged forge
#

nexus

astral vapor
azure dagger
west hatch
#

We're getting asymptotically closer to maximum fluff

wanton rapids
#

what if there was a joker that was nil

wanton rapids
#

no way triangle with face like from morefluff

astral vapor
hard plank
#

idk if i am doing it correctly

rugged forge
#

yes , it's fanart

astral vapor
azure dagger
astral vapor
#

beach vollyburr

astral vapor
grand geode
rugged forge
#

alright , brute force it is

azure dagger
hard plank
#

i think i did something

wanton rapids
#

spoilers

astral vapor
azure dagger
#

jtem

ocean vapor
#

Jtem

grand geode
#

wtf umamusume in jtem

astral vapor
#

j'taime

ocean vapor
hard plank
#

i just play uma musume because i want to finish the special week career

ocean vapor
#

Dumbass 💔

hard plank
#

(which i did not win btw i suck at this)

astral vapor
fallen trellis
#

this king of hearts is stalking me

hard plank
astral vapor
#

bro im a beginner at umamusume

#

and someone told me golshi was the easiest to train

#

i failed

astral vapor
main path
astral vapor
wanton rapids
#

i love off topic 2

hard plank
#

more fluff person

main path
wanton rapids
#

aikoyori shenanigans

hard plank
#

i am from shenanigans

astral vapor
wanton rapids
#

??

#

what would that even add

#

Triangle already exists like three times

astral vapor
#

hazard

astral vapor
wanton rapids
#

thanks metherul

#

i appreciate it

umbral pilot
#

🚌 in

astral vapor
#

this is just like michigun geometry dash

wanton rapids
#

whats a geometry dash

fallen trellis
#

hey guys is there a place where i could post bugs/crashes related to mods on this server?

wanton rapids
#

sorry the only video games ive played are balatro and luigis mansion for the gamecube

wanton rapids
#

is geometry dash like luigis mansion

main path
astral vapor
fallen trellis
wanton rapids
astral vapor
queen prairie
#

messed around and installed a bunch of mods but whenever i try to change my deck skins my game crashes anyone knows which mod do i need to remove?

pastel osprey
#

is there like a steamodded config file where I can disable mods without starting up the game? crashes on startup rn

rugged forge
#

ok , somehow it was cryptid that crashed the game

tame stream
ivory sinew
pastel osprey
tame stream
#

no

foggy rapids
tame stream
#

the mod manager as in like balatro mod manager the app

foggy rapids
#

😭

astral vapor
pastel osprey
tame stream
#

no it's been out for ages

west hatch
#

Ok i reinstalled entropy

pastel osprey
#

huh weird ive always just heard of and been using steamodded

foggy rapids
#

mod manager is an app

#

to manage instalations, like steammodded

pastel osprey
#

yeah i mean ik its not the same thing

rugged forge
#

yes , the mod manager , i think it's version of cryptid does not work

queen prairie
astral vapor
rugged forge
#

it has an oficial version , maybe thats the problem

#

i switched it with the github one , now it works

foggy rapids
#

and it doesnt work 😭

astral vapor
#

HOW MANY PROJECT MOON FANS ARE THERE

rugged forge
foggy rapids
wise stag
# forest knoll it's probably the Gamma boss blind causing the crash, given that it does somethi...

Oops! The game crashed:
main.lua:2324: functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)

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
Steamodded Mods:
1: Entropy by Ruby [ID: entr, Priority: 666, Version: 1.0.0~alpha, Uses Lovely]
2: Overflow by Ruby [ID: Overflow, Priority: 10, Version: 1.0.4, Uses Lovely]
3: Cryptid by MathIsFun_, Cryptid and Balatro Discords [ID: Cryptid, Priority: 114, Version: 0.5.11, Uses Lovely]
4: Talisman by MathIsFun_, Mathguy24, jenwalter666, cg-223, lord.ruby [ID: Talisman, Version: 2.3.4, Uses Lovely]
Break Infinity: omeganum
Lovely Mods:

Stack Traceback

(3) global C function 'error'
(4) Lua field 'update' at file 'main.lua:2324'
Local variables:
dt = number: 0.0580835
success = boolean: false
msg = string: "functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)"
(5) Lua function '?' at file 'main.lua:934' (best guess)
(6) global C function 'xpcall'
(7) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '?' (defined at line 905 of chunk main.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"])

foggy rapids
#

thanks

wise stag
#

my run was legi tamazing

wise stag
#

then ts happened

ocean vapor
#

💥

wise stag
#

i feel like my mult based boss binds are glitched ngl

torn urchin
#

Blowsup modpack with mind

astral vapor
ocean vapor
#

Stop sending me YAOI LUMI

#

That’s N

#

😭😭😭

astral vapor
torn urchin
#

What

#

WHATTT

ocean vapor
#

Lumi what the sigma

torn urchin
full edge
#

Gonna need a list of which QoL mods claim which combination of key binds because man it's hard to find a spot on the keyboard I can still use

wise stag
#

cant lose this

astral vapor
wise stag
#

@forest knoll guess on what bind i js crashed..

#

how am i supposed to fix this

#

Oops! The game crashed:
main.lua:2324: functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)

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
Steamodded Mods:
1: Entropy by Ruby [ID: entr, Priority: 666, Version: 1.0.0~alpha, Uses Lovely]
2: Overflow by Ruby [ID: Overflow, Priority: 10, Version: 1.0.4, Uses Lovely]
3: Cryptid by MathIsFun_, Cryptid and Balatro Discords [ID: Cryptid, Priority: 114, Version: 0.5.11, Uses Lovely]
4: Talisman by MathIsFun_, Mathguy24, jenwalter666, cg-223, lord.ruby [ID: Talisman, Version: 2.3.4, Uses Lovely]
Break Infinity: omeganum
Lovely Mods:

Stack Traceback

(3) global C function 'error'
(4) Lua field 'update' at file 'main.lua:2324'
Local variables:
dt = number: 0.0412049
success = boolean: false
msg = string: "functions/state_events.lua:1009: attempt to perform arithmetic on global 'mult' (a nil value)"
(5) Lua function '?' at file 'main.lua:934' (best guess)
(6) global C function 'xpcall'
(7) LÖVE function at file 'boot.lua:377' (best guess)
Local variables:
func = Lua function '?' (defined at line 905 of chunk main.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"])

astral vapor
#

@lunar sluice how do i disable the ominous blind from entropy

#

you know the fuckin one

torn urchin
astral vapor
wise stag
torn urchin
#

What

wise stag
#

since u helped me sm times

torn urchin
#

I did?

wise stag
#

can u do it again 😭

torn urchin
#

Aight

ocean vapor
#

At the cost of one kfc

torn urchin
#

Make it two

wise stag
#

bet

#

so basically

ocean vapor
wise stag
#

im legit crashing on all gamma binds

torn urchin
#

What mod is this

wise stag
#

last time i was in a gamma bind i sold those bind tokens

ocean vapor
#

Do you have latest entropy

wise stag
wise stag
#

i downloaded it yesterday

ocean vapor
torn urchin
#

I don't know cryptid...

#

Or entropy

#

You got this Kate

ocean vapor
#

Okay so

#

Download entropy from the releases

#

That should fix it

wise stag
#

we hope

ocean vapor
#

And dont use blind tokens in the gamma blinds because you’ll explode

torn urchin
#

Kaboom

#

Mic drop

ocean vapor
#

Oh and

#

Delete the entropy save file

#

In your appdata

wise stag
#

this right

astral vapor
#

i mean what

wanton rapids
#

what the fluff

exotic belfry
#

what the fluff

ocean vapor
#

What the lumi

main path
#

what the fluff

ocean vapor
#

What in the nxkkocore

astral vapor
ocean vapor
#

You should be banned 😭

wise stag
#

can yall tell me if thats the right thing

ocean vapor
#

I didnt even give consent 😭

exotic belfry
#

LMFAO

torn urchin
#

Wild

ocean vapor
astral vapor
#

I WAS JS SENDING YAOI

torn urchin
#

I see how it be

astral vapor
#

LMAO

torn urchin
#

Just be sending yaoi anywhere anytime huh

ocean vapor
#

I’m not complaining

#

Hands up

astral vapor
#

i live and die by the ruikasa

wise stag
#

kate a question

ocean vapor
#

Just don’t get me involved 😭

ocean vapor
wise stag
#

how do i delete my entropy save file

#

💔

ocean vapor
#

It’s beside the mods folder

#

There’s one called 1

#

That’s your vanilla save file

torn urchin
#

1 A 🗣️🔥

ocean vapor
#

You should find another one

#

For entropy

astral vapor
ocean vapor
#

I SAID DONT GET ME INVOLVED 😭

torn urchin
#

Brings a tear to my eye

west hatch
#

i played a 3oak and this happened

normal hollow
#

ruikasa

unborn plover
#

What the hell just happened

#

(Did I kill the chat lmao)

#

_ _

torn urchin
#

Yes

west hatch
#

i uninstalled strange pencil and its fixed

unborn plover
wise stag
delicate dust
#

What is a .jkr file

fathom gust
#

3 god damn variants of 1 joker
(ignore the ever so unpleasant void)

full edge
wind panther
#

i feel ship of theseus'ed

delicate dust
#

Oh cool

#

Is there any way to edit it I wonder

ocean vapor
#

Find how to read .jkr files

#

First

unborn plover
ocean vapor
#

God forbid you use 000000

torn urchin
#

THATS WHAT IM SAYING

unborn plover
fathom gust
#

well fuck jimbo i'd kill him

torn urchin
#

Fuck jimbo

wise stag
#

i deleted the save.jkr

wanton rapids
wise stag
#

now my game wont even open

#

😭

ocean vapor
#

😭😭what the fuck

#

Why

#

Why would you delete that😭

unborn plover
fathom gust
wise stag
#

i can restore it

ocean vapor
#

I said delete the folder 😂

ocean vapor
torn urchin
#

Lmao

delicate dust
ocean vapor
#

Shoutout yea for breaking the game

torn urchin
#

Garbled data

delicate dust
#

Figured

torn urchin
#

I think

#

I might be lying

wise stag
#

alr now its all back in place

ocean vapor
#

You can read it tho

torn urchin
#

It's been awhile but I remember Gaster

wise stag
#

the folder w those 3 should be gone right

ocean vapor
wanton rapids
torn urchin
wise stag
#

like this?

west hatch
#

Imagine comparing a string to a number, that's like comparing a word to a number basically. Also quick fix

hard plank
#

why balatro black is not a good colour - aikoyori

west hatch
#

plz

torn urchin
tidal terrace
#

hello

torn urchin
#

Hi S

ocean vapor
#

Heyyyy S

wanton rapids
#

idr if Black (Colour) is #000 black

west hatch
#

hi letter after r

wanton rapids
#

the multi resprite probably isnt

torn urchin
#

Hi letter before t

#

Wait there's two triangles?

wanton rapids
#

we have N and now S

ocean vapor
runic kraken
#

I reworked the Combat Aces from my old Themed Jokers mod to be more usable as standalone jokers?
Do you guys think they are too strong or too weak now?

wanton rapids
#

how long until the full alphabet is complete

full edge
tidal terrace
#

Why are you deleting entropy save file

west hatch
#

so uh yea ik i already asked this but quick/moderate/slow/secret 4th option fix?

torn urchin
#

These are cool

west hatch
#

It tries to compare a string with a number

ocean vapor
#

They had a problem with entropy blinds so i told them to update it and delete the save file :3

runic kraken
fiery night
west hatch
tidal terrace
#

how long before we have the full geometry

wise stag
ocean vapor
#

Restart the game

#

Should be fixed

torn urchin
#

Wrong

#

Breaks it even more

chilly holly
#

alright so i finally gor balatro mods to work and the only mod i currently have is bluestorm yuri hell yes

any texture pack recommendations (especially a dark mode, i need dark mode cards)

torn urchin
#

Yuri

chilly holly
tidal terrace
wise stag
#

MAN WHERE IS MY RUN

torn urchin
wise stag
#

💔

ocean vapor
#

Deleting the save file deletes the run

#

I thought you already knew that

wise stag
#

.

#

man

torn urchin
#

I mean

west hatch
#

yes i know i asked this 2 times already but some one have a fix of any speed?

torn urchin
#

Makes sense

wise stag
#

i still got the file tho

torn urchin
#

Bye bye run

#

Bye bye all your stakes too

#

They are all gone

wise stag
torn urchin
#

What am I looking at

wise stag
#

is my run 100% gone

torn urchin
#

Yes

#

It's gone forever

wise stag
#

💔

torn urchin
#

Sad

#

Oh well

wise stag
#

what 😭

delicate dust
torn urchin
#

You can doesn't mean you should

delicate dust
#

True..

astral vapor
#

@ocean vapor

delicate dust
#

That's so cool

astral vapor
exotic belfry
astral vapor
#

o7

wise stag
#

the joker that has a 1 in 3 chance to give a uncommon jolly joker, what is the name?

torn urchin
astral vapor
#

i'll send it in ur dms instead

tame stream
#

hi all I'm back what did I miss

astral vapor
torn urchin
#

NO MORE RUIKASA

torn urchin
#

Wait

astral vapor
delicate dust
tame stream
#

ruikasa isn't vocaloid smh

main path
#

finally got my mod logo to show up on the main screen

normal hollow
#

multiverse maximus goes kino + fool's gambit

main path
#

another mod to add to the main menu chaos

wise stag
torn urchin
astral vapor
torn urchin
#

Much better

spring quarry
#

sixsuits makes flush builds IMPOSSIBLE holy shit

summer geyser
#

my lazy ass did it

astral vapor
spring quarry
#

why did i have to pull enhanced droll joker god save me from this hell i have built myself

summer geyser
tame stream
#

can you send gumi instead

torn urchin
#

AGREED

#

SEND GUMI

forest knoll
#

yuri 💖

tame stream
#

is that the girl from Kirby in your pfp

wise stag
#

m is unlocked since the beggining of the game right

unborn plover
stiff pivot
#

multiplayer won’t work with cryptid, why?

forest knoll
astral vapor
#

they truly are... constant companions

tame stream
#

good ship I like all gumi ships

unborn plover
#

Who tf is that on the right

main path
# astral vapor

lumi
where are u finding all these
unless you have all of those saved on ur device in which case i see your dedication

tame stream
#

they're incompatible though

tame stream
tame stream
#

oh

#

well this art got like 30k on Twitter iirc

torn urchin
unborn plover
# tame stream ??????

How can my question be not clear.
Who is that green haired girl with glasses on the right

torn urchin
#

This is what I like to see

#

Credit

#

Artist?

torn urchin
normal hollow
#

i love GUMI

unborn plover
hollow coral
#

thoughts on these joker concepts?

#

Assassin
Gains +2 mult if [rank] of [suit] is discarded
Increases to +5 if Operation: Kill Jimbo is owned

Operation: Kill Jimbo
Gain 0.3x mult if [rank] of [suit] is destroyed
Increases to 0.5x if Assassin is owned

tame stream
tame stream
stiff pivot
torn urchin
tame stream
torn urchin
#

Also massive?

tame stream
#

compared to usual yes

unborn plover
stiff pivot
torn urchin
#

Oh Ninja

#

That's not what I was trying to say at all

tame stream
unborn plover
tame stream
#

or maybe they already fixed it and you have to update but I doubt that

astral vapor
stiff pivot
#

what is the order integration for multiplayer mods?

wise stag
#

is there anything stronger than ascencion power in entropy

tame stream
# hollow coral thoughts?

both are really weak imo
assassin is reallly weak and kill jimbo is also weak but xmult automatically makes it a bit better

astral vapor
wise stag
#

tf are those

hardy brook
astral vapor
hollow coral
#

balance isn't too concerning but i'd rather have overpowered jokers than underpowered ones

main path
#

same with operation

wise stag
hard plank
#

sorry

hollow coral
astral vapor
hollow coral
#

i did want to make it a specific target to go with the assassin motif but it makes more sense for gameplay

#

how about

hard plank
clever aspen
#

is there a mod that makes navigating through the customize deck screen with many suit mods less tiring

hardy brook
#

Listen. I'm waiting for the FLOOD of Yuri once Ortalab comes out

forest knoll
#

what if assassin was just suits and operation was just ranks. easier to scale assassin but operation gives you bigger rewards because it's xmult

hollow coral
#

@main path
Assassin
Gain +5 Mult when [rank] is discarded
Increases to +8 Mult when Operation: Kill Jimbo is owned

Operation: Kill Jimbo
Gain x0.5 Mult when [rank] is destroyed
Increases to x0.8 Mult when Assassin is owned

hollow coral
#

this is a bit better?

tame stream
#

yeah i think so

astral vapor
west hatch
#

this is op (Freedom deck+freedom sleeve)

#

And i like it

hardy brook
#

Ortalab Virtue

wanton rapids
astral vapor
hard plank
forest knoll
clever aspen
#

what if i want to customize my other suits that i cannot select becase they're off the screen

wanton rapids
astral vapor
#

does anyone have a crk mod yet

tidal terrace
formal orchid
#

gojo

tidal terrace
#

maids in balatro soon

wanton rapids
#

Woah

summer geyser
#

gang

#

need help abt jokerforge

hardy brook
tidal terrace
#

hey shinku hru?

clever aspen
hardy brook
#

Tired

hardy brook
summer geyser
clever aspen
#

wait what is this

summer geyser
#

yes the "seal" is a joker

summer geyser
tidal terrace
clever aspen
#

no like

#

the website

#

thing

summer geyser
#

jokerforge

tidal terrace
hardy brook
#

W

wise stag
#

man

summer geyser
#

please guys i need help real bad

hardy brook
#

waiting for the bunny rea tho

wise stag
#

anyone got any idea

#

💔

formal orchid
#

asking in jokerforge thread or discord server probably

tidal terrace
summer geyser
#

i tried

#

response:nil

tidal terrace
#

i just didn't have that much time between work and making this mod and other stuff sadly

hardy brook
summer geyser
#

please god help me

tidal terrace
astral vapor
#

@tidal terrace what mod are u working on

hardy brook
#

What's wrong?

tidal terrace
astral vapor
tidal terrace
#

no

#

not yet

hardy brook
#

lemme see

astral vapor
#

ok

summer geyser
hardy brook
#

what?

astral vapor
#

can you add meido mei from 100 kanojo

summer geyser
astral vapor
hardy brook
#

Oh

#

That's Joker FOrge

summer geyser
#

yes the genuine seal is a joker

summer geyser
hardy brook
tidal terrace
#

im naming the mod meido

summer geyser
#

NOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO-

hardy brook
#

I'm a coder not a forger

formal orchid
#

start today

main path
tidal terrace
formal orchid
#

code it instead of using jokerforge

tidal terrace
formal orchid
#

lua is real

tidal terrace
#

or you'll end up in meido

formal orchid
#

lua is everywhere

#

lua.......

hardy brook
#

Lua lua lua lua lua

formal orchid
#

i must spread it...

summer geyser
summer geyser
formal orchid
#

lua? lua..

tidal terrace
#

thunderedge is god now

formal orchid
#

also wheel of mods is today

summer geyser
hardy brook
clever aspen
#

jokerforge doesn't have destroying cards??

tidal terrace
#

when did this update dropped 00_furinaclown_DNS

summer geyser
wise stag
#

WHAT IS THIS

hardy brook
#

ah

summer geyser
wise stag
#

man

west hatch
wise stag
#

i know a rune caused this

#

im p sure

#

i legit forgot which one tho

formal orchid
#

aaaaaaaaaaa

#

i love stickers

wind token
#

GUYS, I FOUND IT, I FOUND THE G SPOT

tidal terrace
wise stag
#

yea nvm

formal orchid
#

this is not me

wind token
#

wrong server

#

fuck

tidal terrace
#

take it back

formal orchid
#

stickers are PEAK

tidal terrace
#

i'm not playing revo's vault anymore

formal orchid
#

didnt you already say that

#

you dont like it

tidal terrace
formal orchid
#

boo

#

👎 👎 ** **

tidal terrace
#

judgment feels years above revo's vaut

formal orchid
#

no

#

not even close

#

judgement is still incomplete in many ways

tidal terrace
#

it's a good base product

formal orchid
#

cause of the ideas provided

#

only thing i like about judgement are the ideas

tidal terrace
#

00_furinamiddlefinger_DNS print()

formal orchid
#

print and will remain as print

main path
formal orchid
#

when s likes my mod

north crater
tidal terrace
formal orchid
#

printer?

tidal terrace
#

printing money

main path
#

as for my mod, i feel like its always gonna be incomplete
so many ideas i have

#

and so little time to implement

formal orchid
#

my mod is never complete

#

i dont have any ideas rn but

wanton lintel
formal orchid
#

i have one atleast once

#

after a while

forest knoll
#

my mods will always be incomplete because i suck at art

tidal terrace
#

i have ideas they're just not great lol

formal orchid
torn urchin
#

Idk what Teto to draw

formal orchid
#

my ideas suck

#

but eh

#

ideas are ideas

#

i like implementing them

main path
#

yeah until i either bite the bullet and learn to art or ask people to do art for my mod it'll have like no art

tidal terrace
#

revo your ideas are just , print(something)

main path
storm forum
#

Some ideas don't stick.

formal orchid
#

no

wanton lintel
formal orchid