#Resurgence (WIP) - Primordial Arts

1 messages · Page 6 of 1

static finch
#

isn't it just grabbing that one variable

night prism
#

you are just making a pointer to the table

#

so instead of writing the full name you just write anv

night prism
static finch
#

for once i get it first try

night prism
#

the whole table actually

#

but the table has only one value

dusty river
#

ahh, ok, so technically, I could just write the full thing each time instead, but to save time and make things more visible-

night prism
#

exactly

static finch
#

yeah

night prism
#

in some other languages it would make a copy of the table

#

In that case you couldn't use this method

dusty river
#

do you mind if I ask some questions that are possibly incredibly obvious and unessessary? so I can try to understand balatro code/lua better? lol

night prism
#

sure

#

@static finch listen too

#

you need it

dusty river
#

what do the "self", "card", and "context" mean and do in this part of the code? I see it constantly, and I'm curious what each part means and if it matters what order they're in and such

night prism
#

you should not worry about it 90% of the time

#

at least in jokers

#

card is the table that contains all the joker's values

#

so you before used card.ability to access the abilities of the joker

#

context is the most important part for joker effects

#

it determins what's actually happening and where

#

in the code you copied you check for context.joker_main

#

which mens that you are checking if this is the main scoring phase of the joker

#

essentially the calculate function is called all the time, and you use context to know what's actually going on

#

this should be it

night prism
#

they are inputed when the game tries to calculate the joker

#

i hope this was clear

#

this is a bit of a wall of text lol

static finch
#

as i am writing an essay

night prism
#

lol

dusty river
# night prism i hope this was clear

it was, very much so, thank you
I did know a bit about context, but I learned a lot about what self and card mean here and a lot of other stuff to

night prism
static finch
#

i think i got that

#

my problem is figuring out which contexts to use when

static finch
#

and which actually exist

night prism
static finch
#

which i did not find

night prism
#

if you know when each one is called the you should be fine figuring out what to use

static finch
#

lemme get back to typing this stuff is timed

static finch
night prism
#

I like the way balatro handles context

#

i will probably copy it for some of my future projects

#

and it's also surprisingly performance efficient

dusty river
#

I think, I understand what I need to do to get frisk done, just don't know enough to know how to get the functions done
I need to, in the joker_main context, check all existing jokers and read the first instance of each rarity in a joker, then use that to increase the chips

#

that sound right?

night prism
#

yeah

#

you need to use a loop to check all jokers

#

and just multiply the chips by the number of rarities found

night prism
#

everything is a damn table

dusty river
#

(insert "it's all ohio meme" here)
yeah, okey
I'll need to figure out how to do the whole "loop check" thing there as well

#

in order to get frisk working

night prism
dusty river
#

yay, tables :3
how do I make this table? and find the jokers within it?

night prism
static finch
dusty river
#

how would I find the table?

night prism
#

it should be G.jokers.cards

night prism
#

but you also need to check for the rarity

night prism
dusty river
night prism
#

you just need to return mult, insted of mult_mod and no need for the message

#

smods does that automatically

dusty river
#

okey, I'll see what I can do here 🫡

night prism
#

but you are using anv so that should not be an issue

night prism
opaque oasis
#

ok i got some time to code

dusty river
#

gimme some Gabey Babey!

#

sorry, that was dumb

#

soirry

#

lmao

opaque oasis
#

ncm

#

nvm

#

i dont have

#

time to code

#

i will code a few hours later

#

like i said

dusty river
#

so, I understand most of this, but I'm a tad lost on what the meanings of the bit in the middle means
#G.jokers.cards[i].ability.set == 'Joker'
I know that i means integer here and is the same integer as before, as I've done some work with "each" stuff in godot before
and I know == means that it's searching for something too, but that's the limit really
I mean, I get WHAT it's doing, like, that it's upping the friends value by 1 for each joker
but to me it almost reads as "For each joker that is a joker" or something, lmao

night prism
#

this is looking at all the cards inside the joker area, and for each one that's part of the set "joker" it increses the friends value

