#archived-modding-development

1 messages ยท Page 300 of 1

fair rampart
#

Almost sounds like a Minion

ornate rivet
#

what do you expect from a guy with this in the description of one of his videos

The confusion is Master sheo sees him as his brother.```
fair rampart
#

Where does he get that lore from?

mortal trout
#

he lore god lol

ornate rivet
mortal trout
#

holy shit what are these advanced tactics

fair rampart
#

You know what, he actually sounds like he's trying to talk like the HK npcs

ornate rivet
#

The advanced tactic he is talking about is the chandelier trick
also he does cheat

fair rampart
#

Fairly certain that character was originally going to be the shaman that gave you Wraiths

#

I of course, made that lore up on the spot, like this guy does

#

That blue actually looks better than the blue used in the Lifeblood Lord mod

#

tbh

ornate rivet
#

Lore God and Modding God

cunning lagoon
#

nutty

fair rampart
#

Oh wait, no the video is just blue shifted

ornate rivet
#

^

#

looks really cool though

fair rampart
#

How did he get it to be so pronouced on the orange tho?

warped sinew
#

Huh, turns out God Mode makes the best HK vids

#

Bad luck veru and mossbag

cunning lagoon
copper nacelle
#

nice

#

is it worth going for

cunning lagoon
#

other than cancer prince zote it's a fairly fun and enjoyable experience

floral furnace
#

more like hu

cunning lagoon
#

even collector is an enjoyable fight now

#

i believe i've said this before but i'd do it again just for fun

#

if gpz did not exist

#

now

#

i require a stream

#

@copper nacelle

copper nacelle
#

playing cs go

cunning lagoon
#

sure

#

i'll take it

copper nacelle
cunning lagoon
#

hurry up im starting to get bored already

copper nacelle
#

no

cunning lagoon
#

D:

copper nacelle
#

it's like

#

with my friends

#

irl

#

so like e

cunning lagoon
#

wow so it gets better

#

do the thing

#

are they single

silk jetty
#

@cunning lagoon congrats on all binds

cunning lagoon
#

ty dude

ornate rivet
#

are you saying we are not real 56

copper nacelle
#

yes

cunning lagoon
#

he's being edgy to act cool in front of his friends ๐Ÿ˜”

#

stop checking discord

#

dont you have angles to defend and bomb sites to protect

copper nacelle
#

no we just won

cunning lagoon
#

gg

copper nacelle
#

Wtf is your computer

#

how do you get 240 cp and -10 1221

cunning lagoon
#

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

#

i told you cp runs flawlessly (although temps are still high)

#

1221 runs like garbage AND it burns my computer

copper nacelle
cunning lagoon
#

might do some pantheon speedruns now

#

not going back to 1221 until i get a new cpu

copper nacelle
#

go to 1028

cunning lagoon
#

yes i shall perform unethical glitches

dark wigeon
#

Do you guys have a system for dyanmically patching methods

copper nacelle
#

wdym

#

Like patch-time or run-time?

dark wigeon
#

Runtime

copper nacelle
#

You can use DynamicMethod to patch a bunch of methods via IL at once

dark wigeon
#

Nothing like harmony where I can just execute written code rather than il

copper nacelle
#

You can emit delegates into the il

#

Oh i misread that

#

I thought you meant patch a fuck ton of them at runtime at once

#

On hooks from MonoMod for normal code and IL hooks for IL

#
// Let's hook Celeste.Player.GetTrailColor
// Note that we can also -= this (and the IL. manipulation) by using separate methods.
On.Celeste.Player.GetTrailColor += (orig, player, wasDashB) => {
    Console.WriteLine("1 - Hello, World!");

    // Get the "original" color and manipulate it.
    // This step is optional - we can return anything we want.
    // We can also pass anything to the orig method.
    Color color = orig(player, wasDashB);

    // If the player is facing left, display a modified color.
    if (player.Facing == Facings.Left)
        return new Color(0xFF, color.G, color.B, color.A);

    return color;
};
dark wigeon
#

Nvm you guys already have it hardcoded patched

#

Any docs on the API or do I just explore

copper nacelle
compact sedge
#

yeah the modding api loads all DLLs from the Mods folder

#

and it automatically constructs any public "Mod" classes with 0 argument ctors

#

so just make a dll with a class that extends or whatever the : symbol means Mod and then don't make the ctor private or take arguments and then just place the dll in the folder

dark wigeon
#

I was basically trying to add code to the beginning of an already existing mod without patching the dll again

copper nacelle
#

You can do that

dark wigeon
#

@host

copper nacelle
#

i do it to randomizer

#
            Type t = Type.GetType("RandomizerMod.RandomizerMod, RandomizerMod2.0");

            if (t == null) return;

            _rando = new Hook
            (
                t.GetMethod("SceneHasPreload", BindingFlags.NonPublic | BindingFlags.Static),
                typeof(SkipCutscenes).GetMethod(nameof(FixRandoMonomon))
            );
#
        [UsedImplicitly]
        public static bool FixRandoMonomon(Func<string, bool> orig, string sceneName)
        {
            // this is really dumb
            return sceneName != UUMUU && orig(sceneName);
        }
compact sedge
#

you could also be a nice person and fork it and send a pull request

copper nacelle
#

You'd just put your code before the orig call

dark wigeon
#

I was talking about the game code not the modloader code

#

@host not you 56

compact sedge
#

Avenging Angle here. All game functions can be hooked with monomod hooks with:

on.namespace.classname.function += hookfunction

copper nacelle
#

On hooks pass orig (the original function), self (if it's a class method), and the rest of the params

#

You can entirely override or just call the original at some point

compact sedge
#

and then in hookfunction you can at literally any time call orig(self, argument1, argument2, etc.) to run the original function, otherwise the hook will just override the original

#

if the original function has 0 arguments you can just do orig(self)

#

so basically you can put orig(self) at the end to insert all your custom code before the function, at the start to have your custom code run after the function, in the middle, or nowhere to override the original one completely

copper nacelle
#

the readme for it is good

#

if you want to detour other mods you call new Hook like i posted above

compact sedge
#

I don't like this c# 7 way of creating functions

copper nacelle
#

ur ๐Ÿšฎ

compact sedge
#

On.Celeste.Player.GetTrailColor += (orig, player, wasDashB) => { }

messes with my brain too much

copper nacelle
#

Doesn't c++ have lambdas

compact sedge
#

yes

#

but I don't use em

copper nacelle
compact sedge
#

they also hurt my brain

rain cedar
#

Lambdas are pretty simple though

#

It's just parameters and function body with slightly different syntax

compact sedge
#

yeah I know

#

I never learned the syntax

#

and it hurts my small mind

cunning lagoon
#

yo does lost kin stagger more often than broken vessel

weary oyster
#

nah

#

at least on 1221

cunning lagoon
#

it feels like bv just never staggers

#

when i can just staggerlock lk

weary oyster
#

its just harder to get continous attacks on bv cause hes so slow

#

and also his headbang resets stagger counter

cunning lagoon
#

oh thats interesting

#

i did not know that

weary oyster
#

yea every attack you cant stagger enemies out of does that

#

like hornet needle

cunning lagoon
#

oh so thats why the bitch sometimes doesnt get staggered

#

gdi

weary oyster
#

lol

cunning lagoon
#

@hazy sentinel can i get the chinese names for every single boss in the game

#

also gimme the chinese name for cancer instead of gpz

floral furnace
#

ๆœ€ๅฅฝ็š„่€ๆฟ

hollow pier
#

make gpz the only split

cunning lagoon
#

go back to bed ill man

#

any way to edit a savefile to only let you have 1/3rd of the soul meter

weary oyster
#

nvm

cunning lagoon
weary oyster
#

didnt 56 make an all binding s mod

#

i remember asking for that

cunning lagoon
#

last time i played it it was broken

weary oyster
#

how

cunning lagoon
#

the nail binding didnt work sometimes and the ui derped out a lot

weary oyster
#

hmm

cunning lagoon
#

also if i can edit a save to have 1/3rd max soul i can submit it to srcom as a resource for those interested in running ab

#

which may be like 2 or 3 people zote

#

not for runs obviously

#

for practice

wary scaffold
#

do these mods for ps4?

#

mods work for *

fair rampart
#

No

wary scaffold
#

aww ๐Ÿ˜ฆ

fair rampart
#

Mods are pc only

wary scaffold
#

kk

hollow pier
#

i would like to be dying in bed

#

however i am dying in not bed

cunning lagoon
#

go die in bed idiot

hollow pier
#

i would

compact sedge
leaden hedge
#

why about pygame

solemn rivet
#

renpy bois

compact sedge
#

nah that's for porn

leaden hedge
#

visual novels

#

its not porn, its art

buoyant obsidian
#

artistic porn

mortal trout
#

is this shadman GWjiangoOmegaLUL

cunning lagoon
#

you are welcome

#

also im beyond convinced that the fucking cdash charge time is rng

#

that should've been fine

rain cedar
#

It's gonna be effectively random +/- 1 frame, same way as a lot of other things

#

Your choice as to if that actually matters

cunning lagoon
#

yea that doesnt sound like it actually makes a difference

#

lmao

cunning lagoon
#

angle gonna ditch us for his new job at a kohl's in sioux city GWmythiFeelsBadMan

wide geyser
#

out of curiosity does debug mod also have infinite charm notches

cunning lagoon
#

infinite charm notches is a separate mod

wide geyser
#

oh ok

compact sedge
#

sorry y'all but this $7.50 /hr job stocking shelves is really appealing to me

copper nacelle
#

I have an hour on a bus what should I do

cunning lagoon
#

jerk off

#

actuallly do not do that 56

#

that is not an appropriate thing to do at a school bus

copper nacelle
#

I was thinking learn Haskell more or something

#

Or maybe start Rust

cunning lagoon
#

get a gba emulator and play pokemon emerald

#

๐Ÿ™‚

#

it's a good game you should actually do it

#

:)

#

not kidding

#

i am being VERY serious

copper nacelle
#

maybe

cunning lagoon
#

๐Ÿ‘€

copper nacelle
#

@compact sedge ฤ“

#

if I wanted to learn c++ what should I do

compact sedge
#

uhhhhhhhh fuck

buoyant obsidian
#

not

mortal trout
#

look up how to learn it

compact sedge
#

I mean uh I learned c# by making a mod

copper nacelle
#

understandable

#

also what do you think of rust

leaden hedge
#

slow down

#

learn c+ first

compact sedge
#

it's fine. I have no problems with rust except that I'm not a huge fan of it's dependence on llvm

#

but it's a good language I've heard

copper nacelle
#

neat

compact sedge
#

in any case my only suggestion is if you're gonna use a guide use a text one don't watch youtube videos

#

and also use an ide

#

I mean ides are optional but so helpful

fair rampart
#

Wait, why learn C+ before C#?

#

Why not just do C#?

compact sedge
#

I don't like c# as a language

copper nacelle
#

C+ isn't a language

leaden hedge
#

i was joking saying learn C+ before C++

cunning lagoon
#

nathan please

#

this is embarrassing

mortal trout
#

lmao i forgot your name was nathan

compact sedge
#

no I'm embarrassing

mortal trout
#

im pretty sure everyone here is embarrassing in one way or another

weak lodge
#

Angle waddup

rain cedar
#

Literally how is this even possible?

copper nacelle
#

Wtf

hollow pier
#

extremely slow computers GWfroggyPoggers

rain cedar
#

Extremely slow computers or people using qol

hollow pier
#

ah so all intellectuals

rain cedar
#

Same

#

It's impossible for "coroutine" to be null here

#

Unless Unity isn't calling Start on the behaviour fast enough

#

No that doesn't make sense because the first message in the log is from the coroutine

#

So it's definitely starting

#

Which means coroutine isn't null

#

Which means ForceFinish should work

copper nacelle
#

Isn't it still running fake-async

rain cedar
#

I do coroutine.MoveNext() until it's done

#

In a regular function

#

So that should complete it in 1 frame

copper nacelle
#

Do you have nested coroutines

rain cedar
#

Not here

#

I guess if you count WaitForEndOfFrame

#

But that doesn't actually explicitly stall for a frame

#

It's just an empty YieldInstruction

#

The coroutine is never finishing btw

#

Like there's a message at the end of it that just doesn't happen

copper nacelle
#

Try logging the stuff it yields maybe

#

tf

rain cedar
#

I didn't even change anything to do with this

copper nacelle
#

Does it work if you don't call StartCoroutine

rain cedar
#

Oh ok I see the problem

#

It's throwing an error which didn't go to modlog because Unity caught it instead of my code

#

Only thing that changed that could cause that is the new logic from homothety's pr

#

@unborn flicker thanks

unborn flicker
rain cedar
#

Probably mismatched parentheses somewhere

copper nacelle
#

unity error catching to output log is pain

unborn flicker
#

Looks like I fucked up Shade Soul

rain cedar
#

Yeah shade soul is missing a closing paren

copper nacelle
#

Would it be a decent idea to find where unity logs coroutine errors and detour it to mod log

rain cedar
#

Is the missing one supposed to go in the middle or the end?

#

Idk 56 sounds like a good way to get a million TC errors

copper nacelle
#

true

unborn flicker
#

There shouldn't be two at the beginning, I think

copper nacelle
#

I did detour'd LogError once

rain cedar
#

Ok

copper nacelle
#

mod log became death

#

So many fucking errors

#

I ended up matching a few of the common ones and discarding them

#

But after that it was actually decently useful

unborn flicker
#

Actually, there should be another after scream

#

Sorry

#

Claw is paired with shadeskips there

rain cedar
#

Cool

copper nacelle
rain cedar
#

Sitting on a bench doesn't even call any of the SetBenchRespawn functions

#

Ok

unborn flicker
#

wut

        skills.Add("hasUpwardSlash", "Dash Slash");
        skills.Add("hasCyclone", "Cyclone Slash");```
