#archived-modding-development

1 messages ยท Page 297 of 1

fair rampart
#

VS Fluke is 36/45

#

SS Fluke is 64/80

#

The wiki mixed up the 45 and the 64

cunning lagoon
#

i still dont see how thats relevant

#

if anything that proves my point

#

there is no reason to use fluke no matter the notch cost

fair rampart
#

The dmg per fluke is 4/5

hollow pier
#

why double hit with ss when fluke is a nonuple hit

fair rampart
#

So I should increase it to 5/6?

cunning lagoon
#

to however much it was on 1221

hollow pier
#

make it 0/6 tbh

fair rampart
#

Oh, that would be 5/7

#

SS would do 80, and SS+Shaman would do 112

cunning lagoon
#

that's perfect

#

not as broken as 144 damage fluke but not as utterly useless as 80 damage fluke

hollow pier
#

make it 144 tbh

cunning lagoon
#

also i pbd by 3 minutes but my rta is 4 minutes slower

#

lovely

hollow pier
#

good

cunning lagoon
#

missed the 1cycle got stuck in the dark room before wk for half a minute and failed fq once

#

2:43 should be free

hollow pier
#

failed force quit

cunning lagoon
#

hmm yes

fair rampart
#

How would I override the fluke dmg? Just use HitInstance?

#

I've done it before by directly editing the assembly

#

but I want to do it with modding

#

Hold on, I just noticed that Spellfluke uses (GameManager.instance.playerData.equippedCharm_19) instead of (PlayerData.instance.equippedCharm_19)

#

why?

leaden hedge
#

doesn't make a difference

rain cedar
#

It's a singleton so any way of accessing it is identical

#

Same with most of the useful classes

ornate rivet
cunning lagoon
#

galaxy brain

ornate rivet
#

I hope at least one of those people is being sarcastic

fair rampart
#

How can someone be impressed with roblox graphics

#
        private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
        {
            orig(self);
            if (!PlayerData.instance.equippedCharm_19)
            {
                self.GetAttr<int>("damage").SetAttr("damage", 5);
                Modding.Logger.Log("GET FLUKED!");
            }
            if (PlayerData.instance.equippedCharm_19)
            {
                self.GetAttr<int>("damage").SetAttr("damage", 7);
                Modding.Logger.Log("GET FLUKED!");
            }
        }
``` This should work, right?
ember bloom
#

This code smells

cunning lagoon
#

good

fair rampart
#

Wtf

#

It still does normal dmg

cunning lagoon
fair rampart
#

I just hit WK w/ non-shaman and it did 64

#

The log works tho

#

GET FLUKED x16

cunning lagoon
#

very good game

fair rampart
#

I don't get why that doesn't work

#

What's weirder is that editing the dmg for GW, even directly in the assembly, does nothing

cunning lagoon
#

tf is gw

fair rampart
#

Glowing Womb

cunning lagoon
#

How high is your nail upgraded? With the spiral nail she shouldn't be that massive of a problem since you can stagger her sooner. I'd say 6 masks is more than enough

fair rampart
#

Who are you talking to?

ornate rivet
#

Maybe there is something that sets the damage value back in the fsm or whatever

#

that happens a lot to me

fair rampart
#

For GW or Fluke?

ornate rivet
#

fluke

copper nacelle
#

You could IL hook it

fair rampart
#

Would that make a difference?

copper nacelle
#

Probably

#

I can't check I'm on mobile

cunning lagoon
#

hi on mobile

copper nacelle
#

Die

ornate rivet
#

I am trying to get a particle to dmg the knight but it does nothing (it appears on screen though). I have tried using try and catch and I dont get any errors. Here is the code:

var wave1 = Instantiate(DoH.wavePref); //Instantiate particle

wave1.SetActive(true); //Make it active

wave1.transform.SetPositionZ(HeroController.instance.transform.GetPositionZ()); //Put it on the same layer as the knight

wave1.AddComponent<Rigidbody2D>(); //Add a rigidbody to it

Log("1");

BoxCollider2D bc1 = wave1.AddComponent<BoxCollider2D>(); //Add a boxcollider2d

Log("2");

bc1.isTrigger = true; //Set the boxcollider's isTrigger to true

Log("3");

wave1.AddComponent<DamageHero>(); //Add ability to damage hero

Log("4");

wave1.AddComponent<DashDeath>(); //This script destroys the particle after 4 seconds

Log("5");

wave1.transform.SetPosition2D(gameObject.transform.GetPositionX(), gameObject.transform.GetPositionY()); //Places the particle
copper nacelle
#

Do you have to run windowed for gm

cunning lagoon
#

me?

copper nacelle
#

Yes

cunning lagoon
#

i dont run gm but no i dont run windowed on either version

copper nacelle
#

wow pain

ornate rivet
#

is there anything else I am forgetting to add or should I give up and just do the collision myself with if statements

cunning lagoon
#

i have decided to stick with 720p

#

it's not perfect but it's something

copper nacelle
#

If DamageHero doesn't work just make your own damage hero

ornate rivet
#

ok

copper nacelle
#

Also check output log to make sure it isn't throwing

ornate rivet
#

I did

#

no errors

copper nacelle
#

wow nice

#

Wait

#

Did you add a collider

ornate rivet
#

I added a BoxCollider2D

#

should I add a Collider2d as well?

copper nacelle
#

Maybe try making it not a trigger

ornate rivet
#

ok

#

uhh

#

turning is trigger off makes them make the knight and hornet float in place

#

still dont damage though

#

it makes it so that I cant go through them basically

#

really weird

#

I tried setting trigger to true again and adding a script that has void OnTriggerEnter() to the particle

unborn goblet
#

PING

ornate rivet
#

I think it breaks when I do that because the rest of the code stops working

#

the try and catch finds nothing though

ornate rivet
#

just realized that the particles disappear because adding rigidbody lets gravity control them

ornate rivet
#

uhh, how do I tell the knight to take damage

#

@copper nacelle

#

REEEEEE

copper nacelle
#

HeroController TakeDamage

ornate rivet
#

zote oh

#

lel

#

thanks

#

ok the hitbox BoxCollider2D makes is way too big

#

guess I'll just do the collision myself aka go die unity

#

nvm you can change the size of the collider

copper nacelle
#

hmmmmmmmmmm

fair rampart
#
        private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
        {
            orig(self);
            if (GameManager.instance.playerData.equippedCharm_19)
            {
                self.GetAttr<int>("damage").SetAttr("damage", 7);
                Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
            }
            else
            {
                self.GetAttr<int>("damage").SetAttr("damage", 5);
                Modding.Logger.Log("GET FLUKED!");
            }
        }
``` So how do I turn this into an IL? I really don't understand IL.
#