#

not sure if checking the set is needed

#

since i'd assume everything inside the joker's area is a joker

#

but to be sure it's better to check

night prism
#

so if somehow a consumable ends there it would still be counted

dusty river
#

ahh okey, so I'm assuming G is an area that cards can be contained in, jokers is the joker slots area, and cards are, well, cards?

night prism
dusty river
#

OH

night prism
#

everything is inside G

dusty river
#

what about ability.set?

night prism
#

set is the type of card

#

in this case we only care about jokers

#

so we check that

dusty river
#

so, I think, for example, if I were to want "+20 chips per common joker", that'd be #G.jokers.cards[i].ability.set == 'Joker' and #G.jokers.cards[i].ability.rarity == 1 ?

night prism
night prism
static finch
#

okay done with writing

#

gotta go in 15 mins

#

i'll get back to reviewing the comments @dusty river made

night prism
#

which in this case is #G.jokers.cards

#

after that you write do to start the loop

dusty river
#

🤦‍♀️ I mixed the 2 lines lol

night prism
#

yeah

#

also # should not be there

#

that specifically converts a table into the number of objects inside of it

#

so you must add it to the loop to see the number of times to run it

#

but not later since you need the actual content of the table

#

like in abstract

dusty river
#

hows this?

dusty river
night prism
#

the first time you add #, the second time you don't

#

for this you could also use pairs() but for now lets not complicate things

dusty river
#

I've swapped the #s

night prism
#

if yes it should work already

dusty river
#

let me do that and I'll test

#

I did this and now it's saying the row 5 of main.lua is nil?

#

spaces... it's the spaces isn't it?

#

nope

#

hmm

night prism
dusty river
night prism
#

add an end after that too

dusty river
#

double end?

night prism
#

for the for and if statements

dusty river
#

okey, thanku, game launched now

#

time to test frisk

#

works!
now I just gotta swap from triggering from any joker to only going up from unique rarities

dusty river
#

My idea for what I'd do with the knowledge I had was to check for each rarity I knew individually and set a unique local var for each
typing this out I realize it was even worse than I thought it was at the time lol

night prism
#

you just need a table, as always

#

for each joker, add their rarity to the table and only increase the var if the rarity is not already in the table

dusty river
#

ok, so, I'm one step farther, I've managed to make it trigger for each Common joker instead of any rarity

dusty river
night prism
#

local rarities = {} before the for loop

dusty river
#

ok, I'll see if I can do anything with this

dusty river
#

== is for if a value is equal, not contains, right?

#

my brain aint working right rn lmao

static finch
#

hey chat

#

new idea

#

considering we have vampire survivors stuff in already i'd make the new tarots we add be darkana

dusty river
# night prism yes

hmm, ok, so, this would mean, if it was already in the table, right?
if so, how do I swap that to not contained, what is the not equal to sign for lua?

#

ahh, wait, fuck, how do I add the rarity into the pool if it isn't already in there

#

oh, probably just Add right

#

like, G.jokers.cards[i].config.center.rarity + rarities

#

well, this isn't right, cuz it crashed lol

night prism
#

Wait a minute

#

I can't type rn

dusty river
#

ok, understood

night prism
#

i'm back

#

u still here @dusty river ?

night prism
#

so in this case i'd do it like this rarities[G.jokers.cards[i].config.center.rarity] = true

#

then to check if the value is inside the table if rarities[G.jokers.cards[i].config.center.rarity] then

night prism
# dusty river

also you can't use and to separate statements, use a newline instead

#

or if you must have it all in one line use a semicolon

static finch
night prism
#

and is only used for conditions

night prism
static finch
dusty river
#

tyhsi song makes me cry every time 😔

static finch
#

true

dusty river
#

lmaosamfnijne

static finch
#

the quality is bringing me to tears

#

crunchier than a forgotten protein bar

night prism
#

i need to go again though

dusty river
#

okey, I'm trying to put it together rn

dusty river
night prism
#

remove the one after friends+1