copper nacelle
#

well coded game btw

rain cedar
#

Yeah that's not wrong

#

It's just how it is

unborn flicker
#

lol

hollow pier
#

i don't understand

#

is ds gs

rain cedar
#

Yes

cunning lagoon
#

go back to bed

leaden hedge
#

quality variable names

hollow pier
#

wait so what is gs

#

upwards

rain cedar
#

Yes

hollow pier
#

what

rain cedar
#

No

#

Upward is dash slash

hollow pier
#

what x2

copper nacelle
#

don't question it

hollow pier
#

up only makes sense for cyclone

#

what

rain cedar
#

Same

hollow pier
#

so you can hardlock when you open inv

copper nacelle
#

that's just one var tho

hollow pier
#

ur just one var

rain cedar
#

I can't even figure out what in here is setting your save point to the bench

copper nacelle
#

Nice

rain cedar
#

Is there a way to just search for a specific playerdata var in the fsm?

copper nacelle
#

Not rn

rain cedar
#

Pain

copper nacelle
#

I mean you can grep the fsm

#

if you have it as json

rain cedar
#

I don't that's too much work

copper nacelle
rain cedar
#

Ok respawnScene is in there

#

And respawnMarkerName

#

So this is at least not the wrong fsm

cunning lagoon
#

hello guys im new to discord is the dremshield coop updated for godhand ๐Ÿ˜„

