#archived-modding-development

1 messages Β· Page 178 of 1

solemn rivet
#

Maybe you're missing something

north linden
#

Thanks a ton!

fair rampart
#

what's the focus method?

buoyant obsidian
#

Focus is in HeroController Update

fair rampart
#

the herocontroller one is private, but I assume it updates from the save file

#

would this be a thing causing it

north linden
#

I got the debug mod but do I click Install Modding API

#

Sorry for being such trouble while your focusing on that

fair rampart
#

you'll need the APi yeah

compact sedge
#

ok I figured out something very important

steel patio
compact sedge
#

You need a try catch for

On.* -= function

now. otherwise you'll get an exception if it wasn't added.

solemn rivet
#

Yup

#

Charming did that to me

fair rampart
#

@steel patio

#

πŸ‘ i πŸ‘ changed πŸ‘ that πŸ‘ value πŸ‘

solemn rivet
#

clap

cunning lagoon
#

rude 😑

solemn rivet
#

primalaspid this is rude

#

Everything else is tame in comparison

fair rampart
#

unpopular opinion: they're not that bad if you have nailmaster's glory

cunning lagoon
#

they are only bad on collector all binds zote

solemn rivet
#

They are if you are all bound

fair rampart
#

tru

cunning lagoon
#

otherwise i think they are one of the best enemies in the game

solemn rivet
#

No

cunning lagoon
#

they are one of the few enemies where you actually have to think to deal with them

#

and not just press nail repeatedly

solemn rivet
#

Crawlid for president

hollow pier
#

repeteadley

cunning lagoon
#

its a hard word

fair rampart
#

well, according to this code, the focus cost should be completely fine, but it appears to be having an aneurysm anyway

solemn rivet
#

Ptk how can you always be here when someone messes up

cunning lagoon
#

he just lurks until someone makes a typo

hollow pier
solemn rivet
#

Check the DrainMP method

fair rampart
#
        {
            this.drainMP_timer += Time.deltaTime;
            this.drainMP_seconds += Time.deltaTime;
            while (this.drainMP_timer >= this.drainMP_time)
            {
                this.MP_drained += 1f;
                this.drainMP_timer -= this.drainMP_time;
                this.TakeMP(1);
                this.gm.soulOrb_fsm.SendEvent("MP DRAIN");
                if (this.MP_drained == this.focusMP_amount)
                {
                    this.MP_drained -= this.drainMP_time;
                    this.proxyFSM.SendEvent("HeroCtrl-FocusCompleted");
                }
            }
        }```
solemn rivet
#

I thought there was a method

#

Huh

north linden
#

I downloaded the debug mod and the api. I opened up my game how do I access it?

cunning lagoon
#

f1

#

it should tell you that its installed in the top left corner of the screen

fair rampart
#

according to the source code this should be working completely fine

solemn rivet
#

Idk

#

There's a focus hook

#

Try that

fair rampart
#

all it is is a multiplier for focus cost

#

I mean, I guess

#

might as well at this point

#

the changes appears to have crashed my windows explorer

#

and my hollow knight

compact sedge
#

Just updated Infinite Grimm to fix the text not displaying. Now works 100% in godmaster.

#

And for the record

#

I am working on support so you can fight the grimm in the GM arena infinitely but that's gonna be a bit.

fair rampart
#
        {
            return WearingGlorifiedCharm("DeepFocus") ? 0.75f : 1f;
        }```
#

this appears to make it so that the focus consumption never ends

cunning lagoon
#

nice thats great

fair rampart
#

as long as you hold the key you'll drain soul even past when you run out

#

infinite focus

solemn rivet
fair rampart
#

I don't get mad easy but this is pissing me right the fuck off

#

it works when I set it a certain way but then drains an extra 33% soul afterwards

#

y'know, for now, I think I'm just gonna give up and give it a different effect

solemn rivet
#

Maybe it's still doing the deepfocus?

fair rampart
#

all DF does is slow the speed, no?

hazy sentinel
#

it also heals twice

solemn rivet
#

Would that make sense?

fair rampart
#

I could foresee it I suppose

solemn rivet
#

Why tf would you use a charm that makes you heal the same amount but slower?

fair rampart
#

but the second one isn't meant to consume soul

#

second mask, that is

#

it's double healing for the same cost, just s l o

solemn rivet
#

Is it tho

cunning lagoon
#

yes thats deep focus

solemn rivet
#

Check fsm

#

Dump the knight's fsms and look for it there

fair rampart
#

did some testing by setting the base focus cost to 5

#

it drains the 5, then another 33%

#

so perhaps it is related to deep focus??? maybe???

#

but if so I don't know if I can suppress that

#

so maybe I should just add another 33% soul when the focus finishes.

solemn rivet
#

Try doing the same with another charm

#

And you can suppress that, but it would require editing the fsm

fair rampart
#

bizarrely, it appears to affect the glorified version only

#

despite the fact that as of the current dll there is literally no difference between glorified and not

#

other than the sprite and name...

#

maybe it's literally handled by the name

#

you know, that wouldn't surprise me

solemn rivet
#

Try using a keybind boi

fair rampart
#

to what

#

I have one already that swaps glorification on the charms

#

with normal deep focus it doesn't cause the issue

#

but with glorified it does

#

okay, changing the name to vanilla didn't fix it, worth a try

#

what the h*ck

solemn rivet
#

Try it with another charm

fair rampart
#

how do you mean?

#

in this code there is zero functional difference between glorified DF and normal DF, but normal DF consumes the normal amount whereas glorified does not

#

having DF off is normal amount as well