dusty river
#

IT WORKS !! 🎉

dusty river
night prism
#

lets go!

dusty river
#

should I do a commit now?

night prism
dusty river
#

commit has been made

static finch
#

commit acquired

night prism
#

now i shall code the augments

#

I spent a bit fixing an issue with motherboard

static finch
#

very cool indeed

dusty river
#

ahh fuck wait

#

what'd i do nooo

#

its crash on start up again, how? nothing changed?

night prism
#

maybe you merged some changes i did

static finch
night prism
#

when you committed

#

imma check

#

fixed

#

somehow a bracket got lost

static finch
#

(my positional navigation skills are absolutely horrendous)

night prism
#

how are we calling the augments?

#

using the same name as the consumable would be confusing

dusty river
#

my orginal thought was Augmentation but that may still be confusing, hmm

opaque oasis
#

ello again

#

just checking

night prism
static finch
#

hmmmmm

#

also wait are you serious

night prism
#

kinda

static finch
#

she is literally american how doesn't she know

#

her lexicon should be swollen

#

by now

night prism
#

what as nationality to do with creativity?

static finch
#

being born in an english-speaking country i'd expect her to have better lingistic skills than me in her same language

night prism
#

i know what you meant

dusty river
#

how about "Design"?

#

"Feature"?

static finch
dusty river
#

AH, I GOT IT, how's "Component"?

static finch
#

..sounds out of place imo

static finch
#

they're all so varied in function and theming

#

why not call them tweaks

night prism
night prism
dusty river
#

mhhh, these are all nice, tweaks is a good one

static finch
#

ikr

night prism
static finch
#

i must undervalue myself :3

night prism
static finch
night prism
#

i assumed as such

#

after that?

#

you need to get the grip on this

#

i wont be helping for everything

#

nor will revo, i assume

static finch
static finch
#

yk

opaque oasis
#

and gone if i dont want

#

idk man

night prism
#

exactly what i meant

static finch
#

i'd like detailed descriptions on conditions for wanting to be here and not wanting to be here

#

thank you

opaque oasis
#

i'll help if you struggle or something but i wont be doing everything as well

opaque oasis
night prism
static finch
#

in your decision

#

yk what, nevermind those said conditions are useless to know anyway

#

they're subject to change any second

static finch
#

well i'll do stuff after dinner

#

i've got time

#

i suppose

opaque oasis
#

well i also dont need to explain myself with every single detail

night prism
#

how will tweaks look like?

opaque oasis
#

jst sayin

night prism
#

a texture i assume

dusty river
#

I think so yeah, levers would have an actual lever placed on the card for example

night prism
#

cool

static finch
night prism
static finch
#

if you already did on something else i can always look at it i suppose

#

when i'm done i think i'll try to make this

opaque oasis
#

i'll do a few vampires ig

static finch
#

leave the easy ones?

#

i wanna try making more kinds of things

night prism
#

i guess i will be the one doing all the shaders and sound effects

opaque oasis
#

i was thinking of

#

doing all the vampires

night prism
#

badly, but still better than nothing

static finch
#

i'd argue they don't look bad at all

night prism
#

the code is ass though

static finch
#

just leave me pugnala

#

wanted to try and make her specifically

opaque oasis
#

ok

#

is that

#

hand held

#

or

#

played hand

night prism
opaque oasis
#

if its hand held just copy + paste blackboard

static finch
#

the joke is Bayonetta

static finch
opaque oasis
#

ic

night prism
static finch
#

bruh

#

go play vampire survivors

opaque oasis
#

does poe give the mult on scored cards or

#

after scoring

static finch
#

when scoring

#

like the suit jokers

#

it just increments

opaque oasis
#

ok

opaque oasis
#

like

#

if the hand is

static finch
#

yes?

opaque oasis
#

H H D H H

#

does it go

static finch
#

4488

opaque oasis
#

4 4 - 4 4

#

oh

#

88

static finch
#

and does nothing on diamonds

static finch
opaque oasis
#

it says consecutively