rain cedar
#

In a state called "Rest Burst" of all things

#

Not "Save Frame"

#

Not "Save Game"

fair rampart
#

Wait Benches are FSM?

rain cedar
#

Everything is fsm

leaden hedge
#

they removed fsm though hollowomg

fair rampart
#

Of course it is

rain cedar
#

On a scale of 1 to 10 how bad is hooking BoolTest.OnEnter and doing string comparisons on the state and bool name?

copper nacelle
#

that's basically what 753 did for the stagger thing

#

except int compare

rain cedar
#

I'm still getting 350-400 fps so it can't be that bad

#

Also gonna be honest I have no idea what stagger thing means

copper nacelle
#

he doubled hits for stagger

#

by hooking int compare

#

and checking if the second int's name was "Stun Max"

rain cedar
#

Wtf there's a 26 geo rock in the first greenpath bench room

#

With all the birds

#

I never noticed this before

hollow pier
#

i this

#

geo nodeledge

rain cedar
#

To be fair

#

The camera doesn't go high enough to see it here

#

You have to actually go for the bench

hollow pier
#

you've never sat on that bench and soaked in the atmosphere smh my head

rain cedar
#

Insane

hollow pier
#

delete this

civic hare
#

Iโ€™m starting a new game dev studio called Team Larry

cunning lagoon
#

@ vitellary#1950

civic hare
#

whenever I play Overwatch I Team Carry

#

a good Dark Souls tactic when fighting groups is Team Parry

cunning lagoon
#

GWmemetownOMEGALUL verwatch

civic hare
#

My favorite foods have Team Dairy

#

Team Gary come home

copper nacelle
civic hare
#

this bit is team very shit

cunning lagoon
#

stay hydrated guys

#

@everyone