Um

#

ignore the log

mortal trout
#

FLUKE ME HARDER, DADDY

fair rampart
#

I have regrets

compact sedge
#

I wouldn't. that's an amazing log message

fair rampart
#

I no longer have regrets

#

Jiji got rid of 'em

#

Ugh, this is so much easier to do just by direct editing the assembly

#

I wonder if hooking DoDamage instead of OnEnable would work better

copper nacelle
#

You find the IL instructions and modify them with delegate emits

#

dnSpy

#

Swap to IL mode

fair rampart
#

What am I looking at

#

Like, I've looked at these before, but I don't really understand

#

This format is confusing af

copper nacelle
#

IL instructions

#

Have fun

fair rampart
#

Has anyone used IL for their mods?

copper nacelle
#

Me

fair rampart
#

which one

copper nacelle
#

Randoed Pantheons

rain cedar
#

I've done IL modding for another game if that counts

copper nacelle
#

Do you want me to link the example

buoyant obsidian
#

The only IL editing I do in mods is changing values in places where dnSpy gets angry

#

although I suppose monomod or similar would fix that kind of problem

#

unless you want to throw something in the middle of a method

copper nacelle
#

I'm gonna take that as a yes

rain cedar
#

This looks so much nicer than what I did wow

#

Idk if the HookILCursor thing existed before but it looks great

copper nacelle
#

This is at runtime

#

I think pre-patch still uses MonoModRules

fair rampart
#

So, I just tried DoDamage instead of OnEnable

#

ShamanS Fluke just did 160 dmg

#

wtf

#

that's not even the right number

#

and non-ShamanS still does 64

rain cedar
#

Nice you buffed it even more than 1.1.1.4

fair rampart
#

It's doing random dmg

#

why

copper nacelle
#

Ascended

fair rampart
#

Wait

#

Did the flukes double-hit?

#

If I hit the WK right as it spawns it does a shitload of dmg

#

it only happened once

#

so I guess it was just

#

a fluke

copper nacelle
#

banned

silk jetty
#

what's the newest update to charm overhaul change?

copper nacelle
#

have u tried

#

the changelog

fair rampart
#

Yes do that

silk jetty
#

eh whatever

copper nacelle
weak lodge
#

56 give me your credit card number I need to load your card up with 48c so you can buy me a life for mememas

ornate rivet
#

I think 56 is too young to own a credit card

#

so am I but that's besides the point

weak lodge
#

Kuro it is

copper nacelle
#

don't worry i have a debit card

fair rampart
#

wtf is with the flukes doing random dmg!?

#

I just did 215 dmg to godtamer's beast

weak lodge
#

Attention! All people who own an infinite grimm hardmode timed world record! #archived-modding-development needs your help! KDT requires more money to make ngg2 and angle needs more to port it over to IG, all they need are the three numbers on the back, expiration date; month day and year! Hurry before graig beats your score!

#

@fair rampart R.I.P 121 flukenest and hello to 215 flukenest

fair rampart
#

It just keeps doing random dmg

#

IDK why

#

I just tested on Traitor Lord and he went from 800 to 640 after one Shaman Fluke

weak lodge
#

Uhhh

#

@copper nacelle

#

God help us

fair rampart
#

It should only be doing 112

copper nacelle
#

Wtf

fair rampart
#

Okay, just tested again on TL

#

first hit: 80

#

second hit: 205

copper nacelle
#

have you tried

#

sharing your code

fair rampart
#

third hit: 90

hazy sentinel
#

nice feature

fair rampart
#
        private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
        {
            orig(self);
            if (GameManager.instance.playerData.equippedCharm_19)
            {
                self.GetAttr<int>("damage").SetAttr("damage", FLUKE_DMG_SUPER);
                Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
            }
            else
            {
                self.GetAttr<int>("damage").SetAttr("damage", FLUKE_DMG_NORM);
                Modding.Logger.Log("GET FLUKED!");
            }
        }
``` I tried using constants to see if that made a difference, and boy did it
copper nacelle
#

it's random w/ constants too?

#

Also shouldn't you be doing that before orig

fair rampart
#

Its the const that made it do this

#

fourth hit: 85

copper nacelle
#

do it before orig

fair rampart
#

ok

copper nacelle
#

self.GetAttr<int>("damage").SetAttr("damage", FLUKE_DMG_SUPER);

fair rampart
#

nope still rand

#

I'll try w/out const

copper nacelle
#

have you tried

#

looking at your code

#

why are you setting an attr on an int

fair rampart
#

because it's private

copper nacelle
#

that's not how it works

fair rampart
#

damage in Spellfluke is private, how else do I access it?

copper nacelle
#

Why are you calling SetAttr on an int

#

think

#

that's like doing 5.SetAttr("damage", 3)

weak lodge
#

spellfluke is an integer

#

wot

copper nacelle
#

self is spell fluke

#

GetAttr returns int

#

so

#

self.GetAttr<int>("damage") => 5

fair rampart
#

Oh

weak lodge
#

o ic

copper nacelle
#

5.SetAttr("damage", 3)

fair rampart
#

That doesn't work tho

copper nacelle
#

exactly

#

that's why ur code ๐Ÿšฎ

fair rampart
#

So what DO I do then?

copper nacelle
#

self.SetAttr

fair rampart
#

Oh I don't need the get?

copper nacelle
#

No

#

I don't know why your code even compiled

#

Primitives shouldn't even be able to have set attr called on them

#

The extension method was for object

weak lodge
#

who needs yt tutorials

#

56 exists

copper nacelle
#

hmmmmmmmmmmm

fair rampart
#

still random

copper nacelle
#

You moved orig right

fair rampart
#

yes

#
        {
            if (GameManager.instance.playerData.equippedCharm_19)
            {
                self.SetAttr("damage", 7);
                Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
            }
            else
            {
                self.SetAttr("damage", 5);
                Modding.Logger.Log("GET FLUKED!");
            }
            orig(self);
        }```