static finch
#

wait

#

oops yeah I edited that

opaque oasis
#

so i thought it'd reset

static finch
#

the og concept should've been that

#

mb

#

like you said

opaque oasis
#

so it will reset?

static finch
#

yeah

#

4444

opaque oasis
#

why not

#

4848

static finch
#

every 2

#

scored

opaque oasis
#

why though -.-

static finch
#

doubling was too strong to have

#

on only one

#

else it'd go like 4 8 16 32 64

#

that'd be a bit much

#

for an uncommon

opaque oasis
#

ic

night prism
#

Which one are we coding first?

#

coding this may cause problems if the ranks are not stored as strings

#

if they are numbers it would be a mess

dusty river
static finch
#

lady and gentlemen

#

i can code for an hour and a half

#

approximately

night prism
#

good

#

you may get half a joker done with all that time

dusty river
static finch
static finch
night prism
#

depending on what they represent

#

as long as we manipulate numbers that's fine

dusty river
#

ahh, right, didn't think of that

#

was gonna swap it but the other effect I thought of is probably meaningless lmao

static finch
#

@night prism so is there a list of contexts or

night prism
static finch
#

hell yeah

#

this should stop me asking for stupid bullshit i hope

night prism
night prism
#

now people are loured in by the cuteness whenever smods is linked

static finch
#

real

#

oh hey

night prism
#

lol

#

where is the cryptid? Entropy replaced it?

static finch
#

i was thinking of making a counter for diamonds and clubs

night prism
#

i will add a new context too

static finch
#

then checking it against the max selection size

static finch
night prism
#

since there is no context for destroying jokers

static finch
#

huh

static finch
static finch
#

in the code

#

makes a counter for every suit to see if clubs and another suit scored

#

but i'd need to remove the other suit checks and just keep wild cards, diamonds and clubs

night prism
static finch
#

yeah but do you have something for hand selection size

#

cause stuff like sticky hand could screw it up if i set it at 5

night prism
static finch
#

oh

#

that's useful

night prism
static finch
#

lemme see

static finch
#

even if i end up not using it

#

it could still be useful

#

for what i wanted to do with alucard

#

no he does not exist yet

#

yet

night prism
static finch
#

hmm

#

good

#

that should do well even with stuff like infinite deck

night prism
#

#G.play.cards the number of played cards

static finch
#

okay that should be the one

#

no?

night prism
#

yeah

static finch
#

omg

#

thunk put the lists for suits in a different order for the calculation here

#

almost screwed it up

#

does he deserve the mcmillen treatment

night prism
#

why does the order matter?

#

and what are you doing? because i'm not sure i get it

#

actually i'm pretty sure i don't

#

ok, added context.anva_destroyed for when a joker is destroyed

static finch
#

can i put the equals or more than symbol in some way

night prism
#

=

static finch
#

oh it's that ximple

#

shrimple

night prism
#

easy as that

static finch
#

do i need to put the # in g.play.cards

night prism
# night prism >=

different than is ~=, i add to make a whole new keyboard layout to write this

#

fucking italian keyboard

night prism
#

so just G.play.cards gives you the table of all played cards

#

not the number

#

so the short answer is yes

static finch
#

oh

#

should the g be uppercase actually

night prism
#

a few things

static finch
#

yes?

night prism
#

first of all i have no idea where that anv.extra() is coming from

static finch
#

wait

#

oops

night prism
#

remove it

static finch
#

now it doesnt know what xmult is

#

good

night prism
#

then, right now you are checking if the clubs and spades is more than the played cards

#

never mind

#

i read it wrong

#

this should work but it's not ideal

static finch
#

i know but at least it works?

#

how else would i do it

static finch
#

FUUUUCK

#

wait no nvm

#

where's the spades

night prism
#

i misread

static finch
#

great

#

this is why i enlarged the font

night prism
#

you should not need the first if statement checking if the card is a wild card

static finch
#

why not?

#

to be fair i kept it in just cause i'm not sure if wild cards work like the rest

night prism
#