#

๐Ÿšฐ

rain cedar
#

@unborn goblet haha this is still funny

#

Hey man you didn't do the meme gucci gang ping so I had to

#

I'm impressed with his resolve to not change, tbh

cunning lagoon
#

๐Ÿ˜”

unborn goblet
#

@rain cedar kys

rain cedar
#

@unborn goblet no

hollow pier
#

anyone have a save with just king's stag and everything unlocked

unborn goblet
ornate rivet
#

I wish I would get ping spammed

cunning lagoon
#

no pete i will not help you get the gh% ng+ no dg rekky

hollow pier
#

i don't need help

#

i already have a consistent final room cdash

#

free sub1

cunning lagoon
#

insane

runic skiff
#

yo so how tf does one go about modding a boss anyway?

hollow pier
#

steal code

cunning lagoon
#

reminder to use fury too

runic skiff
#

I want to make a remix of a certain boss like the Ultimatum spoiler

#

actually the exact same boss lol

hollow pier
#

how much is fury again

runic skiff
#

but with different moves

hollow pier
#

is 2 nails better than nail fluke

cunning lagoon
#

just charge a great slash as you climb the wall

#

its like 90 damage

hollow pier
#

gs is so slow

cunning lagoon
#

then ddark him or fluke him or something

rain cedar
cunning lagoon
#

if you did it on an older patch you could just oneshot him with fluke i guess

hollow pier
#

1114 optimal for gh ng+ no dg

runic skiff
#

I actually already have that mod but I was wondering about how to edit it

#

and maybe add on some shit of my own

rain cedar
#

That's the source code of the mod

runic skiff
#

oh

#

I'm a dumbass lmao

cunning lagoon
#

but one gs and a nail swing kills him

#

in case you dont wanna downpatch

runic skiff
#

thanks

#

I'll take a look

hollow pier
#

i'll just get a good run and if anyone cares enough they'll take the 1114 timesave

cunning lagoon
#

i just saw acrids run and thought about all these things yesterday

#

i considered taking it but im lazy so you do it

hollow pier
#

how would i go about nsoob

cunning lagoon
#

motherfucker just dashed across the room with the hoppers noot

#

nsoob would probably be the exact same thing

hollow pier
#

isn't a consistent cdash there helpful for all cats

cunning lagoon
#

yeah we do it in 106

#

and they do it in te too

hollow pier
#

you could set up dgate invuln and make the cdash there easier maybe

#

free 1s timesave

cunning lagoon
#

also on the room before the hopper try finding a drop then cdashing

#

instead of slowly falling

#

there's one platform really far to the left we use on 106

hollow pier
#

i already have a drop

cunning lagoon
#

nice nice

hollow pier
#

i do the as drop

#

i have isma's so if i miss the platform it doesn't suck too much

rain cedar
#

I don't think TC could have made it harder to find spawn points if they tried

#

This is fucking stupid

hollow pier
#

is having fury chest unopened optimal

#

can you pogo it for a dash

cunning lagoon
#

yeah

warped sinew
#

@cunning lagoon i was JUST thinking today about doing an AB stream

cunning lagoon
#

nice nice

warped sinew
#

of godmaster

cunning lagoon
#

btw i was using the p5 splits you gave me

#

and pure vessel didn't autosplit

warped sinew
#

oh woops

#

lol

cunning lagoon
#

so check it out if you do runs because im assuming it wont split for you either

warped sinew
#

was it set to the wrong boss? ill check it now

cunning lagoon
#

not sure

#

it's Pure Vessel (Pantheon) so it should be fine

#

idk

warped sinew
#

hmm well thats strange

hollow pier
#

if only i didn't play on 504p so i could see my visual cue for the cdash

cunning lagoon
#

what visual cue

hollow pier
#

it's a secret

cunning lagoon
#

oh for that cdash in particular?

#

use the hopper you ape

hollow pier
#

i think i just dashed in water

#

wait is this optimal

#

it's a minor glitch right

cunning lagoon
#

fuck if i know

#

ok its not the pv split that was broken

#

i think i was missing one split or something

rain cedar
#

@copper nacelle My game crashed when I tried to open inventory as I was loading in

#

I blame qol

hollow pier
#

good

cunning lagoon
#

found the culprit

#

there was not a failed champ split

#

or it wasn't in the autosplit list thingy, rather

rain cedar
#

Ok nevermind it crashes whether I press inventory or not

hollow pier
#

do you still blame qol

rain cedar
#

No I blame myself

fair rampart
#

What else would it be?

#

Unless this has to do with what you're doing with benches

warped sinew
#

when is 112% all bindings gonna be a category? ๐Ÿ’ฉ

cunning lagoon
#

hmmmm

warped sinew
#

112% hell mod but worse category???

#

hell mod, glass soul, all bindings, lightbringer??

#

WHEN

fair rampart
#
  • rng mod
warped sinew
#

(notice i put the worst mod last)

fair rampart
#
  • item randomizer
rain cedar
#

It's not to do with benches

#

But yeah I changed something and then it crashed

#

So probably me

fair rampart
#

Why would you do hell + bound? that would be horrible and not even fun

#

It'd take forever to kill anything

cunning lagoon
#

don't do hell + bound kids

hollow pier
#

i'm losing my pogo dash timing

#

pepehands

#

used to be 100%

cunning lagoon
#

i too have issues pressing 2 keys in quick succession

rain cedar
#

Oh wait I see exactly why it's crashing

warped sinew
#

I tried three the other day

rain cedar
#

Idk how to even fix this

warped sinew
#

Didn't end well

#

Long story short, now they call me 8 fingers joe

fair rampart
#

Hi 8 fingers joe

rain cedar
#

This should actually have been a problem earlier

warped sinew
#

Hello