solemn rivet
#
        {
            return WearingGlorifiedCharm("DeepFocus") ? 0.75f : 1f;
        }```
#

Change this to

#
private float FocusCost()
        {
            return WearingGlorifiedCharm("ShapeofUnn") ? 0.75f : 1f;
        }```
fair rampart
#

I already removed that function wholly

solemn rivet
#

O

fair rampart
#

searching "deepfocus" yields the following code blocks:

  • flipflop in the hotkey I have for testing
  • name and desc changes
  • IsGlorified() check
  • WearingGlorifiedCharm() check
#

the only thing I can think of is that vanilla deep focus procs the heal twice but something about the charm, like the sprite, name or whatever, causes it to not consume soul

solemn rivet
#

Idk

#

Sorry

fair rampart
#

hk modding stack overflow when

#

well, even with no difference whatsoever, including aesthetic, the extra soul is consumed

#

I'd like to believe that this is my fault because if it's not then there is no reason in the universe and all is meaningless chaos

solemn rivet
#

It's your fault

#

You just can't prove it is

cunning lagoon
#

It's your fault

#

Just code better lol

fair rampart
#

i crave death

young walrus
#

i crave.....

#

tacos

round vapor
#

anyone fixed main-game pantheons yet by modding benches as checkpoints?

young walrus
#

kek

cunning lagoon
#

can't fix something that isn't broken

young walrus
#

it's called the hall of gods

round vapor
#

its called Godseeker mode lawl

#

so no one really did that yet?

cunning lagoon
#

no

solemn rivet
#

"fix"

young walrus
#

nobody here thinks it's warranted

#

if you want to cheese it like that, then hall of gods is what you're looking for

#

it's a boss rush

solemn rivet
#

Aside from panth5 allbinds, checkpoints aren't really needed

round vapor
#

mickely the hive mind

young walrus
#

it's meant to be long and grueling

round vapor
#

are you the team cherry?

solemn rivet
#

Wut

round vapor
#

cause you just sound like team cherry πŸ€”

cunning lagoon
#

are you the team cherry?

solemn rivet
#

None of us are tc

#

We know people from tc, sure

#

But none of us here right now are from tc

round vapor
#

dude... sarcasm?

#

that guy talks like heβ€˜s one of the devs

solemn rivet
#

Uhhh

young walrus
#

yeah, cuz checkpoints are dumb

solemn rivet
#

Mick?

young walrus
#

we get it, TC gets it

#

reddit doesn't

solemn rivet
#

Mick, a dev?

#

That's

round vapor
#

he canβ€˜t know whether GM is received by the player base as they envisioned it

young walrus
#

you're right gradow

buoyant obsidian
#

TC commented on Godmaster's reception

young walrus
#

the boss rush is how they envisioned it as far as checkpoints go

#

^^^

buoyant obsidian
#

they said "Are you serious? We thought it was too easy"

young walrus
#

they've commented on it

fair rampart
#

ur a comment

young walrus
#

this isn't news. it's difficulty is where they want it

buoyant obsidian
#

"We should've made it harder, at the moment even casual players can get through it"

round vapor
#

when did that happen, mick?

solemn rivet
#

We've talked with a lot of tc members

compact sedge
#

Is that what they actually said or are you meming?

solemn rivet
#

Before and on release

buoyant obsidian
#

big memes

copper nacelle
#

it did used to be harder, right?

round vapor
#

show me a single quote

fair rampart
#

"

#

there u go

copper nacelle
#

Benji said abs rad used to be harder

buoyant obsidian
#

they never had a halfway heal in the past

copper nacelle
#

iirc

solemn rivet
#

The troll is strong with this one

compact sedge
#

abs rad is easier than PV

buoyant obsidian
#

there was no bench and springs before

young walrus
#

well played xhuis

compact sedge
#

at least to beat not to like beat flawlessly

buoyant obsidian
#

consider yourself lucky you can heal up halfway through

copper nacelle
#

hex is the person who complains in #hk-discussion about gm ruining the game

#

iirc

compact sedge
#

tbh halfway heal isn't actually that useful

young walrus
#

makes sense

solemn rivet
#

Graig said there was another key diff too that was removed

#

But I forget what it was

compact sedge
#

yeah hitless mode

#

or something

#

right?

solemn rivet
#

Oh yeah

round vapor
#

u probably mean charm glorification
oops

compact sedge
#

don't worry if you think GM is too easy, I readded hitless mode so you can enjoy that!

fair rampart
#

charm glorification could exist through mods if I could fIGURE OUT THIS PROBLEM

round vapor
#

also read my above post properly

solemn rivet
#

Which post

hollow pier
#

I was dissapointed by this addon. I expect new lagre location like Sity of Tears, new charms, new storry, characrets and quests. Maby PvP mode. I agree give money for it. But i get only upgraded version of Trial of Fools. It seems developers now interests only making more and more money by releseases on consoles. Very poor, it was nice game.
MonStahLer, try Dark Souls series, with you skill you will be very good in it.

compact sedge
#

give money for it? but it's free

round vapor
#

i said u dont know whether the way GM is received by the player base is as they intended.

solemn rivet
cunning lagoon
#

I was dissapointed by this addon. I expect new lagre location like Sity of Tears, new charms, new storry, characrets and quests. Maby PvP mode. I agree give money for it. But i get only upgraded version of Trial of Fools. It seems developers now interests only making more and more money by releseases on consoles. Very poor, it was nice game.
MonStahLer, try Dark Souls series, with you skill you will be very good in it.

solemn rivet
#

It is, we talked with tc on release day

compact sedge
#