#

1st hit: 90, 2nd hit: 160, 3rd hit: 95

#

I think i did it

#

nope

#

never mind

#

still random

#

The first hit was 112

#

so I thought I had it

copper nacelle
#

wait no

fair rampart
copper nacelle
#

Did you change the upwards recursion amount

fair rampart
#

1st hit: 112, 2nd hit: 224, 3rd hit: 112, 4th hit: 133, 5th hit: DEAD

#

uh no

hollow pier
#

kuro any feelsbadman server

copper nacelle
fair rampart
#

Hol up, I'm testing it on Failed Champ right now, and it's doing 112 consistantly

hollow pier
#

you ever test something on the one place it doesn't work

#

unless they patched it

copper nacelle
#

Fluke was changed a shit ton

#

It's not even fsm anymore

hollow pier
#

it's not even usable anymore

#

ftfy

copper nacelle
#

urite

fair rampart
#

I just tested on Moss Charger, consistent 112

hollow pier
#

moss charger is my favourite boss to test things on

fair rampart
#

Is TL's hitbox just fucked up?

copper nacelle
#

ยฏ_(ใƒ„)_/ยฏ

fair rampart
#

I chose TL to test, because he's easy to hit with all the flukes

copper nacelle
#

NKG

hollow pier
#

wk

mortal trout
#

grimm

fair rampart
#

wtf

#

it's working on everything except TL

copper nacelle
#

TL sucks ignore him easy

fair rampart
#

TL's hitbox is super hollowf d. sometimes he takes dmg after the flukes are already gone

weak lodge
#

time yo buff TL and conflict mods o wait i dont have one ๐Ÿ˜‚

fair rampart
#

I just pause buffered a hit on Gruz Mothermaggot

#

Oh GM's hitbox is f'd for flukes too

#

You can kill Nosk when he's in the ceiling?

copper nacelle
#

Yes

fair rampart
#

didn't realize that until just now when I tried Shrieking him

#

Why are the flukes not hurting PV?

#

except when he dives

copper nacelle
#

vanilla bug

fair rampart
#

also I see qol made the cutscene stop existing

copper nacelle
#

yes

#

it was annoying

fair rampart
#

There's some weirdness going on w/ Gorb

#

it's doing 119 to him

hollow pier
#

when is there not

fair rampart
#

Galien's taking random amounts of dmg too

#

I just did 482 dmg

copper nacelle
#

well coded game btw

#

@compact sedge if you don't give a shit about the spectre patches you can do pti=off spectre_v2=off l1tf=off nospec_store_bypass_disable no_stf_barrier

#

pretty decent performance boost apparently

fair rampart
#
        private void OnFlukeEnable(On.SpellFluke.orig_OnEnable orig, SpellFluke self)
        {
            orig(self);
            if (GameManager.instance.playerData.equippedCharm_19)
            {
                int attr = self.GetAttr<int>("damage");
                self.SetAttr("damage", attr + 2);
                Modding.Logger.Log("FLUKE ME HARDER, DADDY!");
            }
            if (!GameManager.instance.playerData.equippedCharm_19)
            {
                int attr = self.GetAttr<int>("damage");
                self.SetAttr("damage", attr + 1);
                Modding.Logger.Log("GET FLUKED!");
            }
        }