rain cedar
#

Wait maybe not

cunning lagoon
#

hmmmmmmmmm

#

@copper nacelle did you fix the thing where the bindings mod just set your nail damage to 13 when starting a new sve

hollow pier
#

dae die to kp spikes

#

why are notes disabled in streamer mode

#

that's dumb

cunning lagoon
#

u are dymb too so it evens out

hollow pier
cunning lagoon
#

how are they not pete kyr

hollow pier
#

against my email

cunning lagoon
#

is this guess the username

hollow pier
#

go ahead

cunning lagoon
#

i say it's @ Skurry#2166

hollow pier
#

no

cunning lagoon
#

damn

#

is skurry even a furry

#

i know he makes emotes

hollow pier
#

only 2k kids will know this username

cunning lagoon
#

ah shit

#

ah

#

sean

#

ofc

hollow pier
#

hmmm

#

how come i can't just resize livesplit

cunning lagoon
#

on obs or livesplit itself

hollow pier
#

livesplit itself

cunning lagoon
#

it just doesnt let you?

hollow pier
#

i want to make it shorter

river eagle
#

what is this Times New Roman?

hollow pier
#

but not be death

cunning lagoon
#

go to edit layouty and click set size

hollow pier
#

it's felix tilting baskerville and californian fb

fair rampart
#

What's wrong with Times New Roman?

hollow pier
#

set size does nothing

#

it does the same as me just resizing it

cunning lagoon
#

ah i know what you mean

#

in edit layout go to your splits

#

and uncheck

#

fill with blank space if not enough splits

fair rampart
#

I say while using this ridiculous font for my nickname

cunning lagoon
#

What's wrong with เธ„ั”ี‡ั”ะณเธ เธ„ษญเน€เธฃ ี‡ั’ั” เธ„เน’ืฅเธฃเธฃเธ„ษญ เธ„ษญฯ‚ั’ั”เน“เน€เธฃี‡?

fair rampart
#

I don't even know what this font is called

hollow pier
#

any ways to not want to die with a canker sore

#

canchre if you're fancy or something

fair rampart
#

I've had canker sores

#

they suck

hollow pier
#

eating saline foods haha yes

dusky lion
#

Your font is Thai Script nathan

hollow pier
#

time to watch kry while i eat then do runs

cunning lagoon
#

i dont even know what that means

#

oh i know what that means

fair rampart
#

What what means?

cunning lagoon
#

i feel you

#

canker sore

#

i googled it

fair rampart
#

There is this stuff that I put on the sore that numbs it

hollow pier
#

how is time still live

#

guess i watch both

cunning lagoon
#

yo any suggestions for fast mmc ab strats

fair rampart
#

MMC wasn't easy enough to kill?

cunning lagoon
#

i just need to kill him faster

#

but i just came up with something

#

so disregard

fair rampart
#

Would Cyclone Slash work?

cunning lagoon
#

cyclone is actual garbage

fair rampart
#

You take that back

cunning lagoon
#

it barely knocks him back and it has a small delay before you can swing again

#

so you can't hit him bacj

#

actual garbage for mmc*

#

i use it a lot on the rest of the run

#

its very good

fair rampart
#

The fastest way I can think of is spamming with QSlash

cunning lagoon
#

sadly you cannot equip qs on ab

hollow pier
#

standing there and nailing is probably the best way

fair rampart
#

Oh right

hollow pier
#

maybe nail spell occasionally

cunning lagoon
#

yeah im just gonna do 3 swings and a ss dhit

#

rinse and repeat

#

now the more problematic boss

#

any suggestions for fast winged nosk strats

hollow pier
#

do vk but better

fair rampart
#

Dream Shield
zote

cunning lagoon
#

vk stands idle for longer

#

i think

#

so you can go below him and shriek

#

not sure if you can do that on wn though

#

will try

hollow pier
#

are you shrieking when he's in the ceiling

cunning lagoon
#

im just ddarking when he charges

#

and if i dont have enough i do pogo dash pogo

#

keep in mind i can only spell once

hollow pier
#

ab il was a bad decision

cunning lagoon
#

nah its fun

hollow pier
#

longer than te feelsgoodman

cunning lagoon
#

its not though

#

i got a 58:46 and its not even optimized yet

hollow pier
#

longer than any% feelsgoodman

cunning lagoon
#

yeah you cant really shriek

#

because he just charges at you

#

i swear to god if i have to keep using this shitty ass ddark strat

hollow pier
cunning lagoon
#

nice nice

hollow pier
#

also i was saying to shriek when he goes into the ceiling and drops goo

#

dunno if it works

cunning lagoon
#

can you avoid the acid consistently with that

hollow pier
#

who really knows

cunning lagoon
#

cause damage tank strats dont work too well

#

for tha segment in particular you really wanna keep your lb

hollow pier
#

use fury lol

cunning lagoon
#

hah yeaaaaaa

hollow pier
#

eating something with soy sauce with a canker sore haha yes

fair rampart
#

Laugh through the pain

#

don't actually

#

it makes it hurt worse

cunning lagoon
#

yeah those suck :/

#

just heal lol

hollow pier
#

i wish i ran something with a functioning ingame timer so i didn't really need livesplit

cunning lagoon
#

what's wrong with livesplit

#

also it gave me a really accurate time for my p4 test run

#

it was 1s off of the livesplit time

hollow pier
#

running another program haha yes

#

and it takes almost as long as terraria to open

cunning lagoon
#

dood its a fricking timer

#

what

#

nothing takes as long as terraria

hollow pier
#

i takes longer than most applications

cunning lagoon
#

๐Ÿค”

hollow pier
#

do i stream gh

solemn rivet
#

n o

cunning lagoon
#

im not watching

#

gonna get some more ab practice and bed