For me personally the only thing I didn't recieve as they intended was the prelude to ending 4 but otherwise I'm on the same page as them.

#

so I'd say it was a success

#

for me at least

buoyant obsidian
#

my only complaint is no permanent ugprades

young walrus
#

maybe TC expected people to be upset that they're not being babied and pampered by the end game challenge content

solemn rivet
#

I don't really have any complaints, except that fluke Hermit is useless now

round vapor
#

in which way is it received as intended, gradow? can you be more precise about TCβ€˜s statement?

solemn rivet
#

That makes me sad

compact sedge
#

oh I was wondering what is up with fluke hermit

#

no really what's up with them

solemn rivet
#

No I can't, Hex. There's a search function and you can use it, it's free

round vapor
#

good idea!

solemn rivet
#

Search for posts by Graig on this channel

fair rampart
#

people have a right not to like something and they shouldn't be belittled for it

#

but that's none of my business

solemn rivet
#

He's with tc

#

And the right to not care enough about something to warrant discussion, xhu

round vapor
#

wait no

solemn rivet
#

But it seems we can't, nowadays

round vapor
#

graig isnt team cherry lol

solemn rivet
#

We have to be binary

#

What

#

Are you high m8

round vapor
#

only ari and wil are TC proper

solemn rivet
#

ffs

cunning lagoon
#

yea graig's just some random dude

round vapor
#

whats their account names?

solemn rivet
#

Look...

#

AA do you have any idea why xhu is having that focus issue?

compact sedge
#

I've never done anything with focus costs so no unfortunately not

solemn rivet
#

Hmm

#

I'm only home in like

#

5 hours

buoyant obsidian
#

I remember I had trouble messing with it too

#

it's likely you need to change both focus time and focus amount for it to change properly

copper nacelle
#

I did focus time

#

didn't affect cost

solemn rivet
#

Weird... I don't remember having issues with it on bonfire

#

Like I said, might be worth checking it out, xhu

fair rampart
#

why does it still consume extra soul when there's no mechanical difference, then?

#

nada, zilch, zippo

#

glorified deep focus has only a different sprite, name, and description

#

but it still consumes extra soul on heal

#

wait, scratch that

#

it doesn't do the 2nd mask of healing either LMAO

copper nacelle
fair rampart
#

as a wise man once said, "the fuck"

copper nacelle
#

so it heals 1 at the speed of deep focus but also costs double?

solemn rivet
#

Share your code

#

We need to go deeper!

fair rampart
#

@copper nacelle ye

copper nacelle
fair rampart
#

@solemn rivet I got frustrated and scrapped it for the time being so when it comes up again I will post it

#

right now I'll just do quick focus

copper nacelle
#

what's it supposed to do to be tbh

fair rampart
#

the glorified version was originally supposed to reduce focus cost to 25 soul instead of 33

copper nacelle
#

did you try the fsm

fair rampart
#

no

#

it worked but then it would consume another 33 after it finished

copper nacelle
fair rampart
#

then when I removed literally all of the code affecting it and just made it a setting it still consumed 33 more and didn't heal a 2nd mask

#

so I assumed it was something based on how the game tracked it and gave up

copper nacelle
#

nice

fair rampart
#

what

#

the cost decrease that is

copper nacelle
#

you hooked mp drain for deep focus right

solemn rivet
#

I told him to

fair rampart
#

99% sure yea

hollow pier
#

what if glorified charms didn't rename or resprite and was just Charm*

#

Dashmaster*

#

stay woke

fair rampart
#

less neat

solemn rivet
#

What if glorify didn't do shit

#

Maybe it's implemented and we just can't tell

fair rampart
#

self-pinning

hollow pier
#

modder abuse

fair rampart
#

πŸ”« grimm

cunning lagoon
solemn rivet
#

Mobile fat fingers etc

cunning lagoon
#

second absrad all binds kill

#

getting closer

#

still dont know how to deal with collector

fair rampart
hollow pier
#

is that a kappapride

fair rampart
#

it's a dazzling urn

#

stalwart shell, soul catcher, shaman stone, dashmaster, sprintmaster,grubsong, quick slash, fury of the fallen, quick focus, hiveblood

hollow pier
#

glorify void heart thx

fair rampart
#

hiveblood doesn't have any different mechanics tho, it's just 2 notches

#

can't wait for fabsol to try and take the mod down because I used a name that his mod also happens to use LMAO

copper nacelle
#

make it heal twice as fast kthx

fair rampart
#

no idea how otherwise I would

cunning lagoon
#

just call it Anpoule

fair rampart
#

I figured that 2 notches was a decent cost for the current effect

cunning lagoon
#

honestly 2 notches hiveblood sounds solid

fair rampart
#

I also did some nerfs

cunning lagoon
#

4 notches is just too much

fair rampart
#

grubsong now gives 1% more soul on nail hit per missing mask instead of 3%

cunning lagoon
#

when you could just not take damage intenseface

fair rampart
#

stalwart shell also only reduces damage by 1 mask if you have 33% soul

#

so it's slightly better than healing the equivalent amount of damage