``` So this works fine for every boss I've tested so far except TL, GM, and Galien. Gorb also takes 7 extra dmg, but that's not a big deal
#

I put orig first on purpose btw

ornate rivet
#

@weak lodge
Traitor Lord mod sounds good actually
I might do that next

weak lodge
#

shit saleh is gonna conflict mods with mine

#

tbh

#

if i only change ascended that should be fine right :sweating:

ornate rivet
#

but I thought you were doing WKs

fair rampart
#

Does PV not have a healthmanager component?

copper nacelle
#

He does

weak lodge
#

the plan was to change all unloved ascended bosses

fair rampart
#

then why the fluke does fluke not work

weak lodge
#

because

#

56 is god

copper nacelle
#

Why is orig first tho

#

That's the biggest think I've ever heard

fair rampart
#

Because damage is defined in enable, then my code alters it after it has been defined, but before it does dmg

copper nacelle
#

You've got an OnEnable hook too wtf

#

Also that's not how class variables work

fair rampart
#

still works on everything but those

#

I haven't tested Wing Nosk or AR yet tho

copper nacelle
#

Do you have an OnEnable hook?

fair rampart
#

That is my onenable

copper nacelle
#

Oh I thought it was for damage

#

ok that makes sense

fair rampart
#

I changed it back to OnEnable because I figured setting the attr when the damage is already being done might be the cause of the rando dmg

#

But turns out TL's hitbox is just dungo

#

Does TL take weird dmg from vanilla Flukenest?

copper nacelle
#

ยฏ_(ใƒ„)_/ยฏ

#

Wouldn't surprise me

fair rampart
#

I'll comment out the fluke buff and check

#

Alternatively, I could NOT be an idiot, and just disable the mod

copper nacelle
#

hmmmmmmmmm

fair rampart
#

yep

#

1 fluke did 80, like it should, then out of nowhere he took another 80 dmg

ornate rivet
fair rampart
#

soon ^tm

copper nacelle
#

โ„ข

fair rampart
#

TIM

copper nacelle
ornate rivet
#

I guess I wasn't ambitious enough with my wording this time since people actually believed me

copper nacelle
#

What

hazy sentinel
#

believable that TC would misspell date

#

more believable that saleh would meme

#

hmmmmmmmmmmmmmmmmmmmmmm

ornate rivet
#

the screenshot is fake 56

copper nacelle
hazy sentinel
#

throwback to when shitpost got pinned

fair rampart
#

I'm not sure you're using the word "ambitious" correctly

ornate rivet
#

no, it's correct

copper nacelle
#

hi not sure you're using the word "ambitious" correctly

ornate rivet
#

at one point I am pretty sure I tried to trick people that the third expansion was going to be called Abyssal Dreams or something along those lines

hazy sentinel
#

CP3 hornet is void

ornate rivet
#

I would say that's much more ambitious than faking a "coming soon" teaser @fair rampart

fair rampart
#

adjective: ambitious
having or showing a strong desire and determination to succeed.
(of a plan or piece of work) intended to satisfy high aspirations and therefore difficult to achieve.

copper nacelle
#

Why would you paste the synonyms

#

or antonyms

#

thanks

hazy sentinel
#

the synonyms
or antonyms
thanks

copper nacelle
#

wow why would you do that

hazy sentinel
#

๐Ÿ‡พ ๐Ÿ‡ผ

ornate rivet
#

@fair rampart
The second definition is what you need

fair rampart
#

thankyou for the directions

#

very helpful

ornate rivet
#

yw

compact sedge
#

@copper nacelle on amd but thanks

copper nacelle
#

doesn't amd still have specter

#

what

compact sedge
#

I thought the patch for the amd one didn't affect performance

#

(but the intel one did)

copper nacelle
#

AMD: Yes, Spectre does affect our processors. The chipmaker first said there would be "near zero" impact on its chips from one variant of a flaw that makes sensitive information vulnerable. An AMD FX-8320e PC CPU. Chips made by AMD are susceptible to the Spectre flaw, the company made clear on Thursday.

#

the EPYC ones are AMD

compact sedge
#

not gonna disable it for 4% boost

#

might for like 14% if I was on intel

copper nacelle
#

understandable

floral furnace
#

but thats like, 4 extra fast

compact sedge
#

what are the first amd/intel cpus not vulnerable to this and do the manufacturers benchmark them with it enabled on older cpus to make their benches misleading?

copper nacelle
cunning lagoon
#

sometimes i get my dash stopped before actually hitting him which i assume is me dashing late

#

but i dont get this one

weary oyster
#

thats too early

#

u wanna dash at the edge of the jar left of hes foot

cunning lagoon
#

o

#

ty

#

ooo i see

#

Pog

#

no longer my most dreaded trick in the run GWfroggyPoggers

weary oyster
#

nice

#

multiple hours of labbing this werent for nothing happygrub

cunning lagoon
#

lmao

#

also if you want something else added tyo debug for practice and whatnot let me know

#

and ill just steal 56's code to add it

#

tdogRat

weary oyster
#

SalubRat

cunning lagoon
#

o also any visual cues to dnail wd as he unburrows?

#

nvm not even gonna try going for that

daring snow
calm tiger
#

can some one help me get enemy randomizer

blissful burrow
#

;g

#

Why do we not have the same thing for guides smh

cunning lagoon
#

yell at hal to change it

compact sedge
copper nacelle
#

๐Ÿค”

dusky lion
#

thank you for the reminder

cunning lagoon
#

๐Ÿค”

cunning lagoon
dusky lion
#

This is the 2nd time you have posted this and I am okay with that fact

cunning lagoon
#

wait is it

copper nacelle
#

yes

cunning lagoon
#

god damn it

#

ok let me look for fresh content

copper nacelle
#

wait

#

it isn't

cunning lagoon
#

see i knew it ๐Ÿ˜ก

dusky lion
#

e

copper nacelle
#

Hir Ngolwe beat you to it

dusky lion
#

I know someone posted it before

cunning lagoon
#

o

dusky lion
#

hahayes

copper nacelle
cunning lagoon
trim totem
#

56 post an important image

dusky lion
#

56 you heard the person

cunning lagoon
#

56 you know what to do

dusky lion
#

everyone is counting on you 56

copper nacelle
trim totem
#

56 is incredibly popular

dusky lion
#

thank you 56

#

for frug

cunning lagoon
dusky lion
#

thank you for this fresh and exciting content kurosh

cunning lagoon
#

no problem

cunning lagoon
#

are spikes always an instant kill on enemies or do they do a fixed amount of damage

#

by spikes i mean the ceiling ones that you can hit with your nail

weary oyster
#

floor spikes are 50 dmg

#

i dont know about the stalagmites tho

cunning lagoon
#

there's definitely something weird about them

#

you know the one grub in ke i missed the other day

#

the spike sometimes hits the aspid and it usually kills him

#

but yesterday i had this happen

#

ok it's an explicit image apparently

weary oyster
#

lol

rain cedar
#

Scribble on it

cunning lagoon
rain cedar
#

Perfect

weary oyster
#

why is that a thing on discord in the first place

cunning lagoon
#

doesn't look like it but it does hit him

#

it makes the sound and it plays the dmage animation

weary oyster
#

yea i can see the hit animation

#

weird

#

as always answer is ๐Ÿ

cunning lagoon
#

also how do i add the gold for the current split in livesplit

weary oyster
#

previous segment

cunning lagoon
#

ok`hold on i phrased that weirdluy

weary oyster
#

compare to gold

#

is that what u meant

#

detailed timer is what shows your pb and gold for the current split youre doing

cunning lagoon
#

ah yeah

#

detailed timer is what im looking for

#

tyvm

weary oyster
#