hollow pier
#

bed GWjiangoOmegaLUL

#

1:17 first run no last room cdash

cunning lagoon
#

free rekky โ„ข

hollow pier
#

dae get hit by the first crawlid out of your cdash

cunning lagoon
#

this is why i wanted to lab cdashes GWbratWhy

unborn flicker
#

I decided to take a hard pass on fsms tho

#

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

runic skiff
#

yo

#

the first file in the pinned messages section for this part of the Hollow Knight discord

#

is that the fsm viewer?

rain cedar
#

Yeah

#

I'm calling UnloadScene

#

And yet there it is

#

Still loaded

hollow pier
#

i got rekky

#

just not a good rekky

#

tried the cdash and failed

#

hot 2s loss

cunning lagoon
#

you suck

hollow pier
#

1:15

#

good run

#

cdash at the end is too precise maybe tomorrow

rain cedar
#

Go talk about speedruns somewhere else I'm trying to ask modding questions

hollow pier
#

does this look like a modding channel to you

rain cedar
#

Yes

hollow pier
#

shit

#

do you know why the first crawlid exists when i enter from the top load but not from the big door

cunning lagoon
#

that crawlid is weird

#

i had to save and quit to make him respawn after dying

#

in kp low jump

hollow pier
#

he also hits me out of cdash

#

which i thoroughly enjoy

#

๐Ÿ™‚

rain cedar
#

Why is everything so hard with this game?

#

Like it gets rid of King's Pass in the background but the menu is still black background

#

And if you go into an option and back out it dies

#

@pearl sentinel How do you make menu not die in enemy randomizer?

hollow pier
#

nonmodder kerr GWbratWhy

rain cedar
hollow pier
rain cedar
#

Ok menu scene isn't even valid

#

Somehow

#

Nevermind kerr I fixed it

#

You get screen shake when the menu loads but good enough for me

hollow pier
#

sean how shit are e tech snipers

#

will any same level purple sniper be better

rain cedar
#

Yes pretty much

hollow pier
#

cool

#

apparently they don't get b0re so that's shit

rain cedar
#

E-Tech snipers are really shit if you're somewhat decent at shooting

#

Because crit

#

And they eat ammo like crazy

hollow pier
#

hey i can headshot sometimes

#

not nomads they're impossible for some reason

hazy sentinel
#

crit bonus approximately -5

finite herald
#

I love you @cunning lagoon

cunning lagoon
finite herald
#

@cunning lagoon why are you not famous bro

copper nacelle
#

@cunning lagoon I did but I didn't release it

hollow pier
pearl sentinel
#

@rain cedar 3 hours of crying baby later I have time to reply... glad you fixed it, and sorry for the troubles

young walrus
#

^ reason #15523 of why I don't want kids

pearl sentinel
#

Everyone says it will get better when he hits 3 months old... got a month to go still elderbug

copper nacelle
rain cedar
pearl sentinel
#

How goes?

rain cedar
#

Going good, quarter is almost over and then I get a month break from school

#

Hope you're not too stressed with the kid

pearl sentinel
#

Nah. Just tiring

#

We don't sleep longer than 3 hours in a row anymore

rain cedar
#

Yeah that makes sense

#

Maybe after the 3 month mark you can get 4 hours at once instead

pearl sentinel
#

Supposedly it jumps to 6

rain cedar
#

6 is good, you can live on 6

#

3 is not sustainable

pearl sentinel
#

Least, that's what all the dads at work say

#

I told my boss I wasn't going to work on any new features at work after lunch since it would end up with shit code due to lack of sleep. So I just try and discuss stuff and bug fix instead

#

And he's awake again... rip

copper nacelle
warped sinew
#

@pearl sentinel I have a 5 month old now and it does get better, they sleep longer. Until they start teething that is.. .

rain cedar
#

Somehow running this ONCE at mod load causes room dupes for the entire rest of the session

#

The only thing I can think of is that Unity is remembering that I put in LoadSceneMode.Additive

#

And applying that to all the other loads

copper nacelle
#

Don't you have to unload it

#

I know krythom's dupe mod just loads it once and it stays forever

rain cedar
#

Calling unload did nothing, that's why I have the Destroy thing

#

Second to last line

#

King's pass doesn't stay forever I mean like if I go down the dirtmouth well dirtmouth will stay

#

For some reason

copper nacelle
#

Wtf

rain cedar
#

Wtf unity is so bad

#

Holy shit

#

If you call LoadScene it forces everything else to finish synchronously

copper nacelle
#

Is this death

#

Tf

rain cedar
#

The first part of that sentence doesn't even make sense

#

Like "Because this is a synchronous load, everything else is now synchronous too"

#

???

#

Ok well it breaks even if I use async so that's not it

copper nacelle
#

TC has some weird object to deal with additive loads

#

I destroyed it once and then bosses started moving out of their arenas

rain cedar
#

Ok well calling LoadSceneAsync works

#

LoadScene didn't

#

And no room dupe

copper nacelle
#

nice

rain cedar
#

Unload async I mean

#

And it doesn't even look async as far as I can tell

#

Like I don't see any frames of kp

rain cedar
#

Someone help

#

The rando sha1 in the modlinks matches the one in the archive

#

But modinstaller updates it every time it runs anyway

compact sedge
#

do the file names match

#

is there only one entry for rando in the xml

rain cedar
#

I didn't change anything except the sha1 and it worked before

#

Wait I swear I uploaded it but this is wrong on the drive

#

Mystery solved

#

I put it in one of the mod folders by accident

#

Second mystery solved

#

If only there was a way to squash changes on google drive like on git so people wouldn't see I'm dumb

vapid cape
#

tfw you're known as the guy who "did it with the nail art bug"

floral furnace
#