is_suit already does that

static finch
#

or just have all 4 suits

static finch
#

why's it there in the vanilla code then

night prism
#

i think it's a smods addition

#

not sure though

static finch
#

i'd keep it like this

#

if it dies then i'll remove it

#

?

night prism
#

but anyway, there's an even better way

static finch
#

i dunno seems like it's harmless

static finch
night prism
#

copy paste my function from darkside

#

wait, i'm gonna do it for you

night prism
#

pull down the new commit

night prism
static finch
night prism
#

you can remove everything before if suit["Diamonds"] + ecc

static finch
#

is suit diamonds?

#

i don't get what i should remove tbh

#

also i gotta commit to get it

#

is it fine if i do?

night prism
#

inside of calculate

night prism
static finch
#

this is even more unclear

#

what the hell is this

night prism
#

this clear enough?

static finch
night prism
static finch
#

sorry if i'm stupid

#

sooo uh

night prism
#

it should be at the bottom of the file

#

move it there

static finch
#

this is knda screwy now

night prism
#

put it at the end

static finch
#

ok ok fixed

night prism
#

ok

#

now

#

in the code for the joker

static finch
#

holy shit it's 10pm

#

almost

night prism
#

after context.joker_main then, add a new line

static finch
#

yes?

night prism
#

and type local suits = ANVA.get_suits(G.play.cards)

static finch
night prism
#

yes

opaque oasis
#

isnt that too complicated

night prism
#

also make the g uppercase in the nest line

static finch
night prism
opaque oasis
#

i would've just switched blackboard's code to check for played cards

night prism
#

it's just a line

opaque oasis
#

no like

static finch
#

i literally just copied reflection's

#

but apparently this is better

opaque oasis
#

it would be so easy

night prism
#

this is a general function for it

#

so you can reuse it

#

and it's litterally just 3 lines

static finch
#

soo uuuuh

#

does this just get suits

night prism
#

how can you make it easier

static finch
#

explain how this function works

night prism
#

?

static finch
#

i understood what i wrote before

#

i don't get this

opaque oasis
#

i mean it would've takean so much less time to complete and understand

night prism
#

if you hover the function it gives a short explanation

#

it gives a table with all the values in hand

#

i made it earlier today for darkside

#

and so i'm reusing it

night prism
static finch
#

is this suppsed to be like this

night prism
#

it gives a table with each suit and the vumber of each suit

#

modded suits included

night prism
#

anv.xmult

#

for the blue one

opaque oasis
#

idk i never used functions properly

night prism
#

you need to code them only once

static finch
static finch
#

omg

opaque oasis
#

i never said i was an expert tf

static finch
#

:3

opaque oasis
#

i aint one

night prism
#

you have twice my experience

static finch
#

i was jokiiiiing

night prism
#

prove that

dusty river
# night prism it saves a lot of time

omg rev, u realize what this means??
you can make a function that does printer stuff!
that makes your job so much easier!
probably cuts down the code in your mod by half!

#

lmao /j

night prism
#

lol

static finch
opaque oasis
static finch
#

@dusty river kindly make a loc for pugnala

#

i can't distinguish it

#

from other stuff

night prism
#

all of it

static finch
night prism
#

what line is line 333?

static finch
#

redundant parenthesis i know

night prism
#

you changed the code

static finch
#

is that the extra parenthesis

#

what?

night prism
#

removed extra form config

#

you removed extra from config

static finch
static finch
night prism
#

add it back

static finch
#

or am i stupid

opaque oasis
#

wow

static finch
#

omfg

night prism
#

i said to remove it at the end

static finch
#

mf i need 3 rs

#

for how dumb i am rn

#

okay

#

this time it should not explode

#

i hope

#

it uh

#

it did nothing

night prism
#

show me the code again please

static finch
#

ok nvm

#

i think i got the wrong joker

#

@dusty river are you doing thaaat

night prism
#

yeah

static finch
#

i am getting super confuzzled

night prism
#

without loc it's a bit hard

static finch
#