dude why are we awake

cunning lagoon
#

i woke up 4 hours ago

#

dunno why you are awake

weary oyster
#

oh

rain cedar
#

Gotta stay awake whenever I'm awake or you might miss some hot content

cunning lagoon
#

this is true

weary oyster
#

wait you woke up at 4 30 am

cunning lagoon
#

i did indeed

weary oyster
#

w hy

cunning lagoon
#

because i went to sleep at 7pm

weary oyster
#

ah

#

been there

cunning lagoon
rain cedar
#

I did that shit over summers in high school

weary oyster
#

yea i honestly feel like my natural sleep/awake cycle is like a few hours longer than 24h too

#

or maybe i just suck at making myself go sleep idk

dusky lion
#

Oversleeping is worse than underersleeping to me

#

You feel as groggy as humanly possible

cunning lagoon
#

imagine not being wide awake for 15 hours straight

#

this post was made by coffee gang

dusky lion
#

Imagine the exact same thing

weary oyster
#

caffeine eww

dusky lion
#

This post made by caffeinated tea gang

cunning lagoon
#

caffeine GWfroggyPoggers

dusky lion
#

I am addicted to caffeinated tea

weary oyster
#

literal drug addiction

cunning lagoon
#

you are not wrong

dusky lion
#

Yes I spend every waking moment of my existing craving that substance and spend every dollar I can find earn or steal on it

copper nacelle
#

caffeine is great

cunning lagoon
#

56 you are a child

#

you should not be drinking coffee

copper nacelle
#

Finch is literally my age

weary oyster
#

the way caffeine is normalised in our society boggles me

dusky lion
#

this is correct

copper nacelle
#

I don't drink coffee very often

dusky lion
#

however I drink caffeinated tea not coffee so get it right 56 smh

cunning lagoon
#

finch you should not drink caffeinated tea

#

do as i say not as i do

#

or whatever

copper nacelle
#

I drink coke kinda often

cunning lagoon
#

you dont drink coke, you silly

#

you snort it xD

dusky lion
#

I am going to continue drinking caffeinated tea for nobody can stop me except those who can

copper nacelle
#

and I drink monster like weekly

dusky lion
#

Monster is great if you like heart attacks

copper nacelle
#

I love heart attacks

dusky lion
#

I c

cunning lagoon
#

ok i must claim my 43 goodbye

rain cedar
#

How do you even buy things 56?

#

Monster is expensive

#

Well known fact children have no money

copper nacelle
#

I walk to 7-11 and use my mom's credit card

#

Easy

weary oyster
#

having all your living expenses paid for probably helps

copper nacelle
#

Also it's more like biweekly

rain cedar
#

๐Ÿ™‚

copper nacelle
#

Fuck

#

u ever just wrong button

floral furnace
#

so your secret to sleeping is chugging monster until you dont need to sleep anymore

rain cedar
#

Same

dusky lion
#

Yes

floral furnace
#

also wow censorship

rain cedar
#

@thorn comet 56 for demotion 2018

copper nacelle
#

No I don't drink monster that often

#

But I sleep 3 hours daily

thorn comet
#

#Demote56

weary oyster
#

now the message is just sean being happy

floral furnace
#

still a shitty sleep sched to be tbh

weary oyster
#

now thats a sight i can get behind

floral furnace
#

Demote 56 to promote him to Admin ๐Ÿ˜ฉ

rain cedar
#

Wait I can just demote 56

#

We have the technology

copper nacelle
floral furnace
#

oh shit

dusky lion
#

1:42 AM and I don't feel a wink of weary

floral furnace
#

56 start bribing

dusky lion
#

I'm so glad I could finally use weary outside of the obvious use

cunning lagoon
#

ok the 2:43 is looking unlikely

#

i somehow lag more every day

copper nacelle
#

Just run 112 ax2uMS

cunning lagoon
#

:)

#

dude its actually so dumb

#

i pbd by 3 minutes and my rta is 4 minutes slower

#

i just dont fucking get it

copper nacelle
#

Upgrade your cpu faster

#

Or just get a non stock cooler

#

this is such a good emote but I never use it

#

Also I was supposed to be asleep 3 hours ago

floral furnace
#

yeah you better run

copper nacelle
#

imagine your pfp but as an emote as this message thanks

floral furnace
#

gnight yes

weary oyster
#

๐Ÿง

dusky lion
#

๐Ÿง

#

dammit

weary oyster
#

gottem

rain cedar
#

Hey guys I finally put a pfp I hope you like it ๐Ÿ™‚

copper nacelle
#

this is why ax is a runner

#

No stop why

floral furnace
#

finally a good charm

#

like, legit and unironically a good charm

dusky lion
#

This is the blessed timeline

weary oyster
#

wait its also weary

#

wtf sean

copper nacelle
#

?avatar seanpr

autumn shardBOT
#
Seanpr#9281
Avatar
copper nacelle
#

blessed image

floral furnace
#

blessed charm

dusky lion
#

why is his eyebrow blue

floral furnace
#

its a mother 3 reference

dusky lion
#

oh thank you for clarifying

rain cedar
#

Oh no the low effort shitpost isn't realistic

#

Whatever shall I do?

dusky lion
#

ascend

copper nacelle
#

The real question is how long will he keep this for

floral furnace
#

like, 5 long

copper nacelle
#

Understandable

dusky lion
#

as long as your pp

copper nacelle
#

I wish sr offtopic was active right now just to see the reactions

rain cedar
#

Be the change you want to see in the world

floral furnace
#

ur supposed 2b asleeped dungo

cunning lagoon
#

did they nerf the amount of geo false knight gives

#

nope the wiki is just wrong

#

as usual

rain cedar
#

The fk wiki page doesn't mention the geo at all though

cunning lagoon
rain cedar
#

Wtf

cunning lagoon
#

nice

rain cedar
#

I guess it just doesn't work on mobile

ornate rivet
#