DLK EXPOSED ๐Ÿ˜ฑ ๐Ÿ˜ฑ ๐Ÿ˜ฑ TOP TEN HOLLOW KNIGHT CONTROVERSIES

finite herald
#

@vapid cape lol i didnt want to make it sound like that, you are one of my fav players as well, and Im aware some things were hardet back then in the panths. Ill edit that because indeed sounds like Im taking out value of what you guys did, which is amazing

vapid cape
#

Nah, I don't really mind

#

Wait, I just noticed that's you

#

I thought this was some rando who knew how I was, I got real excited

finite herald
#

Lol XD im still your fan tho ๐Ÿ˜ญ

#

You should be excited hahaha

vapid cape
#

Yeah! I am. But I could have had TWO fans!

cunning lagoon
#

I'm your fan too :)

solemn rivet
#

Not me, I'm lactose intolerant

floral furnace
#

btw gradow you got them animations working when you manually played them with the tk2dspriteanimatorcrapshit right?

#

like, forced them to play

solemn rivet
#

kinda

#

they didn't work like 100%

#

but I got them to play

#

somewhat

floral furnace
#

did they break when you forced them?

cunning lagoon
#

update the bindings mod then y6ou lazy fuck @copper nacelle

copper nacelle
ember bloom
#

tfw

cunning lagoon
#

i wanna do a bindings ssteel soul playthrough

copper nacelle
#

you can't even do true ending cause no charms

cunning lagoon
#

gdi

#

it's fine i can work with that

#

gimme the fix

copper nacelle
#

i would but i'm at a hackathon

#

aka

#

not at my computer

cunning lagoon
ember bloom
#

aka too gay

fair rampart
#

hackathon?

cunning lagoon
#

nvm i can just do hell mod

fair rampart
#

is that like a marathon, but for coding?

copper nacelle
#

it's a competition

#

you code for like 12hr then get judged and maybe get prizes

ember bloom
#

It's coding competition in Ruby tdogRat

cunning lagoon
copper nacelle
cunning lagoon
#

what does 1st place get

#

or, rather, what will you get when you inevitably win

copper nacelle
#

there are like 3 thingies which get prizes

#

and it's like a 25 dollar github card

#

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

#

also t-shirts and shit but i don't think you need to win for that

cunning lagoon
#

nuts

fair rampart
#

github has giftcards?

#

for what

copper nacelle
fair rampart
#

lame

#

I guess the collectibles could be neat

cunning lagoon
#

get 100% completion

fair rampart
#

but a shirt, sticker, or coaster is a lame prize

cunning lagoon
#

yo the hell mod in the drive says its for 1221

#

where my cp hell mod at

fair rampart
#

Why not make it so you can select bindings at the start of the game, instead of forcing all of them?

#

Because fuck Charm Binding

floral furnace
#

In order to be the best coder, you gotta learn how to be creative, be fast, be smart, have some determination on a difficult problem, CTRL C,V and FreeSourceCodes . com

ember bloom
#

Because fuck modding

#

Change Radiance into Sans from Deltarune

#

Mod of the year ๐Ÿ‘Œ

fair rampart
#

You don't fight Sans in Deltarune

cunning lagoon
#

nathan why you dissing my boy the charm binding ๐Ÿ˜ก

fair rampart
#

Unless I am mistaken

ember bloom
#

Oh right, i mixed him with Jevil from Undertale

fair rampart
#

Kurosh, the charm binding is the worst of the 4 bindings

floral furnace
#

Hey kuro oft but i just wanted to get this off my chest

#

Youre my hero Kuro i respect you so much great work proud of you

cunning lagoon
#

you too ttacco

fair rampart
#

You may now eat the taco

floral furnace
#

Can for banabalism

fair rampart
#

Not canabalism unless Kurosh is also a taco

#

As far I am aware, he is a blue sheet

cunning lagoon
#

lets goo

#

holy shit cp runs so well

#

tc please patch the glitches back into the game

weak lodge
#

hello

#

i would like to know how to mod

cunning lagoon
#

how to make mods or how to install them

weak lodge
#

make

#

and is it fairly easy?

fair rampart
#

Uhh

#

Depends on your aptitude for understanding code

floral furnace
#

Adapt, Overcome, Steal Borrow source code from other Mods

#

Abuse GPL 3 56 told me so

weak lodge
#

i have no experience but hollow knight modding and seeing all these cool mods you guys make, makes me want to try

fair rampart
#

You need an IDE

#

like Visual Studio

#

or Rider

floral furnace
#

any other coding experiences?

weak lodge
#

hmm

#

no

floral furnace
#

this but VS is actually free

weak lodge
#

sorry

floral furnace
#

well if youre interested in it, you can definitely learn the basics of it

fair rampart
#

I didn't either, but I made a mod in the end... with much help

weak lodge
mortal trout
weak lodge
#

interesting

fair rampart
#

Knightmere, why would you betray us like this?

weak lodge
#

hmmm

floral furnace
#

seriously

#

also knightmere ur already pro

weak lodge
#

wrong

#

i am weakling

#

ttacco is the pro here

mortal trout
#

you could've acted dumb and pissed everybody off instead smh

floral furnace
#

wrongo

weak lodge
#

no no

floral furnace
#

i dont think knightmere is that much of a jerk to do something like that

weak lodge
#

look it was a silly joke i wouldn't come in and actually say toxic shit

#

i despise that shit

floral furnace
#

also i can feel it, i have this innate sense that i inherited when i was born, i know when a mod/admin is watching or not

weak lodge
#

hmmm

#

Khan isnt here though

floral furnace
#

Benji? or maybe not

mortal trout
#

khan is a top tier lurker tho

weak lodge
#

true

#

was a drunk joke, apologies

#

but was it convincing