k looks like it's working

night prism
#

you should at least add the names to loc yourself

static finch
#

but what should i add precisely

#

isn't it set in stone

night prism
#

for now just add the name of the joker

#

so that you can know what it is

#

also you need to take a lesson on formatting god

static finch
#

fuck

#

it doesn't work

night prism
#

i'm struggling to read your code

static finch
#

with more than 5 cards played

#

just tested it with fractal fingers

night prism
#

weird

#

wait a second

static finch
#

how are you struggling to read it it's so short

night prism
#

but it's so confusing

night prism
#

the code is right

#

actually i think there is an issue with the code

static finch
#

where

night prism
#

the logic is wrong

#

this kinda my fault

static finch
#

...

night prism
#

sorry

#

but it's an easy fix

static finch
#

if i did it like i wanted to it would've worked after all

night prism
#

for now it counts wild cards twice

static finch
#

how good is it to be right?

static finch
night prism
#

so

#

easy fix

static finch
#

to be fair it doesn't matter does it

night prism
#

it does

static finch
night prism
#

3 wild cards and 2 hearts will trigger this

#

because they count as 3 of each suit

#

6 in total

static finch
#

what?

#

oh wait

#

right

#

i'm stupid

#

so uh

#

how do we fix this?

night prism
#

so

#

instead we check if there are no onther suits

#

so we need a small loop that looks at all the contents of the suits table we made

#

and returns false if any of them is not club or diamond

static finch
#

how easy

night prism
#

it is

static finch
#

3 lines

#

eh?

night prism
#

still better than seing double

static finch
#

how dare you insult thunk

night prism
#

so

#

for now remove the last if statement

#

and create another local after local suits

static finch
#

and return too

night prism
#

create a var called local other_suits = false

static finch
night prism
#

this will be true if we find other suits

night prism
#

and where we add the other if statement we removed add a new one

static finch
#

k

night prism
#

that just says if not other_suits then

#

so this gets returned if no other suits are in hand

static finch
#

okay

night prism
#

show me the code so far, to be sure

static finch
#

i gave a tab more to that first end

#

btw

night prism
#

i'm tring to explain my reasoning so you can learn a bit

static finch
#

yeah but still

#

i am convinced how i did it was better

night prism
#

it was right

#

but it did not work with many modded features

static finch
#

aww dang it

night prism
#

so

#

after declaring the other suits var

#

we need to actually check if other suits are there

#

so we need a for loop

static finch
#

this goes before if other suits etc

#

right

night prism
#

write for k,v in pairs(suits) do

#

after other_suits

static finch
#

after if other suits

night prism
#

no

#

after local other_suits

#

before if

static finch
night prism
#

this for loop looks at all the things inside of suits

static finch
#

this pairs thing still is unclear to me though

night prism
night prism
#

in our case

static finch
#

hm okay

#

suits and amount?

night prism
#

suits paired with their amount

static finch
#

i got the wrong term

night prism
#

so spades = 5 means there are 5 spades in hand

#

k stands for key, its the name of the variable

#

v stands for value, so the value of the variable

#

so in this case k = spades and v = 5

#

clear?

static finch
#

yeah

night prism
#

for does this for all the pairs

static finch
#

i'll be making a documentation outta you

night prism
#

so if there are 5 suits it does this 5 times

static finch
night prism
#

yes

#

we need to make so that if the key is not one of the desired suits and the value is more than one the thing does not trigger

static finch
#

yes

#

so

night prism
#

so is there is more than 0 spade is does not trigger

#

so, after for

#

next line

static finch
#

yeah?

night prism
#

type if k ~= "Clubs" and k ~= "Diamonds" and v > 0 then

static finch
#

why ^?

night prism
#

so if the key is not clubs nor diamonds and the value is more than 0

night prism
static finch
#

wait

#

shit

#

i should enlarge font again

night prism
#

this means different

#

not equal

static finch
#

yeah i know

#

i saw it as a ^

#

cause super blind

night prism
#

no problem

#

so, after this type other_suit = true end