should I buy dark souls 2 for 10$ or rain world for 8$

cunning lagoon
#

yea

ornate rivet
#

oh wait actually I never got ds3 DLCs

#

I'll get that

#

hopefully hornet dlc will be under $10

cunning lagoon
#

i want hornet dlc to be 69โ‚ฌ

hazy sentinel
#

I want more than one storage per quitout

cunning lagoon
#

i want select fall

ornate rivet
#

why would you bring up sexual innuendos in the presence of a child such as I

hazy sentinel
#

I want hornet dlc to be 420ยฅ

cunning lagoon
#

because i want t fuck you

#

or do i

hazy sentinel
#

i want game to eat ten input

cunning lagoon
#

how do i look at the cdash fsm

#

or whatever

#

abstain from making pop jokes

floral furnace
#

so 2 kingsmoulds walk into a bar

cunning lagoon
#

shit community

#

wont even help me lab cdashes

#

(i jest)

#

what if i lock my framerate to 30fps

#

it shouldnt lag

#

30 fps was a mistake

cyan peak
#

hmmm you want help with mods? Too bad there isn't a channel for that

buoyant obsidian
#

what a shame

#

whenever I have an issue I just @ modders

floral furnace
#

didnt that actually happen before, someone just @ the modders to answer his question

buoyant obsidian
#

It happens too often

hexed stream
#