#

:')

mortal trout
#

i mean you just needed to click your profile to see it was you

floral furnace
#

i cant believe knightmare actually drinks

weak lodge
#

no no

cunning lagoon
#

they removed a vengefly in greenpath thinkgrub

weak lodge
#

didn't actually drink

floral furnace
#

you cant convince me otherwise i already know the truth

#

wait what

#

what vengefly

cunning lagoon
#

you know the long hallway where vengefly king is

#

to the left of the first crawlid you see there are supposed to be 2 vengeflies

fair rampart
#

Why did they remove that GP Soul Totem?

cunning lagoon
#

no clue

fair rampart
#

Looks really weird without it

floral furnace
#

wait what patch are you running?

cunning lagoon
#

real loss is not being able to use it as a backup for fb skips

#

there are 2 flies on 1221, 1 on 1432

floral furnace
#

weirdd

#

guessing its

  1. a bug and wasnt intended
  2. an accident
  3. """increase performance"""
  4. that vengefly is easy are you kidding me when have you seen enemy with such speed and agility etc etc
cunning lagoon
#

it might be hell mod

#

apparently it auto saves zote

#

which means vengefly king isn't there

#

so if they tied that fly to vengefly king

#

which idk why they would

#

but idk why they'd remove it either so

#

56 did you end up adding explosion pogo back into qol

#

nvm i can just float

#

do spell twister soul catcher etc work with hell mod

copper nacelle
#

Yes

#

didn't add explosion pogo yet

cunning lagoon
#

its fine i speedran through sanctum and got telefragged thrice in a row so the playthrough is over

#

back to bindings

leaden hedge
#

just one person

#

don't you know you have to be chosen by god to be able to beat hornet 1

weak lodge
#

@cunning lagoon god help

#

i can't beat the vengefly whose eating the hollow knight in the ggreen place

ornate rivet
#

green palace*

weak lodge
#

yea there

#

thanks

#

๐Ÿ™‚

ornate rivet
weak lodge
#

hmm

ornate rivet
#

had to hack steam to bypass their age restriction

weak lodge
#

saleh 28 when

ornate rivet
#

๐Ÿ˜Ž

weak lodge
#

oh wopw i read that wrong

#

not 28

#

118

#

hmm

#

saleh

#

can you tell us a story

#

about hitler

ornate rivet
#

uhhh

weak lodge
#

i'm olny -42 currently

ornate rivet
#

Adolf Hitler was a German politician, demagogue, and Pan-German revolutionary, who was the leader of the Nazi Party, Chancellor of Germany from 1933 to 1945 and Fรผhrer of Nazi Germany from 1934 to 1945. As dictator, Hitler initiated World War II in Europe with the invasion of Poland in September 1939, and was central to the Holocaust.

weak lodge
#

oh

#

thank you saleh, very cool!

ornate rivet
#

yw

weak lodge
#

lmao ex ๐Ÿ˜Ž

fair rampart
#

What is that review for?

ornate rivet
#

Dark souls 3

mortal trout
#

lmao

weary oyster
cunning lagoon
#

who knows

weary oyster
#

its on the installer

river eagle
#

According to google translate it's latin and means "all the gods" milliS

cunning lagoon
trim totem
#

randomized Pantheon iirc

ornate rivet
#

there is nothing between -13 and -13 so why is randomfloat needed

fair rampart
#

Was that explanation adequate?

ornate rivet
#

I just wanted to make sure I wasn't missing something

#

real big think tbh

#

is it illegal for us to be using PlayMaker code extracted from dnSpy?

#

didn't tc have to pay for playmaker?

leaden hedge
#

what code would you be using

#

none of it is particularly interesting

ornate rivet
#

I haven't used anything from it yet except for when I wanted to see how the FaceAngle action worked

#

and that's wasn't anything special like you said

leaden hedge
#

pretty much every action is like 1 or 2 lines of code, nothing copyrightable or even proveable you did steal if you did

#

and 99% of the time its just the standard way of doing x

copper nacelle
#

@weary oyster rando Pantheons

#

also hal's translation is right

#

Google translate actually working for once

cunning lagoon
#

NUTS

regal cedar
#

hello

cunning lagoon
#

sup

regal cedar
#

are there any mods that you would rec as a QoL stuff?

cunning lagoon
#

yes

dusky lion
#

the QoL mod

cunning lagoon
#

the qol mod

regal cedar
#

oh oof sorry

dusky lion
#

the wind blows hard in december our last fight do you remember counting the days since we left

regal cedar
#

um whatdoes it do?

dusky lion
#

quality of life

fair rampart
#

Makes things better

dusky lion
fair rampart
#

except when it doesn't

cunning lagoon
#
  • hardlocks at monomon
regal cedar
#

does blackmoth and lightbringer conflict?

fair rampart
#

Yes, somewhat

#

But not unplayable

regal cedar
#

ty

ornate rivet
#

why is the grimm bat's collision circle so big when I spawn it

regal cedar
#

um for redwing, do you need to download redwing assets as well?

fair rampart
#

Uh, did gradow fix the lag in blackmoth?

regal cedar
#

ty, sorry for all the questions

cunning lagoon
#

i dont think so aa

regal cedar
#

um if the game isn't responding does that mean some of my mods conflict

#

nvm took a while to load but it did

cunning lagoon
#

lightbringer takes almost a minute

#

yeah

fair rampart
#

There's a Team Berry meme, lol

ornate rivet
#

people who fall for that are the Dungo of Dungos

cunning lagoon
#

really dude................

latent mist
#

Hello

cunning lagoon
#

sup

latent mist
#

can someone help me to install a mod? i want only one :'3

fair rampart
#

Which mod out of curiosity?

latent mist
#

I want to know what mod that add a hp bar?