#

so this means ther's another suit other than these two

static finch
static finch
#

and not trigger

#

i presume

night prism
#

then you just need to close the for loop with end

static finch
night prism
#

misisng s

night prism
#

i know

static finch
#

well anyways

#

lemme test it

night prism
#

my bad

#

wait

static finch
#

np

#

i misread stuff al lthe time

night prism
#

you miss one end

static finch
#

no?

night prism
#

the one after return

#

should be before return

#

otherwise you will be returnig for every suit in hand

#

becuse it's inside the loop

static finch
#

afk 1 sec

night prism
#

actually it should be before if

#

sorry

#

show me the code before testing it

static finch
#

like this?

dusty river
#

bacc, funny hyena girl was just having a mini mental breakdown, no biggie lmao
anyway, back to idea concepting lmao

night prism
night prism
#

and move the end after return up two lines

#

after other_suits = true end

night prism
#

show the whole thing

static finch
night prism
#

do this

#

end it will work

static finch
#

like move it

night prism
#

yes

static finch
#

it's missing an end

#

tho

#

i put it like this

night prism
#

yes

#

the formatting is bad but nvm

#

i'll fix it later

static finch
#

3:

night prism
#

try to run this

static finch
#

you made me redo this 5 times

night prism
#

sorry

static finch
#

i mean

#

you're not wrong

#

but how do you expect me to make it good

#

if it keeps shifting

night prism
#

i made a mistake

#

because i misunderstood how the card was supposed to work

static finch
#

't works

static finch
#

did that just in time

night prism
#

I hope this thing was informative @static finch

static finch
#

it was but

night prism
#

Anyway, I'll finish coding the tweaks

static finch
#

i still gotta understand those loops better

night prism
#

Loops are a bit tricky

#

The first time I was programming they really confused me

static finch
#

in theory I get it

#

in practice I wouldn't know how to apply it

night prism
#

But after you get them they become super helpful

night prism
#

Rather than one time

#

The loop triggers for each value, and k anv v are always equal to the current value that's being checked

static finch
#

mhm

night prism
#

btw I really like expaining stuff, dunno if I'm good though

#

I just like yapping I guess

static finch
#

GUESS WHO ELSE-

static finch
#

at least you're clear

night prism
#

Thank you

static finch
#

if not explaining it meticulously

night prism
#

I like leaving no doubt

#

Even If that means overexplaining stuff

#

Better than not explaining enough

night prism
static finch
#

I meant if you are not over explaining things you do simplify them to be clear

night prism
static finch
night prism
#

But some of my classmates did not

#

Even if they were not dumb at all

static finch
#

imagine if I was in one of those high schools where even if your average is 4 you still pass by some miracle

#

no idea how but still

#

my classmates are fuckin nut jobs

night prism
#

They all passed in the end luckily

static finch
#

more like everyone is saved in Italian schools

#

today

night prism
#

The teacher had a good heart

night prism
#

But my class was a very good one, way above average

#

It was pretty much selected to have all good students

static finch
#

strange

night prism
static finch
#

I only got almosy only maranza if you know what I mean

night prism
#

Classes are made deliberately

#

So the people making them ofter have biases

static finch
#

no it's more like

#

we would've had girls but they all went in the A class

night prism
#

And they tend to put all the dumbasses togather

static finch
#

meanwhile we remained in B

night prism
#

That's why you are gay then

static finch
#

they got scared by the overwhelming majority of idiots

static finch
#

my bff's not Italian also

#

like bruh

night prism
static finch
#

can't date one of these simpletons

night prism
static finch
#

doing applied science here

night prism
#

God

static finch
#

not normal science

night prism
#

They opted out, that's rough

static finch
#

well I didn't need girls anyway

night prism
#

You truly were bad

static finch
#

hell I would've liked it being alone

#

If we go in DAD again I'm partying

night prism
#

Why whould you?

#

Please no more pandemics

static finch
#

cause I LOVED IT

static finch
#

and I like being home

#

and the sun hurts me