copper nacelle
#
GameObject.Find("Health").LocateMyFsm("Hive Health Regen").Fsm.GetFsmFloat("Recover Time").Value /= 2;```
#

thanks

fair rampart
#

does that actually work

copper nacelle
#

it should

fair rampart
#

how do you know all this

hollow pier
#

must be the 15yo prowess

copper nacelle
#

yes

fair rampart
#

funny thing about this is that even with doubled speed or

#

DIE

#

anyways

#

funny thing about is that even with double speed, 2 notches is still about normal for it

copper nacelle
#

what

#

yes

fair rampart
#

4 notches for the current effect is insanely bad lmao

#

no

copper nacelle
#

yes

#

just do that

#

but with pure vessel

fair rampart
#

no

#

how

copper nacelle
#

literally the same thing but you swap the wait data

fair rampart
#

what program am i supposed to use

copper nacelle
#

visual studio, dnspy, fsm dumper

fair rampart
#

i don't have any of those

copper nacelle
#

u absolute dungo

fair rampart
#

guess im not making infinite pv

copper nacelle
#

why would you do that in init

fair rampart
#

cuz I'm happy and i know it

copper nacelle
#

save game load might work

#

might need a coroutine

fair rampart
#

where's the code

#

i don';t see it anywhere

copper nacelle
#

what

fair rampart
#

for infinite uumuu

#

can't i just copy it and change every thing that says uumuu to pure vessel

copper nacelle
#

no you need wait data

fair rampart
#

what's that

copper nacelle
#

data

#

on waits

#

in the fsm

fair rampart
#

what are waits

hazy sentinel
#

more like waita

#

haha get it

copper nacelle
#

yes

fair rampart
#

whats an fsm

copper nacelle
#

ur mum

cunning lagoon
#

flying spaghetti monster

hazy sentinel
#

First
Second
Mhird

copper nacelle
#

yes

#

finite state machine

fair rampart
#

@copper nacelle unglorified takes 12 seconds, glorified takes 6 it seems now

#

so ye it worked

hazy sentinel
#

make it take 1 second

copper nacelle
#

make it /= 4

fair rampart
#

real shit

#

@copper nacelle i said i have no idea how hk modding works i don't know why you expect me to infinite pv myself when i could just wait for someone else to make it

copper nacelle
#

cause no one will make it

fair rampart
#

also if it's 12 seconds would the base value theoretically be 12f

hazy sentinel
#

πŸ€”

cunning lagoon
#

hey i want this mod but im not willing to put in the effort to make it so can you do everything for me

#

thanks

copper nacelle
#

probably

fair rampart
#

yeah

#

exactly

young walrus
#

just present it as a meme. that'll get it made.

cunning lagoon
#

^

fair rampart
#

"hey make an infinite pure vessel mod but the graphic quality gradually reduces as you deal damage"

#

deep fried pv

#

i don't wanna download 3 different programs just to make one thing and then never use them again

young walrus
#

deleting programs is hard. i feel that

fair rampart
#

yeah

#

deleting programs is harder than gruz mother

young walrus
#

cohhMy harder than gruz mum cohhMy

fair rampart
#

i don't even have the option to uninstall programs on my pc

hazy sentinel
#

harder than m'di-

copper nacelle
hazy sentinel
#

equipped void discord

copper nacelle
#

they were just invisible

#

for whatever reason

#

apparently

rustic stag
#

I had the same thing while messing with bindings.

#

Also am I late to the party and everyone else has seen this?

hazy sentinel
#

u mean the black bar

rustic stag
#

Yeah my screen was covered in exception errors at the time

fair rampart
#

yeah i've never seen that black bar there before

#

ok

rustic stag
#

so I just covered that

cunning lagoon
#

@copper nacelle do you happen to know why absrad sometimes spawns 3 fireballs and sometimes she spawns 4

#

or is it just random

fair rampart
#

it's probably random

hazy sentinel
#

what does absrad fsm look like

cunning lagoon
#

it seems random but who knows

compact sedge
#

19847 for the boss

hazy sentinel
#

is a file extension optional

copper nacelle
#

yes

compact sedge
#

yes I use mime types

copper nacelle
#

why is everything an fsm event target

#

can it don't

#

why is abs rad's fsm pain

buoyant obsidian
#

why fsms

copper nacelle
#

cause tc

buoyant obsidian
#

They should make multiplayer games use FSMs as encryption

eager timber
#

Mods in hollow knight painfully bad lamo

copper nacelle
#

die

#

@cunning lagoon ngl

#

i have no idea what it's sending the event to

#

so idk

cunning lagoon
#

ok

#

thanks

hazy sentinel
#

@cunning lagoon ngl

cunning lagoon
compact sedge
#

anything 56 says that isn't preceded by ngl or tbh is a lie

cunning lagoon
#

well of course he cant lie if he says ngl

#

its forbidden by law

copper nacelle
#

one send event says FINAL ORBS

#

but nothing receives FINAL ORBS in the dump

#

is this loss

cunning lagoon
#

i assume thats infinite fireballs?

copper nacelle
#

Β―_(ツ)_/Β―

#

probably

cunning lagoon
#

oh fun fact you get the cutscene thing where you have to attack absrad at the end

#

with the bindings mod

#

even on the hog

#

also i want to buff elder hu where do i begin

copper nacelle
#

visual studio, dnspy

#

and the FSM viewer

cunning lagoon
#

thanks dad

buoyant obsidian
#

steal code

#

that's step 1

copper nacelle
#

then you can copy stuff yeah

hazy sentinel
#

look at old threads on stackoverflow and bother modders

copper nacelle
#

once you get vs

#

you can make a mod which adds a class which inherits from MonoBehaviour

#

that lets you get elder hu easily

#

then once you've looked in the FSM viewer you can check the name of the fsm

#

and modify it

hazy sentinel
cunning lagoon
copper nacelle
#

the easiest thing to change is the animation speeds and the waits

hazy sentinel
#

just switch to beta and you'll get 5 hits for PV+absrad

cunning lagoon
#

yeah i've been practicing on the pre-nerf version because the modding api doesnt work on beta

#

im more scared of collector than absrad

#

ok first thing ill do is remove MEGA

hazy sentinel
#

hope for all baldurs

copper nacelle
#

for mega

cunning lagoon
#

baldurs suck they hide behind the foreground props

copper nacelle
#

you'd want to make it so the transition doesn't happen

#

OR

buoyant obsidian
#

fuck baldurs

copper nacelle
#

better yet

#

make it so he doesn't hide himself during mega

hazy sentinel
#

baldurs are great

buoyant obsidian
#

and fuck the aspids that can spit at you before spawninf

cunning lagoon
#

mosquitoes are better tbh

fossil oxide
#

They should fix that

cunning lagoon
#

both are better than aspids

#

what would be a good name for buffed elder hu

#

no "god" or "lord" please

hazy sentinel
#

elderbug hu

cunning lagoon
copper nacelle
#

eldergod hu

cunning lagoon
#

i kinda like that one

#

eh

hazy sentinel
#

no "god" or "lord" please

cunning lagoon
#

Elder Hu 2.0

hazy sentinel
#

i kinda like that one

cunning lagoon
#

i change my mind easily

copper nacelle
#

Elder Hu^2

hazy sentinel
#

mamahuhu

cunning lagoon
#

Elder Who

fair rampart
#

mstve

hazy sentinel
#

Doctor Hu

fossil oxide
#

Pure Hu

copper nacelle
#

Lord Hu

hazy sentinel
cunning lagoon
#

Lord God

#

ARLS

fossil oxide
#

Hu'lio

hazy sentinel
#

Hu let the Gods out

copper nacelle
#

Grandma Hu

#

Empress Huzznik

hazy sentinel
#

gruz like buzz

copper nacelle
#

MEGA hu

hazy sentinel
copper nacelle
#

Massive Mega Elder Hu

hazy sentinel
hollow pier
#

what about

#

older hu

copper nacelle
hazy sentinel
#

better than radiance.host and it doesn't even exist yet

copper nacelle
compact sedge
cunning lagoon
#

elder.club seems expensive

copper nacelle
#

namecheap

#

more like

#

pain

compact sedge
#

it's because someone's squatting on it

cunning lagoon
#

as in flexing their legs up and down?

#

how does the fsm viewer work

#

ok i openbed dnspy with vs

#

am i a modder yet

fair rampart
#

getting the graphic to actually fit into the slotted part and look nice was harder than I thought

fossil oxide
#

Then why don't you just draw around that slotted part

fair rampart
#

makes u think

young walrus
#

I hate when things don't go into the slotted part easily

fair rampart
#

die

young walrus
copper nacelle
#

@cunning lagoon you open level files for scenes

cunning lagoon
#

ok ill make sure to do that

copper nacelle
#

and resources.assets for random FSMs like the knight

cunning lagoon
#

is the solution explorer what im supposed to be looking at

copper nacelle
#

that's vs

#

not the FSM viewer

cunning lagoon
#

ah

#

my bad

copper nacelle
#

but for the mod ye

cunning lagoon
#

im not quite sure how the fsm viewer works

cunning lagoon
copper nacelle
#

that's scenes => level files

fossil oxide
#

Someone mod the 5th pantheon so it doesn't require Void Heart

compact sedge
#

or just get the void heart

cunning lagoon
#

ok so do i have to find elder hu's scene

copper nacelle
#

go to elder hu

#

ye

#

in debug mod and get the scene name

fossil oxide
#

Angle

cunning lagoon
#

ok

fossil oxide
#

I've been through this before, Sharp Shadow and Kingsoul are the best charms

compact sedge
cunning lagoon
#

im gonna need a 3rd monitor for this

compact sedge
#

what about void heart but it gives you passive soul regen and also is a nuke

fossil oxide
#

Sharp Shadows makes you do 1x Nail damage from 0. So basically that's an infinite multiplier (Trust me i'm a mathematician) and King Soul gives you I N F I N I T E S O U L

cunning lagoon
#

you are not wrong

fossil oxide
#

And since Infinity > 5

#

KingSoul is OP

compact sedge
#

hive blood gives you infinite health

#

just take that

fossil oxide
#

No it doesn't

cunning lagoon
#

not against attacks that do 2 masks

fossil oxide
#

I can't tank Radiant bosses hollowdab

cunning lagoon
#

that's where the infinite soul from kingsoul comes in

#

which is why kingsoul is the best charm in the game

fossil oxide
#

Yup

compact sedge
#

"hold on ms radiance just let me sit here for 66 seconds so I can heal up the damage you just did to me"

cunning lagoon
#

exactly

#

you are beginning to understand

hazy sentinel
#

have u ever tried superdashing in absrad arena

#

it's really effective

fossil oxide
#

No you use your INFINITE SOUL to blast her away

#

Do you even play the game, Angle?

compact sedge
#

no

copper nacelle
#

@cunning lagoon there's a scene called GG elder hu or something iirc

cunning lagoon
#

fungus2_32

compact sedge
#

I play a different game called redwing. it's like hollow knight but I'll advertise it to you infinitely more times

cunning lagoon
#

dont mind me just leaving this here

copper nacelle
#

or that

#

that works too

compact sedge
copper nacelle
#

text fsm is shit

cunning lagoon
#

tyty

copper nacelle
#

no flowcharts

compact sedge
#

Β―_(ツ)_/Β―

copper nacelle
#

extreme eeeee

compact sedge
#

imagine them in your head

copper nacelle
solemn rivet
#

Imagine gay in your head

copper nacelle
#

u

solemn rivet
#

u

compact sedge
#

y'all use nes's flow chart program now I guess?

copper nacelle
#

yes

cunning lagoon
#

ok so what do i do with this information

copper nacelle
#

I need to pr in FSM event targets

solemn rivet
#

Cry

#

A lot

#

Try no to cry

#

Cry even more

compact sedge
#

if that program is so good, and it must be because it's UWP. how come not one person has made a mod since it came out besides the one person using the text fsms. @copper nacelle

copper nacelle
solemn rivet
#

Because

copper nacelle
#

lost lord

solemn rivet
#

We ded

copper nacelle
#

bindings

compact sedge
#

oh u got me

#

bindings

#

and I guess invert knight

#

but not lost lord lost lord is too old

copper nacelle
#

I started using it like halfway through making it

solemn rivet
#

Dlk try the hpbars I posted last night

cunning lagoon
#

im too busy modding

#

how do i progress

jade hollow
#

where can I get that sweet bonfire mod

cunning lagoon
#

aLSO where is my green name

compact sedge
#

don't worry

#

You'll NEVER get it

copper nacelle
#

@cunning lagoon level194 and level434

cunning lagoon
#

we will see when Eldergod Hu is the most downloaded mod

#

in the history of mods

hazy sentinel
#

wow was Hu let the Gods out not good enough for you

compact sedge
#

is the nes thing even pinned

#

where do you even get the link for it

#

actually idgaf I'm not making any HK mods after redwing cp2 anyway and yes I know I said that about redwing cp1 but this time for real.

cunning lagoon
#

no swearing please

copper nacelle
#

compile it from source ez

compact sedge
#

yes swearing pls

cunning lagoon
#

ah i know what you meant

#

what do i do with those 2 files

copper nacelle
#

open them in the fsm viewer

cunning lagoon
#

ok

copper nacelle
#

either one works

cunning lagoon
#

which one is the viewer

copper nacelle
#

none

cunning lagoon
#

sick

compact sedge
#

really tho I have a feeling y'all are just passing around old exes of nes's thing and there's no official link for them

#

I mean it's just a completely wild hunch

copper nacelle
#

no

#

it's on GitHub

cunning lagoon
#

it crashed

copper nacelle
#

nesrak/Hollow knight FSM viewer something

#

wtf

cunning lagoon
#

it crashed again

copper nacelle
#

did you open it in the HK folder

cunning lagoon
#

no GWfroggyMonkaMega

#

i just copied it

copper nacelle
#

you can't move the level files out

cunning lagoon
#

ahh

copper nacelle
#

or they die

cunning lagoon
#

so Ghost Warrior Hu-FSM?

copper nacelle
#

ye

cunning lagoon
#

doesnt seem too complex to me

copper nacelle
#

release there isn't the most recent tho so you have to compile it

#

oh

#

might be a different one then

#

also I have a fix for something on my fork so I give that version

cunning lagoon
#

how do i move the thing around

copper nacelle
#

right click

cunning lagoon
#

ok

copper nacelle
#

this is it

cunning lagoon
#

yeah

#

how do i remove mega

copper nacelle
#

change the transition

#

why not just leave him vulnerable during it tho

cunning lagoon
#

bc its a piss easy attack

copper nacelle
#

understandable

#

make it harder hollowwoke

cunning lagoon
#

perhaps

#

so how do i figure out what these things mean

#

like "Recover" or "1 1"

hollow pier
#

reΒ·covΒ·er
riˈkΙ™vΙ™r/Submit
verb
1.
return to a normal state of health, mind, or strength.
"Neil is still recovering from shock"
synonyms: recuperate, get better, convalesce, regain one's strength, get stronger, get back on one's feet; More
2.
find or regain possession of (something stolen or lost).
"police recovered a stolen video"
synonyms: retrieve, regain (possession of), get back, recoup, reclaim, repossess, redeem, recuperate, find (again), track down More
noun
1.
a defined position of a firearm forming part of a military drill.
"bring the firelock to the recover"

cunning lagoon
#

i meant the pokemon move

#

nice try though

hollow pier
#

50% hp

#

like every other healing move

cunning lagoon
#

uhh actually

#

i dont remember the name

#

hold up

copper nacelle
#

click on it

hollow pier
#

roost?

copper nacelle
#

it shows an action list

hollow pier
#

removes flying type

#

that's like the only difference

cunning lagoon
#

nah but roost is still 50%

hollow pier
#

moonlight does 50

cunning lagoon
#

morning sun is 25%

#

but its 50% during the sun

hollow pier
#

why use it outside of sun

cunning lagoon
#

thats not the point

#

its a healing move thats not 50%

#

also the new gen 7 sand castle pokemon has one that heals more during sandstorm

hollow pier
#

palossand

cunning lagoon
#

i believe synthesis also heals more during sun

#

i could be wrong

hollow pier
#

no

cunning lagoon
#

frick

#

yes it does

#

you have no idea what you are talking about

#

why the pokemon pfp

hollow pier
#

Generation III onwards
Synthesis restores the user's current HP based on the weather in the battle. During no weather it restores Β½ total HP, during harsh sunlight it restores β…” total HP, and during other weather it restores ΒΌ total HP.

copper nacelle
hollow pier
#

its 50

#

then 66

cunning lagoon
#

since when is 2/3 50

hollow pier
#

but its 50 at some point

#

all healing is 50

cunning lagoon
hollow pier
#

change my mind

cunning lagoon
#

ok 1/2 is the default

#

but not every move is 1/2

#

also aqua ring

hollow pier
#

is every move not 50 at some point

cunning lagoon
hollow pier
#

aqua isn't a onetime direct heal

cunning lagoon
#

yeah i think all of them are 50

hollow pier
#

it's leech seed but not

cunning lagoon
#

what the fuck is floral healing

hollow pier
#

what

silk jetty
#

ngg looks so insane from a video I watched of somebody fighting him

cunning lagoon
#

im just looking at all the new moves

hollow pier
#

i've never seen this move

cunning lagoon
#

same

#

present heals for 1/4

hollow pier
#

wtf is flower shield

copper nacelle
#

1/4 is 50

hollow pier
#

comfey big gay

copper nacelle
#

stay woke

cunning lagoon
#

present is never 1/2

#

ergo im right

#

and you are wrong

#

as usual

copper nacelle
hollow pier
#

present is not wholly a healing move

cunning lagoon
#

wdym

#

does it not heal? hollowface

hollow pier
#

move must have a power of -

#

big dab

cunning lagoon
#

well then good thing present happens to have a power of -

hollow pier
#

it has a power of varies

cunning lagoon
#

that is not the actual text it has ingame

#

thats just what bulbapedia says so people know it's not always the same

hollow pier
#

actual ingame text lul

cunning lagoon
hollow pier
#

who plays actual games

cunning lagoon
#

is smogon a trustworthy source for you

#

wribg link

hollow pier
#

wribg

#

ok

cunning lagoon
#

also rest is 100%

#

😎

hollow pier
#

move must also have an accuracy of -

cunning lagoon
#

fuck off

hollow pier
#

and rest is different

#

move must not place a status on the user

#

big dab

cunning lagoon
hollow pier
#

strength sap is not a direct healing move

cunning lagoon
#

i skim-read it but i think it fits the parameters

#

what

#

"then restores the user's HP by the same amount as the target's effective Attack stat before Strength Sap was used."

#

how does it not heal directly

hollow pier
#

based off opponent stats

cunning lagoon
#

so what

hollow pier
#

opponent

#

not direct

#

to the user

#

also has an accuracy of 100%

cunning lagoon
#

then i guess psyshock is not a direct move since it uses the opponent's defense despite being a special move

hollow pier
#

big think

cunning lagoon
#

smd

hollow pier
#

woke

#

please no swearing

cunning lagoon
#

also why is moonlight powered up by sunlight

#

actually it makes sense

#

nvm

#

now i want to play pokemon

hollow pier
#

1v1 me in monotype random

cunning lagoon
#

random gay

#

i only play PU, the only true tier

hollow pier
#

can't say that when lando isn't on every team

#

wow pu is this whomst

#

or does he play uu

cunning lagoon
#

idk i havent played pokemon competitively since gen 5

#

weather meta

hollow pier
#

i mis gen5

#

s

#

miss

#

s

cunning lagoon
#

i dont tbh

#

i think the games were great though

hollow pier
#

so you prefer lando mag tapus

cunning lagoon
#

im not too familiar with the current meta

#

so i cant speak about that

hollow pier
#

it's just lando mag tapus

cunning lagoon
#

that means nothing to me

#

other than lando being landorus

hollow pier
#

good

cunning lagoon
#

what is a mag tapus

hollow pier
#

also ashgren

#

he's still ou somehow

compact sedge
#

why is modding pokemon

cunning lagoon
#

i do know what that is

#

why wouldnt it be

hollow pier
#

why is phero not ou

cunning lagoon
#

mods dont read this channel anyway

copper nacelle
#

is pokemon elder hu

cunning lagoon
#

yes

copper nacelle
#

name elder hu 2 strength sap

#

ez

cunning lagoon
copper nacelle
#

name it all healing does 50

compact sedge
#

man this fsm viewer looks slightly nicer than looking at text files but not nicer enough that I wanna spend even a minute porting it to not UWP.

green shuttle
#

Hi, I hav

#

oh

cunning lagoon
tranquil glen
#

Hi, I also hav

#

oh

hazy sentinel
#

hello sir/madam, i have a fantastic opportunity for you

hollow pier
#

would you like to talk about our lord and saviour elder hu

compact sedge
#

Would you like to ascend with gorb

hazy sentinel
compact sedge
#

wow that doesn't look too bad on mobile dang

hazy sentinel
#

that's desktop but ok

compact sedge
#

oh actually idk what it looks like on mobile

tranquil glen
#

anyone know where the fsm for hk chains is?

compact sedge
hollow pier
cunning lagoon
#

hey you should charge your phone

hollow pier
#

i should

compact sedge
#

It's sad o clock

hollow pier
#

actually almost 7:53

compact sedge
#

):53 pm

#

also eww wtf 30 minute offset timezones

hollow pier
#

hi newfoundland

compact sedge
#

that's a dumb name they found it a long time ago

rain cedar
#

Nepal is UTC+5:45

copper nacelle
#

wtf

rain cedar
#

That's worse imo

compact sedge
#

that's actually awful

hollow pier
#

they also have a garbage flag so it's ok

tranquil glen
#

sean do you know where hk chains fsm is

#

or fsms are

rain cedar
#

In the hk room

tranquil glen
#

what room is that

hollow pier
#

69

rain cedar
#

Room_Final_Boss_Core

#

Or something like that

fleet lion
#

is there a mod that makes all of the music despacito

tranquil glen
#

i'm trying to use new viewer so i dont have to like install the fsm getting thing

hollow pier
#

just mute the music and play despacito in the background that doesn't need a mod

fleet lion
#

i need atmospheric despacito

cunning lagoon
#

despacito

#

get it? because of the song xD

compact sedge
#

Wow

#

that discord name and pfp gives me cancer

fleet lion
#

x D

cunning lagoon
#

thanks i worked hard on it

compact sedge
#

wait is yours literally paint drying DL?

#

like on a wall

cunning lagoon
#

its a tshirt

hollow pier
#

that's a pretty rad tshirt

tranquil glen
#

who's bob

compact sedge
#

it's a shirt generated by machine learning is what it looks like

copper nacelle
#

@tranquil glen level409

rain cedar
#

Bob is me

tranquil glen
#

life saver

copper nacelle
rain cedar
compact sedge
#

hi bob

hazy sentinel
compact sedge
#

wow that's not even bad

#

I should add a million banners so it looks like very other site on mobile.

hazy sentinel
#

very site much other

buoyant obsidian
#

me make mobile site

hollow pier
#

Today is Thursday, August 30 at 7:40:39 PM

buoyant obsidian
#

quality timezone

hazy sentinel
#

did you monetize the stick fight weaponhack video

cunning lagoon
#

​

buoyant obsidian
#

Sadly not

#

I really should have

#

$$$

compact sedge
#

753 not monetizing something

#

yeah right

buoyant obsidian
#

Nothing I do is monetized buddy

#

except humble bundle

cunning lagoon
#

Today is Friday, August 31 at 1:41:39 AM

#

how come im ahead of you

#

am i a time traveller

compact sedge
#

and a patreon

#

or is that not a thing anymore

buoyant obsidian
#

getting that fat -$10 a month

#

that's a negative btw

hazy sentinel
compact sedge
#

woah man that's a lot of money

green shuttle
#

Then

compact sedge
#

leave some for the rest of us veru

hollow pier
#

wow you should make a "how youtube pays me" video you'd earn at least like $0.78 from that

odd jetty
#

marvelous

hazy sentinel
#

i have no idea where the 36 cents even came from

hollow pier
#

must be all the radiant difficulty you're doing

green shuttle
#

Nobody know how to replace the game sound and music by zote ?

compact sedge
#

from your hornet is void video ofc

hollow pier
#

let it be known benji paid veru like 15x more than his youtube did by buying nekopara

odd jetty
#

Good investment

hazy sentinel
#

youtube only pays when you reach $100 or something

hollow pier
#

ask them nicely at 99.99

hazy sentinel
tranquil glen
#

how do you send an fsm event again?

cunning lagoon
hollow pier
#

you ever kill himself yourself

copper nacelle
#

i think it's PlayMakerFSM.BroadCastEvent

compact sedge
#

I want to kill himself

cunning lagoon
#

are you me

#

ah i read that as myself

#

nvm

hazy sentinel
#

sometimes it really do be like that

hollow pier
#

are you him

hazy sentinel
compact sedge
#

what does that mean

hollow pier
#

is this johnsvideos or a comment on your channel

hazy sentinel
#

it's on radiance meme build

#

except it got caught by the spam filter

#

and it's just going to stay there forever

compact sedge
#

idk seems like a legit comment to me

hazy sentinel
odd jetty
#

bigThink

fair rampart
#

what if there was a charm that made you into the radiance and whenever you used abyss shriek it stunned you for 10 seconds because you collapse and have flashbacks

odd jetty
#

Someone would like those

hollow pier
#

or it made shriek only hit 3 times all the time because it likes to exclusively do that on rad

cunning lagoon
#

what if there was a charm that made you into flukemarm and if you use dd u die

hazy sentinel
#

what if there was a charm that made you into a slug when you held down the focus button and you could move around and stuff

cunning lagoon
#

it sounds kinda dumb

#

why would they make that

hollow pier
#

ok but why does shriek just hit 3 times on rad sometimes

rain cedar
#

It hits anywhere from 1-4 on anything

#

Idk

#

4 hits seems really rare

compact sedge
#

it's supposed to do 3 or 4 but if you get hit it cancels it and also if it's 3 or 4 is best I can tell kinda rng

cunning lagoon
#

damn

copper nacelle
cunning lagoon
#

he's done it

hollow pier
#

wow

copper nacelle
#

i got 5 abyss shrieks

#

he didn't even get to phase 2

compact sedge
#

gj i guess

hollow pier
#

who uses shriek

#

ss doubles are better change my mind

copper nacelle
#

2 at the start and 3 at the end of the spin

#

it was great

hollow pier
#

now do it charmless

copper nacelle
#

no

cunning lagoon
#

delet

#

why is he on your recommended videos

copper nacelle
#

idk

#

should i check it

odd jetty
#

yes

copper nacelle
#

it's just 278 eternal ordeal

rain cedar
#

Does that get harder forever?

#

I stopped when I had enough

copper nacelle
#

i think it stays the same at like 100 or something

rain cedar
#

Cool

hazy sentinel
#

actually at 277 it becomes impossible

copper nacelle
#

woke

hazy sentinel
#

horheristo is literally god

hollow pier
#

he actually got 339 but didn't record audio

copper nacelle
#

shrieks

cunning lagoon
#

not even undercharmed

hollow pier
#

how's your fight that long if you just shriek

copper nacelle
#

idk

#

i did 5 shrieks and skipped p2

cunning lagoon
#

360p squad

hollow pier
#

do i see an ss single hit

copper nacelle
#

yes

hollow pier
#

banned tbh

odd jetty
#

smh

cunning lagoon
#

homosexual cdash usage

copper nacelle
#

u

hollow pier
#

didn't even do the fun part

copper nacelle
#

"fun"

fair rampart
#

what's the difference between AddMPCharge and ADDMPChargeSpa?

hollow pier
#

running around with a dash slash to get soul

cunning lagoon
#

wow you just skip the whole thing huh

copper nacelle
#

yes

cunning lagoon
#

thats sick