at modding staff how often does this issue happen :(

cyan peak
#

@ Mods @ Modding Staff can som1 ty my shoo

copper nacelle
#

@cunning lagoon FSM viewer

#

It's the first pin

#

You want to click the open resources.assets button

#

It'll be "Knight - Superdash" iirc

cunning lagoon
#

nice nice

#

so im trying to figure out what determines when you are allowed to cdash right through an enemy

hollow pier
#

be sure to look at it twice

cunning lagoon
#

you think it might be

#

crystal burst?

#

this is garbage

#

ENTER SUPER DASH is the start

#

right

#

why does FSM CANCEL have the same square

copper nacelle
#

Black squares are global transitions

#

Meaning that when something sends an event called "ENTER SUPER DASH" or "FSM CANCEL" at any point it'll just go directly to that spot

cunning lagoon
#

it's gotta be in Dashing right

hollow pier
#

dae mobile hot garbage so 56 is a question mark in a box

copper nacelle
#

Understandable

hollow pier
#

woah it's just 56 now

#

nutty

cunning lagoon
#

what are eventsx

#

should i look into SD Trail

#

nvm

#

ok its definitely sd burst

#

maybe not

#

wtf it crashed

hollow pier
#

a tale told in 6 messages

cunning lagoon
#

actuallyu how do i see what makes soul warrior spoawn

fair rampart
#

You are allowed to superdash through an enemy if the superdash damage does greater than or equal to the enemy's remaining health

#

I think

cunning lagoon
#

that is definitely not true

fair rampart
#

You can go thru enemies that have 10 or less hp

cunning lagoon
#

sometimes

#

which is what i was trying to figure out

#

don't thinkgrub me

#

go and try to cdash through a crawlid 100 times in a row

#

i can guarantee you will eventually take damage

fair rampart
#

I was thinkgrub-ing the sometimes not you

#

why would it be inconsistant

#

oh wait

cunning lagoon
#

well this was a waste of time

#

i can't figure out cdashes and i can't figure out soul warrrior

#

on the plus side it looks like obs is what makes my game lag

#

it runs fairly well when im not recording

#

and by fairly well i mean perfectly

#

its a huge difference

weary oyster
#

do you have a lot of obs scenes

cunning lagoon
#

no only the hk one

weary oyster
#

hm

#

for me it lags if i have display capture in any other scene even if its not active

#

which is some ๐Ÿ code in itself

#

but yea idk whats going on with yours

cunning lagoon
compact sedge
#

Just had a chat with the rainworld modders and I've come to this conclusion: If you ever look at the modding api and think: "this is kinda shit." It could always be worse, we could always be using partiality. Don't tell the partiality dev I said this.

buoyant obsidian
#

Messaging partiality as we speak

compact sedge
#

it's a good wrapper for monomod ig but your runtime patching of the assembly and lack of any game specific features and that it only works on windows kinda sucks. no it sucks a lot, but lemme just say kinda to be diplomatic.

copper nacelle
#

They're fixing that iirc

compact sedge
#

well I uh asked the developer of partiality so rather than go off heresay ima see what they say

copper nacelle
#

They said they were doing it in the MonoMod server

#

for ui

#

I think

cunning lagoon
#

monkeymod

#

i may or may not perhaps have improved slash fixed my lag

#

i'll test tomorrow GWfroggyMonkaMega

weary oyster
#

why tomorrow

cunning lagoon
#

because its too late and if i commit to a run now it may go well

mortal trout
#

why did you type out 'slash'

cunning lagoon
#

if it goes well i dont wanna kill it

#

but i also wanna sleep

weary oyster
#

i like how our sleep cycles are straight up opposite of each other rn

cunning lagoon
weary oyster
#

i woke up like 2h ago

cunning lagoon
#

i havent slept yet so i woke up 16h ago

weary oyster
#

exactly

cunning lagoon
#

bless caffeine

weary oyster
#

you need caffeine to stay up 16 hours? thinkgrub

cunning lagoon
#

i need caffeine to stay awake period

weary oyster
#

tfw casual drug addiction

cunning lagoon
#

not an addiction btw

#

completelรฑy nmotrmal

mortal trout
cunning lagoon
#

hey 4:39 is pretty good ๐Ÿ™‚

mortal trout
#

anything more than sub 4 complete garbage tbh

cunning lagoon
#

22 attempts

#

thats some serious grinding right there

hazy sentinel
mortal trout
#

im at 39 rn tho

#

still not much but still

copper nacelle
#

Wtf

#

e-17

#

large

cunning lagoon
#

like my pp

#

so for the room with the owen wilson mushroom guys

#

is it better to go up or down

#

or do i have to time this one too

copper nacelle
#

sideways tdogRat

fair rampart
#

WAAAways

mortal trout
#

alt f4

compact sedge
#

I can't count past 6.626e-34

copper nacelle
#

All glitches goes up but they have transition storage

cunning lagoon
#

wdym "they"

copper nacelle
#

the runners

cunning lagoon
#

you should say "we"

#

you are a prt of them now

#

tdogRat

copper nacelle
cunning lagoon
#

what if we ask team cherry to patch the glitches back into the game

mortal trout
#

just ping them ez

manic hollow
#

@ game makers please add the glitches back in we need them

leaden hedge
#

just play a game where the devs care about speedrunning

#

like celeste

mortal trout
#

im too bad at celeste

cunning lagoon
#

sorry i dont speedrun games where you can't get screwed by enemy rng in every single room

leaden hedge
#

theres rng depending on what you do

compact sedge
#

god celese is such a good game. I wanna mod it but it seems basically perfect as is so idk what to do.

#

ok I could make new levels for it but I'm bad at level design and the only kinda mod I'd wanna do is one that affects the core game itself.

rain cedar
#

Make dash length random

mortal trout
#

make rng mod

cunning lagoon
#

make a room randomizer

compact sedge
#

tie dash length to framerate and make the game framerate independent of physics.

cunning lagoon
#

also make the enemies sepeedscale with framerate

compact sedge
#

celeste... enemies?

#

I mean I guess those lil blob guys

mortal trout
#

add enemies to celeste

compact sedge
#

and your alter ego

#

shame u can't murder them with fire abilities

cunning lagoon
#

not with that attitude

#

add fire abilities

weak lodge
#

Sean has the most ascended pfp Iโ€™ve seen in a long time

silk jetty
#

is grubsong location in randomizer logic?

cunning lagoon
#

yes

#

i think

silk jetty
#

okay

cunning lagoon
#

elegy isn't

#

iirc

silk jetty
#

yeah because you need everything other than dream nail to get elegy lol

#

so it would be retarded to have it be logic

cunning lagoon
#

xD

mortal trout
#

๐Ÿ˜‚

cunning lagoon
#

GWcorbinHolyFuck ๐Ÿ’ฆ

#

im actually eager to test if i fixed my lag or not

#

not gonna be able to sleep notlikequirrel

hollow pier
#

pretty sure down is faster but up lets you get soul kuro

hazy sentinel
#

whats upsoul

fossil oxide
#

Downsoul

mortal trout
#

leftsoul

cunning lagoon
#

That Makes sense

#

So why go up

compact sedge
#

rightsoul

#

wait fuck I mistyped the konami code

fossil oxide
#

Dark Soul

cunning lagoon
#

Except for te o guessvbecaise you kill hu

hazy sentinel
#

hmmm

cunning lagoon
#

I guess nldg Too for float dรฑand whatnot

rain cedar
#

dรฑand

weary oyster
#

kurosh buy eroico

rain cedar
#

There's so many other porn games that you don't have to pay for though

hazy sentinel
#

there's also porn that you don't have to pay for

weary oyster
#

but its like the only one that has good gameplay

cunning lagoon
#

Buy it for meband ill veat your time

weary oyster
#

id play that shit without the hentai

hazy sentinel
#

wdym deep space waifu has 10/10 gameplay

weary oyster
#

ok whats ur steam

hazy sentinel
#

DL Kurosh

weary oyster
#

oh its linked

cunning lagoon
hazy sentinel
#

think

rain cedar
#

Wow

#

I asked first

#

A while ago

hazy sentinel
#

link twitch/youtube when

weary oyster
#

you told me to get it for your birthday and never told when your birthday is

rain cedar
#

Today

hazy sentinel
#

hmmmm

weary oyster
fair rampart
#

Why is one of the mods playing Fortnite?

mortal trout
#

ping alex and ask ez

cunning lagoon
#

Yeeeeees
Actually buys sfw game like a boss

weary oyster
#

you dare ask me with that profile picture

hazy sentinel
#

ill change it if u gift me the game hollowface

weary oyster
#

is this blackmailing

rain cedar
#

Same

weary oyster
#

wow i could clear 2 profile pictures of cancer by spending a few money bois

#

ill have to think about this

#

i'd be doing the whole discord a service

rain cedar
#

This was my plan all along

#

Put on a bad pfp right before the autumn sale to get free porn

mortal trout
#

good job sean

hazy sentinel
#

wow sean not even using the worse version of that emote that i haven't shared with anyone

weary oyster
#

imagine

rain cedar
#

Almost as bad as savynov not doing the puppeteer skip

cunning lagoon
#

I actually Cant sleep GWbratWhy

rain cedar
#

Stream eroico

#

Get wr

weary oyster
#

have you thought about getting off of discord kurosh

#

i hear that helps with sleeping

cunning lagoon
#

Then i miss out on this hot content

rain cedar
weary oyster
#

what the fucck

rain cedar
#

Browsing new on steam is amazing

#

You find shit like this that will literally never show up anywhere on the front page

#

But it's beautiful

hollow pier
#

ax buy me a pc that doesn't have 10s thk loads and i'll run 106

weary oyster
#

judging by the video it doesnt even have any porn its just sounds

#

fake news

fair rampart
#

Sean, wtf is that game

#

"game"

weary oyster
#

why do so many h games have sakura in the name

fair rampart
#

Why are there poorly rendered waifus shooting red balls out of their crotch?

cunning lagoon
#

Pete wwvdont qantvyou running 106

rain cedar
#

The candycane has balls that grow bigger through the trailer

#

Explain that

cunning lagoon
#

Go back to glitches

hazy sentinel
#

typing any%

weary oyster
#

is this drunk krythom

cunning lagoon
#

No this is phone kurosh

weak lodge
#

all i see is sans undertale

rain cedar
#

Same

hazy sentinel
hollow pier
#

pfp is actually pretty nice because the glowing eye fits the src mod name

fair rampart
#

what a deal

trim totem
#

nothing justifies that pfp

cunning lagoon
#

Coward

hollow pier
copper nacelle
#

๐Ÿ‘€

fair rampart
#

steam isn't letting me browse "new"

copper nacelle
#

Didn't you say you'd give the invite at 50

hollow pier
#

did i

copper nacelle
#

Yes

hollow pier
#

hmm

#

prove it

hazy sentinel
copper nacelle
trim totem
#

verulean

cunning lagoon
#

Lets goooo

hollow pier
#

what if not all of them are true dlkuroshes

fair rampart
#

oh now it works

trim totem
#

shut the up

hazy sentinel
copper nacelle
#

Why

#

Wtf

fair rampart
weary oyster
#

lmao

trim totem
#

no

weary oyster
#

scifi huniepop with 2048 instead of bejeweld

#

fantastidc

hazy sentinel
hollow pier
hazy sentinel
#

don't think he's on this server sorry

fair rampart
#

Really, you went with "Hi John Smoke" and not "Come on cards?"

#

?

hazy sentinel
fair rampart
#

can you say "mobile port"

hollow pier
#

no saying diablo immortal is tough

fair rampart
#

more trash

hollow pier
fair rampart
#

wtf this game has reddit integration

#

the art's not bad actually

hazy sentinel
#

almost like they're just copying images from reddit

fair rampart
#

yeah, exactly

#

Want to make a game, but you just can't art?

#

pfft

#

just steal

#

seriously don't

#

Okay steam, you give me the content warning for this, but to not those h games?

dusky lion
#

damn i want a gender bender

#

whats there to think about 56

#

the motive was clear

fair rampart
#

me too

copper nacelle
fair rampart
#

you wouldn't?

thorn comet
#

The description of the game though milliS

fair rampart
#

Gender Bender is a movie actually

#

because steam has those

copper nacelle
#

Wtf

dusky lion
#

wtf the fuck

fair rampart
#

What the wtf the fuck

copper nacelle
#

no it's

#

what the wtf the what the wtf the fuck wtf what the wtf fuck the wtf

buoyant obsidian
#

happy thanksgiving

daring snow
#

Wtf as a recursive function

fair rampart
#

Wtf as a recursive function

buoyant obsidian
#

wtf is a recursive function?

#

I never learned cursive

#

let alone recursive

fair rampart
#

fuck cursive

copper nacelle
#

cursive is god tier die

buoyant obsidian
#

For real fuck cursive

copper nacelle
#

print can go die

buoyant obsidian
#

look at me I write in a font nobody can read woo

dusky lion
#

cursive is stop

hazy sentinel
#

i write in cursive and print

#

chaotic neutral

ember bloom
#

Neeeerds

fair rampart
#

we got a badass over here

hazy sentinel
#

56 is typing

copper nacelle
#
class Wtf
{
    private static Random rand;
    public static string Wtf(string start = "wtf")
    {
        int i = rand.NextInt(5);
        return i == 0 ? Wtf("what the  " + start)
             : i == 1 ? Wtf(start + " the fuck")
             : i == 2 ? Wtf("the fuck " + start)
             : i == 3 ? Wtf(start + " what the")
             : start;
    } 
}

@daring snow

mortal trout
#

i write in caps lock

fair rampart
#

I knew that's what he was doing

copper nacelle
#

also ternary abuse

daring snow
#

Wtf

#

Amazing

fair rampart
#

Wtf
Amazing

ember bloom
#

Is this Markoth code

buoyant obsidian
#

explain : ? pls

copper nacelle
#

condition ? "ifTrue" : "ifFalse"

#

So my thing is

#

if it's 0 => Wtf("what the " start)

#

else

#

move to the next thing which is another ternary

#

it's compacted if else

buoyant obsidian
#

ah

#

I'd rather just if else tbh

copper nacelle
#

understandable

#

what the the fuck the fuck wtf what the the fuck

#

I need to add another condition for wtf

#

took 3 tries

#

but i got

#

the fuck the fuck what the wtf wtf the fuck what the what the the fuck what the what the wtf what the the fuck the fuck the fuck the fuck wtf wtf what the the fuck wtf the fuck what the the fuck

fair rampart
#

This would be a great error message

copper nacelle
#

I need to weight stopping lower

hollow pier
copper nacelle
#

ty

rain cedar
#

fix it

copper nacelle
ornate rivet
#

Merry Christmas everyone

fair rampart
#

A bit late

#

Everyone knows xmas starts the moment after Halloween

ornate rivet
#

rude

mortal trout
#

edur

compact sedge
#

not listening to christmas music yet?

thorn comet
#

This website can help you out

#

If you forget when christmas is

dusky lion
#

thank you simo

weak lodge
#

thank you simo, very cool!

floral furnace
#

see 56 even 753 wouldnt bother with ternaries hollowdab

copper nacelle
#

one of the best refactorings i did to lightbringer was swapping some stuff out with ternaries

#

it makes it so much shorter

rain cedar
#

Ternary and linq are god

copper nacelle
#

Yes

floral furnace
#

i mean, jokes aside theyre pretty cool, but not case true case false cool

rain cedar
copper nacelle
#

nice

rain cedar
#

Seriously though I'm not setting up a vm just to test garbage nobody cares about

#

Hey someone tell me what to do here

#

One of my groupmates pushed completely nonsense code into one of my classes a while ago

#

I don't want to fix it but I shouldn't just remove it either

#

Like he's trying to unhook lambdas from events

#

???

copper nacelle
#

Tf

rain cedar
#

Yeah idk

#

He hasn't done anything useful all quarter

#

There's always one of them

#

Which, you know, looks like it would work to me

#

But what is the use case of checking for any alpha key pressed?

copper nacelle
#

idk

rain cedar
#

Yeah

#

You don't know because there isn't one