night prism
static finch
#

and I can cheat easily

static finch
night prism
#

I get why you'd like it

static finch
#

I don't care really

night prism
#

I liked it too

#

Kinda

static finch
#

damn I should make a self-insert as a vampire joker

#

I'm a practically a vampire anyway

night prism
#

The period after dad was the worst

#

We would go to school but could not get close

static finch
dusty river
static finch
#

I loved it 2

static finch
night prism
#

We almost skipped the 5th year of hs exam

#

Almost

static finch
#

god that would've been so cool

night prism
#

Not by one year

#

The class before ours did

dusty river
#

what does this mean?

static finch
#

it's a reference

#

being a silly cat as being a silly person

#

who likes cute things

static finch
night prism
#

You cold prolly guess my age from this, but who cares

#

I'm not keeping secrets

static finch
#

meh

#

like, 22?

#

approximately

#

and you say you're talking to a child

#

way to pump it up mr retirement age

dusty river
#

you are a 32 yo bisexual woman with autism and adhd
I'm fortelling it, I'm a fortune teller

static finch
#

BASED BASED BASED

#

REAL

#

common railgun W

#

destiny chose a based transbian to lead this glorious vessel of code

night prism
#

I guess I have no choice here, right?

static finch
#

well

#

men or women first

dusty river
static finch
#

GIMME SOME

#

hey. what if I made that stupid ass devil concept as an oc.

#

that would be funny wouldn't it

#

(yes yes egg I know)

dusty river
#

u could, go for it

#

tho u gotta gimme the lore drop first

night prism
static finch
#

HAH

#

for now it's all references all the way down

#

no OCs

night prism
#

No normal jokers either

static finch
#

one or 2 wouldn't hurt would they

dusty river
static finch
dusty river
#

hehehe

static finch
#

and fish

night prism
#

I guess

dusty river
#

straight kate was litteraly made to be as normal as possible lol

static finch
night prism
#

Btw @static finch have you committed?

static finch
#

how boring

static finch
dusty river
static finch
#

show me last commit note pwease

night prism
#

I'm cool

static finch
#

you're a bi 32yo trans woman shut up

dusty river
#

take your meds gramma

night prism
#

Why you had to age me lol

night prism
#

Was not being trans enough?

static finch
#

obviously not just cool anime fights with grooming sim on the side

dusty river
#

older women are hotter as a [REDACTED] fan

static finch
#

...as a what?

#

scp fan?

night prism
static finch
#

no it's also cool anime fights and philosophical discourse

#

and MYRIAD TRUTHS

night prism
#

With pedophilia as an extra i guess

dusty river
#

and transphobia, don't forget persona's transphobia

static finch
#

it's cool if Ren does it ok

night prism
static finch
#

oh god wait

#

no

#

no

#

not naoto

#

please

#

no

dusty river
#

persona 3

static finch
#

wait what

dusty river
#

persona 3, I've heard it 99 times and a half

night prism
#

But it makes sense, all transphobes are pedos too after all

static finch
#

I didn't play that one yet

static finch
static finch
night prism
#

Indeed

#

There are more pedos there than normal people

dusty river
# static finch I didn't play that one yet

there's an encounter with a woman that hits on the main characters on the beach, and they're all excited until they learn that the adult woman that is hitting on these teenagers is... well, I don't think I need to continue that

static finch
#

but all Nazis

night prism
#

All nazis are pedos too

#

So it tracks

dusty river
night prism
#

Essentially everyone I dislike is a pedo

static finch
night prism
#

It's that easy

static finch
#

and a bar which serves as a location to meet a s link

static finch
#

deserved

opaque oasis
#

for poe idk wtf im doing

static finch
#

bruh

opaque oasis
#

im doing random bullshit go

#

jst so y'all know

static finch
#

it'll be a would

#

I'm sure

night prism
static finch
opaque oasis
#

like if that timer wasnt a thing

#

the

#

44 88

static finch
#

oh

opaque oasis
#

my life would've been so much easier

static finch
#

so like