#hk-general

1 messages · Page 389 of 1

wheat field
#

omg @jovial hull

#

could you help?

#

if so,please send a footage

blissful rune
#

Who create this part like damnnn!!!

#

I tried path of pain on mobile, my fingers hurts

slate spire
wheat field
junior ocean
#

:observing:

jovial hull
cobalt rock
#

gimme a situation and i gotta make a melody in FL studio that fits that situation

covert current
spare pasture
#

☠️

oblique estuary
#

didn't need to do it to 'em

brave blaze
cobalt rock
junior ocean
#

why me

#

u can do that without the charm too

wheat field
wheat field
junior ocean
junior ocean
wheat field
junior ocean
#

bcuz kark used it and its funny

wheat field
#

:rat_taking_notes:

junior ocean
bleak gazelle
#

Gg

junior ocean
#

thx yisrael

plucky eagle
wheat field
#

gg🥕 grubomg

heady dew
cobalt rock
heady dew
cobalt rock
thick cairn
#

dont mind me just stealing this rq

chilly timber
#

do you guys play brawl stars

thick cairn
#

im good

jade pawn
#

alright done

#

Took sometime but here it is :)

wheat field
#

[[Geo Rock]]

hidden anvilBOT
wheat field
#

oohh man

#

[[Geo]]

hidden anvilBOT
wheat field
#

[[Geo Deposit]]

hidden anvilBOT
wheat field
#

Bald.

jovial hull
thick cairn
jovial hull
#

@brave blaze heres an actual example of KT

onyx grail
#

good night guys

#

can you tell me the bests charms to beat pantheon 5

crude gull
#

uhm i got banned from the rainworld server because my brother typed i love gay dudes into the chat so...

#

i can only ask this here. ahem.

#

how many echoes do i need to visit in order to reach max karma? (starting at survivor karma)

crude gull
#

alr ty

graceful grove
#

cant you just visit five pebbles

clear acorn
crude gull
mild finch
#

Im getting silksong early and yall ain’t

red osprey
#

Mods throw him into the abyss

nocturne sequoia
#

hi

jovial hull
#

do u guys want funny minecraft code

steel wyvern
#

no

midnight oasis
#

is it true notch's coding sucks

jovial hull
#

i mean

#

not really

#

i can pull some of it up if you want

graceful grove
steel wyvern
#

notch doesnt work on minecraft anymore and hasnt for a long time

#

apparently one reason why minecraft updates take so long is because they need to make sure they write clean code

graceful grove
#

someones cart at walmart rn

midnight oasis
#

Thats mine

#

Don't. Touch. It.

graceful grove
midnight oasis
#

I'll unleash my monkeys onto you

wheat field
#

Not the poor baloons!🙀

jovial hull
#
package com.nix.waves.api.tabmanager

import com.nix.waves.Waves
import org.bukkit.Bukkit
import org.bukkit.NamespacedKey
import org.bukkit.entity.Player
import org.bukkit.persistence.PersistentDataContainer
import org.bukkit.persistence.PersistentDataType

@Suppress("DEPRECATION")
open class Setters {
    companion object {
        private val pl = Waves.INSTANCE
        val NAME_KEY: NamespacedKey = NamespacedKey(pl, "name")

        fun setFooter(footer: String) {
            for (p: Player in Bukkit.getOnlinePlayers()) {
                val footertext = Placeholders.translatePlaceholders(p, footer)
                p.playerListFooter = footertext
                Placeholders.refreshTAB(footertext, null)
            }
        }

        fun setHeader(header: String) {
            for (p: Player in Bukkit.getOnlinePlayers()) {
                val headertext = Placeholders.translatePlaceholders(p, header)
                p.playerListHeader = headertext
                Placeholders.refreshTAB(null, headertext)

            }
        }

        fun setName(player: Player, name: String) {
            val nametext = Placeholders.translatePlaceholders(player, name)
            player.setPlayerListName(nametext)
            val data: PersistentDataContainer = player.persistentDataContainer
            data.set(NAME_KEY, PersistentDataType.STRING, name)
        }
    }
}```
#
package com.nix.waves.api.tabmanager;
import com.nix.waves.Waves;
import com.nix.waves.api.util.Util;
import net.luckperms.api.LuckPerms;
import net.luckperms.api.cacheddata.CachedMetaData;
import net.luckperms.api.model.user.User;
import org.bukkit.Bukkit;
import org.bukkit.entity.Player;
import org.bukkit.plugin.RegisteredServiceProvider;

import javax.annotation.Nullable;

import static com.nix.waves.Waves.*;

@SuppressWarnings("deprecation")
public class Placeholders {

    public static LuckPerms LP;

    public static String translatePlaceholders(Player p, String s){
        if (PM.isPluginEnabled("luckperms")){
            RegisteredServiceProvider<LuckPerms> provider = Bukkit.getServicesManager().getRegistration(LuckPerms.class);
            if (provider != null) {
                LP = provider.getProvider();
            }
            User user = LP.getPlayerAdapter(Player.class).getUser(p);
            CachedMetaData meta = user.getCachedData().getMetaData();
            if (meta.getPrefix() != null){
                s = s.replace("%player_prefix%", meta.getPrefix());
            } else {
                Util.sendColMsg(p, "&eSomeone is trying to use your prefix in the Tab, but you don't have one!");
            }
            if (meta.getSuffix() != null){
                s = s.replace("%player_suffix%", meta.getSuffix());
            } else {
                Util.sendColMsg(p, "&eSomeone is trying to use your suffix in the Tab, but you don't have one!");
            }
            if (meta.getPrimaryGroup() != null){
                s = s.replace("%player_group%", meta.getPrimaryGroup());
            } else {
                Util.sendColMsg(p, "&eSomeone is trying to use your group in the Tab, but you don't have one!");
            }
        } else {
            if (s.contains("%player_group%") || s.contains("%player_prefix%") || s.contains("%player_suffix%")){
                Util.log("Missing soft dependency luckperms, luckperms placeholders (prefix, suffix, etc) will not work!");
            }
        }
        s = s.replace("%player_name%", p.getName());
        s = s.replace("%player_level%", String.valueOf(p.getLevel() + Float.parseFloat(String.format("%.2f", p.getExp()))));
        s = s.replace("%server_name%", server.getName());
        s = s.replace("%server_tps%", String.valueOf((int) server.getTPS()[0]));
        s = s.replace("%player_ping%", String.valueOf(p.getPing()));
        s = s.replace("%nl%", "\n");
        s = s.replace("%_", " ");
        return Util.getColString(s);
    }
    public static void refreshTAB(@Nullable String f, @Nullable String h){
        if (f != null){
            Waves.getPlugin(Waves.class).getConfig().set("footer", f);
        }
        if (h != null){
            Waves.getPlugin(Waves.class).getConfig().set("header", h);
        }
        INSTANCE.reloadConfig();
        INSTANCE.setVarsFromConfig();
        for (Player p : server.getOnlinePlayers()){
            p.setPlayerListFooter(translatePlaceholders(p, Waves.getPlugin(Waves.class).getConfig().getString("footer")));
            p.setPlayerListHeader(translatePlaceholders(p, Waves.getPlugin(Waves.class).getConfig().getString("header")));
        }
    }
}```
#

sorry about the walls

#

the first one is kotlin and the second is java

graceful grove
jade pawn
chilly timber
graceful grove
thick cairn
#

just gonna steal those aswell

thick cairn
calm valley
#

I hate you zote. You are the one person not deserving to be saved from the radiance

midnight oasis
#

elderbugs right there

calm valley
midnight oasis
#

I don't

#

At least Zote is funny

bronze mica
#

guys can anyone give me the link to hollow knights speedrunning server

midnight oasis
calm valley
#

And my credit card information.

midnight oasis
#

try standing up for yourself why did you let some random bozo take the credit for your hard work

bronze mica
midnight oasis
calm valley
#

Ah right the forbidden option: blatant murder

steel wyvern
#

its only forbidden because you let it be

calm valley
#

They- aren’t wrong?

#

Hold on: murder is only forbidden because I FORBID IT?!!?!!????

#

Now then I’m off! goes and weeps in a corner

spare topaz
#

i wish you a merry christmas 😡

quick atlas
#

what if we have to fight little ghost in silksong?
(the knight)

steel wyvern
#

cant, silksong takes place in pharloom

wicked frigate
#

I'm fucking screwed lol

cobalt rock
#

how many different emojis can you react with

wicked frigate
#

Idk

midnight oasis
steel wyvern
#

i hope cornifer and iselda are in silksong

wicked frigate
#

Maybe

#

Prob not tho

cobalt rock
#

nitro users, spam this with reactions from other servers

steel wyvern
#

same with bretta

midnight oasis
#

I left Bretta to die

wicked frigate
#

Maybe

wicked frigate
steel wyvern
midnight oasis
#

Also seeing a bunch of foreigners you met once in a separate kingdom would be super weird and immersion breaking

wicked frigate
#

Ello

bronze mural
#

Darn I deleted my message on accident

#

Sorry about that 😔

#

Also hi

wicked frigate
#

I have 112% as well

bronze mural
#

Epic

steel wyvern
wicked frigate
#

H O R N E T

midnight oasis
#

Hornet and the Weavers are the only ones that really make a whole lot of sense

wicked frigate
#

she's returning

calm valley
midnight oasis
wicked frigate
#

I guess Lil ghost also was a returning character cuz hungry knight

steel wyvern
#

right beesive

calm valley
midnight oasis
#

Cursing isn't allowed

calm valley
midnight oasis
#

Opening a modmail about this

steel wyvern
calm valley
#

Well. Wish me luck in the abyss.

wicked frigate
#

Don't join ur children

calm valley
#

The mods do not care

wicked frigate
#

They will

#

The vessels will

steel wyvern
calm valley
#

Banish me to the abyss.

wicked frigate
#

THEY DONT HAVE A WILL

bronze mural
#

Chat have you seen the recent daily Silksong news video.

steel wyvern
bronze mural
#

It’s an epic video for day 1238 😼

midnight oasis
wicked frigate
calm valley
#

1238 of no silksong: the copium is real

wicked frigate
#

Ah

#

Makes sense

steel wyvern
#

i wouldn't be surprised if they're not included, but it would be nice

midnight oasis
bronze mural
wicked frigate
#

Lol

jade pawn
#

something AI made

steel wyvern
#

gross

jade pawn
#

agree

wicked frigate
#

Ello

jade pawn
#

my chess elo ? it's 320

wicked frigate
#

No

#

As in hello but no H

jade pawn
#

ik lol

quick atlas
#

(jk)

midnight oasis
#

im not going to buy the game because TC treated us awfully

quick atlas
steel wyvern
midnight oasis
#

no its the bad communication and meaningless hype

#

Along with constant baiting. the community is dying

quick atlas
#

mods crush this persons skull

steel wyvern
#

the community should be dead theres nothing to talk about hornettle

quick atlas
steel wyvern
#

no

quick atlas
#

theres something to talk about

midnight oasis
#

many things are better than HK

steel wyvern
#

sure thing star

midnight oasis
#

Oneshot is pretty short though

quick atlas
quick atlas
steel wyvern
#

oneshot is good when i actually figure out what youre supposed to do

quick atlas
midnight oasis
quick atlas
steel wyvern
quick atlas
#

maybe

junior ocean
steel wyvern
#

i got to the point where i turned on a generator and i got a code in my documents

quick atlas
#

i think you need a bottle now

steel wyvern
#

i got a bottle

quick atlas
#

unsure

quick atlas
steel wyvern
#

the safe doesnt have the numbers the code gave me

quick atlas
#

unsure

steel wyvern
quick atlas
#

bye chatnikocutie

junior ocean
#

🐱

steel wyvern
#

anikahi

junior ocean
#

neat🫵

buoyant drift
#

Guys why is there a ware on DSN??? What did i miss

coarse furnace
#

yall how do you join the gay community

junior ocean
#

what

hushed trail
primal robin
paper vapor
#

idk what to tell u

midnight jetty
coarse furnace
coarse furnace
paper vapor
#

ur a guest a traveler

coarse furnace
#

if ive kisses guys am i gay

#

just prefacing it was a joke

#

does that still count

steel wyvern
#

i mean did you like it

primal robin
#

did you have socks on?

crystal smelt
#

you play hk?
name all 57 precepts

plucky eagle
#

ok

#

precepts 1-57 shermasmirk

coarse furnace
coarse furnace
#

;)

cyan sinew
#

oop wrong channel

mb gang

regal nacelle
#

I would share my ice cream with hive knight hivescream

delicate badge
#

can bees eat ice cream?

regal nacelle
#

I would share my ice cream with hive knight grublove

delicate badge
#

ah

steel wyvern
regal nacelle
#

Yippie

smoky hearth
#

Hi guy

#

s

faint pike
#

Sugar overdose

brave blaze
#

Bananers

spiral heron
#

It took

#

So long. I think about 120 hours between my first and second play throughs

#

Tbf my first playthrough was blind, and the second was steel soul, but it still took forever

zenith minnow
#

Heeey, someone knows how to fix a unity crash, my game has been crashing all day midgame so, idk what to do, I don't have any mod or anything

bleak gazelle
zenith minnow
bleak gazelle
#

It checks the files for you

zenith minnow
#

I'll try it, thankss

slate spire
#

Hellp offtopicers!!

faint pike
#

Welcome back!

brave blaze
#

Spam

minor wraith
#

Hello guys

steel wyvern
#

spam

minor wraith
#

?

storm wolf
#

you know, just yesterday an AI told me "making high quality homestuck plushies is a pretty good way to spend an immortal lifespan"
If that doesn't make you question humanity as a whole I don't know what will.

steel wyvern
#

it doesnt make me question humanity as a whole

spiral heron
brave blaze
spiral heron
#

Ah

#

Gotcha

wild flax
#

<@&283547423706447872>

long cosmos
#

please dont post stuff like that, thanks

brave blaze
brave blaze
long cosmos
#

not you

#

another user posted a questionable gif

dim ravine
blissful rune
#

Any advice on the last part in path of pain

dim ravine
#

Patience

blissful rune
#

I was going to beat it

#

But my fingers

#

My f***ing fingers

#

I messed up at the big drop down

#

At the end

granite merlin
#

How do I break the news to my friend that Sheo and the nailsmith are canon

steel wyvern
#

tell them to get all achievements

faint pike
#

yikes

#

mental and passion!

spiral heron
granite merlin
spiral heron
#

Let them get the achievement and read the name lmao

granite merlin
#

HE HAS😔

valid pilot
#

finally

granite merlin
valid pilot
#

Yes

slate spire
#

Good Job man!!

wild flax
#

More so just, hey, this guy was alone too in life but now we're two craftsmen working together! sheopride

#

Up to interpretation, I suppose, as to how literally the achievement title was meant to be taken 🥴

bronze mountain
#

is the discord startup thing just a hollow knight reference ?

glass bolt
#

Cutest couple in the game

wheat field
#

[[Queen's Station]]

hidden anvilBOT
wheat field
#

[[Stag Station]]

hidden anvilBOT
thorny swift
#

hello

upbeat scroll
#

rosko kokosko

slate spire
#

Tapu Koko reference?

unborn topaz
#

Qindeel

jovial hull
balmy sage
#

i've been trying to beat p5

granite merlin
balmy sage
#

for over a month

#

AAAEEEAAAAAAAAAAEGGGGGGGGGGGGGGGGGGGHJ

clear canyon
#

Time to

earnest canyon
#

If you move your gay (you can move when Silksong releases)

jovial hull
#

im bi get fucked

earnest canyon
#

🤣🤣

granite merlin
earnest canyon
#

Don’t ask me💀💀

wild flax
earnest canyon
burnt heath
stiff citrus
#

eeeeeeeeeeee hello hollow knight community

#

i have a random question

#

if fury of thee fallen had a synergu with soul eater, what do you think it would be?

somber summit
#

literally nothing happens at 1k zotes

#

i did all that for nothing

stiff citrus
#

sadge

frank ice
#

oof

slate stone
#

.

calm valley
somber summit
#

i wanted to see if anything special would happen

calm valley
#

WHY ITS ZOTE

#

Zote is not gonna do anything for you.

fleet flax
somber summit
#

yea

fleet flax
#

1008 zotes is my worst nightmare

calm valley
#

My worst nightmare is buff zote

somber summit
#

lol

vivid aspen
#

can someone tell me why neither luma fly nor scarab work

fleet flax
#

?

vivid aspen
# fleet flax ?

im reinstalling and installing new mods and still wont work

calm valley
#

Option 3: factory reset

fleet flax
#

No, don't do that

vivid aspen
#

i wont

calm valley
#

That is if nothing else works

vivid aspen
#

nah

#

id win

stiff citrus
#

eeeh install and unistall s cara

calm valley
#

What

fleet flax
#

Go to modding-discussion

calm valley
#

I eat rocks

fleet flax
fleet flax
calm valley
#

Yes

fleet flax
#

Nice

calm valley
#

Best villain in super.

fleet flax
#

No , jiren is

calm valley
#

Nuh uh

vivid aspen
#

uy

#

eeeeeeeeeeeeek

fleet flax
#

There is fresza

calm valley
#

Zamasu is out here constructing a plan to make the universe “better” in his own vision, he was misguided and thought all mortals were evil, he was trying to do the right thing, but he did it in the wrong way

vivid aspen
#

i am not being helped

primal robin
calm valley
primal robin
#

why not?

calm valley
#

Fair.

#

Now then. Zamasu is the “carefully thought out argument backed with loads of irrefutable evidence.” Jiren, is the guy who punch thing hard.

fleet flax
#

Yes

calm valley
#

Why zamasu is simply superior

fleet flax
#

But, jiren made goku go ui for the first time

calm valley
#

Yes, but the only reason zamasu is considered worse than Jiren, is because of shitty writing

#

If goku unlocked ssgss from zamasu telling goku that he killed chichi and goten, then the arc would be even better than it already is.

fleet flax
#

Sorry, but you're missing the j in ssjgssj

calm valley
#

However, vegetas overgrown sperm had one hell of an asspull power up

fleet flax
#

Got a point their, gg?

calm valley
#

*there. Your argument is now invalid

fleet flax
#

I was giving up, *ssjgssj

calm valley
#

And the official compounded whateverthefuck for super saiyan god super saiyan is ssgss

fleet flax
#

Too bad

calm valley
#

Another spelling error

#

Would be “too bad”

#

Argument is invalid once more

fleet flax
#

Nuh uh

calm valley
#

The fuck you mean “nuh uh?”

gloomy mantle
#

im gonna make a youtbe channel is halley a good username? if not can i get some username ideas

fleet flax
#

no halbo ingles

calm valley
fleet flax
fleet flax
calm valley
#

Your user name should be like idk a gamertag or what you go by on discord for a gaming child

fleet flax
#

You won

calm valley
fleet flax
calm valley
#

FUCK

gloomy mantle
calm valley
gloomy mantle
fleet flax
#

Bean

#

Ooz

calm valley
#

How does one pronounce it properly? Is it “bee-ooze” or something else?

calm valley
#

I see

#

I did it

gloomy mantle
#

yeah

calm valley
#

I am a master of pronunciation.

fleet flax
#

Nuh uh, you said yippie

calm valley
#

Also, any of you play dragon ball legends?

fleet flax
calm valley
#

It has gambling

fleet flax
#

It's on phone right?

calm valley
#

Yes

#

Wait

#

Don’t download from AppStore yet

fleet flax
#

Ok

calm valley
#

Let's fight together! Download DRAGON BALL LEGENDS!
#DBLegends #Dragonball

Let's fight together! Download DRAGON BALL LEGENDS!
#DBLegends #Dragonball

#

This gives me stuff in game

#

@fleet flax

fleet flax
#

Yes

calm valley
#

Looks

#

Use QR code to download game so I get free shit

keen vigil
#

I updated the list

calm swift
keen vigil
#

Because that's my PFP

#

To indicate that it's my top 10

calm swift
keen vigil
#

Nuh uh

calm swift
cosmic cave
wheat field
#

[[Grubfather]]

hidden anvilBOT
oblique estuary
keen vigil
#

I don't think I need to explain why Ori vs The Knight is my favorite

#

I'm also working on a bottom 10 btw

#

I have some very strong opinions about most of the matchups there...

#

ESPECIALLY the bottom 2

oblique estuary
#

i remember when i was vs debating one of my least faves was the fnaf verse since it mostly relied on the books and fnaf world, two very questionable resources

keen vigil
#

Yeah, I don't exactly deal in FNaF stuff, mostly because a lot of their matchups just aren't ones I can say I like

#

The two exceptions to this rule being Springtrap vs Bendy and Freddy Fazbear vs Frankenstein's Monster

brave blaze
#

what

keen vigil
brave blaze
#

skibidi toilet vs springtrap

oblique estuary
#

spring chuck is the only one i think i can get on board with since they play well off each other and lack of stuff for both makes it work

keen vigil
#

I do think that's a pretty good matchup

brave blaze
#

what if silksong was called freakysong

keen vigil
#

I absolutely despise Junko vs Springtrap though

oblique estuary
#

I don't get JunkoTrap

brave blaze
keen vigil
#

The only thing I like about it is Trapped In Despair

oblique estuary
#

that is a good tack but tempest blitz is still one of my faves

keen vigil
#

TRUE

#

My favorite's probably the vocal version of God's Fang

brave blaze
#

idk what you guys are saying

#

im gonna watch peakbitty toilet

oblique estuary
#

Shoutouts to Explosion in E minor

keen vigil
#

That track actually goes so hard

#

Shoutouts to Awakened Sacrifice

oblique estuary
#

i don't know how, but i suddenly really like Reaper vs Tunic Fox [ they technically don't have a canonical name]

keen vigil
#

I've taken a rather sudden liking to Scorpion vs Wolf

#

And also Scorpion vs Kratos

oblique estuary
#

Dude poor Kratos vs Asura, they got 2nd twice

keen vigil
#

Yeah...

#

Fortunately they are showing up in the next DDM fight

#

(Idk how I got my information that incorrect there, jeez)

#

(DDM is a vs thing I made up btw)

oblique estuary
#

dang i kinda wanted to see another vs thing, since... y'know

keen vigil
#

As in a poll?

#

Or just general fights?

wheat field
#

?tag nopolls

river domeBOT
#

dynoError No tag nopolls found.

oblique estuary
#

General fight

keen vigil
#

Ah ok

oblique estuary
#

fight script more like it

keen vigil
#

I have quite a few fight scripts

#

Lemme grab the season list

oblique estuary
#

i imagine KnOri's on it lol

keen vigil
oblique estuary
#

awesome list lol

keen vigil
#

I'm on Godzilla vs Gamera rn

keen vigil
oblique estuary
#

how did KnOri go?

keen vigil
#

Do you mean, like, results?

oblique estuary
#

i suppose so, you can spoiler it if you want

keen vigil
#

Ah ok

#

||The Knight won||

oblique estuary
#

||how?||

keen vigil
#

Lemme grab the reasoning I used

oblique estuary
#

||i do think Ori would win that based on my own reasoning, but i can wait till i see yours||

keen vigil
#

I've noticed I tend to focus more on abilities than stats

half halo
#

TK literally does have a mind.

keen vigil
#

Oh

#

I mean, it's not like it changes much, because I am also taking a point off TK for the whole lore feats thing

half halo
#

I mean, in lore we know TK has a mind.
But yeah, I guess that doesn't matter then.

junior ocean
#

just use VH?!

keen vigil
#

VH?

half halo
#

Also uhhhhh, are we counting Shade Lord as a form of TK?

half halo
keen vigil
#

That's what the kill was

oblique estuary
#

||I can see why the shade could be enough to kill Ori, if we're going with Shade Lord, and Ori admittedly only has their ancestral tree form to beat shade lord. But how does night even hit Ori with the dream nail if they're way faster and could purify, if you buy AT Ori having purification, Knight and shade lord within seconds. Then again Ori does have no real defenses for protecting their soul||

half halo
half halo
oblique estuary
#

||Wasn't Shade Lord defeated by a small flower?||

junior ocean
#

no

half halo
#

Void Heart kinda turns TK into a higher being.

keen vigil
half halo
#

Also, maybe I should use spoiler tags too.

junior ocean
#

spoiler tags are evil and bald

keen vigil
#

Is posting a message normally good and hairy, then?

half halo
oblique estuary
junior ocean
#

🧹

wheat field
#

:observing:

keen vigil
#

But eh, VS is subjective

half halo
keen vigil
#

As for a battle that had a much more clear conclusion, Scourge vs Reverse Flash was an absolutely massive stomp

half halo
#

Who is Scourge again?

keen vigil
half halo
#

Oh.

oblique estuary
half halo
keen vigil
keen vigil
junior ocean
half halo
oblique estuary
#

Dude, Spiritless Vessel is playing right now as we speak, i have like 500+ songs in my spotify that's really funny

keen vigil
#

Spiritless Vessel is so good

#

And it's not even my favorite Therewolf track

half halo
keen vigil
#

My favorite is most likely A Link Between Hearts

oblique estuary
#

I should write a fight script for Reaper vs Tunic fox, after i do some art work

#

though i probably won't have any stats since i can't calc a thing

keen vigil
#

Me neither

thick cairn
brave blaze
crisp zephyr
#

"acting"
Hmmmm

midnight oasis
#

Its pride month ofc gay people are going to be a bit more vocal

formal glacier
#

I WOULD LIKE TO CONFIRM A FANTA LIGHT BREV

midnight oasis
#

Dont be weird

crisp zephyr
#

Crazy idea but don't be weird 👍

#

Shit like that. People expressing themselves shouldnt be something to despair over dismiss as just acting gay??? Makes you sound like an edgy 14yo

midnight oasis
#

Luckily all the colon threers were sealed away in #hk-discussion long ago

midnight oasis
onyx eagle
#

Why is everyone acting so gay lately guardcop

#

Bro

covert current
#

the awareness feelspkman

brave blaze
#

Hey, I'm Levito and I've made a video tutorial showing how to play Hollow Knight on splitscreen same PC

#

It is on Spanish but it has subtitles on English I truly hope it helps someone!

#

:v

acoustic summit
#

bro

#

share this to the world

#

youll get a nobel

#

we have to spread the news

brave blaze
junior ocean
#

irrelevant

midnight oasis
#

No one really says that unless they mean it negatively

onyx eagle
bronze mountain
#

what is going on

acoustic summit
bronze mountain
#

we're witnessing the live effects of having to wait for skong

acoustic summit
#

true

bronze mountain
#

we're all insane and the isn't even out yet 😭

strong junco
#

Elden Ring dlc coming out 🗣️

acoustic summit
#

silksong

acoustic summit
#

i was always more of a 2d guy

strong junco
scenic salmon
acoustic summit
bronze mountain
scenic salmon
bronze mountain
#

what is silksong ? never heard of it. what's life?

acoustic summit
acoustic summit
reef atlas
bronze mountain
acoustic summit
scenic salmon
acoustic summit
bronze mountain
reef atlas
acoustic summit
#

I've already done pantheon 5 on steelsoul one hp with 1 nail damage

scenic salmon
#

is it relevant to beat every boss on radiant in hall of gods for hunter journal?

reef atlas
#

or foreground

scenic salmon
reef atlas
#

not on radiant tho

bronze mountain
acoustic summit
scenic salmon
reef atlas
#

oh helll no

acoustic summit
#

💀

scenic salmon
#

markoth hell no

reef atlas
#

how long did it take you guys to 112 the game
for me its 50 hours

acoustic summit
#

blind

scenic salmon
acoustic summit
#

colo 3 and p4 left

crisp zephyr
#

I was like 35-40 for 106 which was max when I played

scenic salmon
acoustic summit
reef atlas
#

theres moooooore content

acoustic summit
#

is there and advancement for radiant hall of gods?

acoustic summit
scenic salmon
acoustic summit
reef atlas
#

doesn't p5 have an achievement attributed to it?

acoustic summit
#

p5 is gonna be a whole other relationship killer

acoustic summit
#

not steam completion

reef atlas
#

ohhhh i thought u have to get p5 to get 112 bruh

scenic salmon
#

tbh when i first played hollow knight it took me 3 days to get through cross road because it was so boring in my eyes but then from greenpath on holy shit

acoustic summit
#

i explored like the whole crossroads before finding him lol

reef atlas
#

thats the first struggle

acoustic summit
#

peak content

scenic salmon
#

idk the name in english

acoustic summit
scenic salmon
#

where uumuu is

acoustic summit
#

quirrel

scenic salmon
#

wait i have to take a look

reef atlas
acoustic summit
#

wait u mean fog canyon

reef atlas
slate spire
#

That should be it the dark wall

acoustic summit
scenic salmon
reef atlas
acoustic summit
slate spire
#

I saw that dark wall in a lot of places so I thought thats something I need to return to back later

scenic salmon
#

i tried to get trough it 10 minutes and tried to destroy it with the jellyfish

acoustic summit
#

thats one thing i wish was signaled a bit more clearly

scenic salmon
#

somebody of you fighted the corrupted kin boss mod?💀

reef atlas
acoustic summit
scenic salmon
reef atlas
#

i haven't played this game in so long i forgot a lot of it

reef atlas
#

like the names of the things

acoustic summit
#

i just wish ill be able to 100% steam before silksong

scenic salmon
#

i think i will try to play the game with a mod that will permanently give me all pantheon bindings

acoustic summit
#

and get deep into da lore

reef atlas
# scenic salmon do it

i rage quit after finishing the path of pain and swore not open the game until silksong gets released

scenic salmon
acoustic summit
#

did you try multiplayer?

scenic salmon
scenic salmon
acoustic summit
#

i mean hornt difficulty

acoustic summit
reef atlas
scenic salmon
acoustic summit
scenic salmon
acoustic summit
#

but he was just overcharmed and didnt notice LOL

acoustic summit
reef atlas
junior ocean
#

or are they

scenic salmon
#

I have hollow knight open in background and i hear zote yappin all the way in dirtmouth

acoustic summit
reef atlas
scenic salmon
reef atlas
#

nostalgia man its been like 5 years

acoustic summit
#

of years

reef atlas
#

ik its not a lot but for a game it is

acoustic summit
#

by many i mean like 2

reef atlas
scenic salmon
acoustic summit
#

and i love it

#

got a bit tired tho

#

so now to my 2nd hobby

reef atlas
#

its a masterpiece its up there in my favourite games with dark souls

scenic salmon
acoustic summit
reef atlas
acoustic summit
reef atlas
#

yes it is i think

scenic salmon
#

im cooked fr

acoustic summit
reef atlas
scenic salmon
acoustic summit
acoustic summit
scenic salmon
reef atlas
scenic salmon
reef atlas
acoustic summit
reef atlas
#

btw if yall didn't know the game has gotten a pegi rating which means its almost finished

#

or at least i hope

reef atlas
#

like 2 weeks ago

#

on xbox page

acoustic summit
#

alright

acoustic summit
scenic salmon
#

you must have dreamed that

reef atlas
acoustic summit
#

atleast i leveled up my state machine architecture

scenic salmon
#

i hope the new movement mechanics in silksong dont suck

acoustic summit
scenic salmon
#

fr bro

#

i love hollow knight movement

acoustic summit
#

and silksong is gonna be way more acrobatic

scenic salmon
#

yeah im kinda worried about that

reef atlas
#

hornet out there doing back flips

acoustic summit
#

and im excited

scenic salmon
#

but on 21st june i wont see any sun light cause of elden ring dlc

reef atlas
#

me too man

scenic salmon
acoustic summit
#

you can do that?

scenic salmon
acoustic summit
#

bruh i dont know what games to play

scenic salmon
acoustic summit
#

im kinda tired of p4

reef atlas
acoustic summit
scenic salmon
acoustic summit
reef atlas
scenic salmon
#

bro talking like that one guy in my class HAHAHAHA

tight kayak
#

Ryoiki tenkai

scenic salmon
acoustic summit
#

guys girl spotted

reef atlas
acoustic summit
#

fr

scenic salmon
tight kayak
#

Yeah I know, but I'm bored

burnt badger
#

offtopic, but, its confirmed that ss will only appear from team cherry right? not from a gameshow? i heard something about that. only wondering bc the gameshow is about to show up in like 30 mins

tight kayak
#

Sor for that

scenic salmon
#

bro what

reef atlas
#

better late than never

scenic salmon
#

can you create voice calls in this server or are there only 3?

scenic salmon
burnt badger
#

im hearing both ways. some say team cherry will announce personally. and then others are saying, it's been rated "E" for everyone so when that happens, it'll release soon, and it'll be coming out soon. so yeah dk. guess we j wait.

reef atlas
scenic salmon
#

is it possible to create a 4th

acoustic summit
#

its a server not conversation

reef atlas
scenic salmon
#

i wanted to ask if someone wants to spectate me at corrupted kin boss fight but now nuh uh

reef atlas
#

oh the modded lost kin?

acoustic summit
reef atlas
#

or the 2

scenic salmon
scenic salmon
reef atlas
#

general 3

acoustic summit
scenic salmon
#

but there are too many in it

acoustic summit
#

good luck trying to communicate there tho

scenic salmon
#

HAHAHAHAHAHA

scenic salmon
signal cobalt
#

hello guys anyone got a spare or a miencraft account they dont use anymore? im really desperate 🙏

signal cobalt
scenic salmon
#

that text with the hamster pb is trippin

reef atlas
acoustic summit
signal cobalt
#

it also has spyware so

acoustic summit
#

just kinda unethical

signal cobalt
#

and the servers are mostly russian and i have bad ping so

reef atlas
signal cobalt
#

i wanna play on hypickle

reef atlas
#

it lists it as a virus

acoustic summit
#

i'm not really into minecraft anymore after hk

reef atlas
small monolith
#

Hiii y'all 😄

acoustic summit
signal cobalt
scenic salmon
acoustic summit
reef atlas
acoustic summit
#

after invading pol-

small monolith
#

Why hollow knight pfp is now rainbow ?

acoustic summit
scenic salmon
#

nah bro we aint rich we got much money but prices are so high

keen vigil
reef atlas
acoustic summit
reef atlas
#

nope

small monolith
#

By pride you mean gay ,lesbian, bisexual things ?

reef atlas
#

not even European

acoustic summit
#

cuz its about this in poland

scenic salmon
small monolith
#

Oh ok

acoustic summit
scenic salmon
#

serbian

acoustic summit
#

ah

scenic salmon
#

but life in germany

acoustic summit
#

ok

scenic salmon
#

our curse words are the same hahahahahaha

reef atlas
#

yall can go wherever you want in Europe right

#

without a visa

acoustic summit
scenic salmon
#

i have a german passport so yes hahahaha

acoustic summit
#

pretty much

#

there are some countries that arent in ue

ocean citrus
#

so

acoustic summit
ocean citrus
#

gamefast now

keen vigil
chilly timber
#

not rlly

reef atlas
chilly timber
#

u gotta meet the straights halfway bro

scenic salmon
#

how do you all have those percentages in your name

acoustic summit
chilly timber
#

is the command

scenic salmon
#

like this

chilly timber
#

yuh

acoustic summit
#

nice

#

percent is the only thing that matters

tropic plaza
#

Hi

reef atlas
#

hi

scenic salmon
reef atlas
#

yoooo deadcells fan

acoustic summit
#

yeah

tropic plaza
chilly timber
#

u guys like ori

scenic salmon
tropic plaza
#

Just finished my hk challenge I’m just chilling

acoustic summit
tropic plaza
chilly timber
#

its so good man

strong junco
acoustic summit
reef atlas
tropic plaza
reef atlas
#

it has pure nail in it

scenic salmon
acoustic summit
tropic plaza
acoustic summit
#

oh nice

#

ip5 next

tropic plaza
#

No.

acoustic summit
tropic plaza
#

I’ll stick with pure vessel 😭

chilly timber
#

i still have not done p5 😔

scenic salmon
acoustic summit
reef atlas
tropic plaza
chilly timber
#

im too wuss

#

to even attempt

reef atlas
acoustic summit
#

also i dont rally wanna do colo3

chilly timber
#

my friend has 700 hrs and like just beat it a month ago

scenic salmon
#

can i do HOGFR for hall of gods full radiant? or is that not cool

molten moat
#

Yeah recommending piracy is very much not allowed for hk so i doubt it is for other games

scenic salmon
scenic salmon
reef atlas
acoustic summit
chilly timber
#

yeal colo3 isnt that bad

acoustic summit
chilly timber
#

u guys like elden

reef atlas
#

heelll yeah
and all fromsoft games

scenic salmon
reef atlas
#

ds/des/sekiro all of em

scenic salmon
#

i dont like sekiro

chilly timber
strong junco
reef atlas
chilly timber
#

apparently the elden dlc is the size of the entire sekiro file bro

scenic salmon
#

the fighting system is sooo good but i just dont have fun playing it

chilly timber
reef atlas
#

it has 40/50 hours of content with 8 new weapon types and a New leveling system

scenic salmon
#

100 new weapons total

reef atlas
strong junco
#

Yeah it's gonna be fucking huge

chilly timber
#

2 more weeks

scenic salmon
lament spoke
#

Does the hollow knight devs know about this server?

scenic salmon
#

anyone wanna join general 1 and spectate?

#

corrupted kin

reef atlas
#

yo miriko general 1 is empty if u wanna go for it

keen vigil
#

My top 10 LEAST favorite matchups

chilly timber
lament spoke
#

Fr?

chilly timber
#

leth is at least

#

idk if thaats his name i forgor

scenic salmon
willow wagon
#

tf is that server pp

chilly timber
keen vigil
manic gate
#

silkbong

chilly timber
scenic salmon
#

💀

gaunt heron
#

it has to be this time fr

tawny bear
#

Guys we gotta prepare the cope pills just in case

stoic sentinel
#

oh man Aldia is so interesting!

Once, the Lord of Light banished Dark, and all that stemmed from humanity.
And men assumed a fleeting form.
These are the roots of our world.
Men are props on the stage of life, and no matter how tender, how exquisite...
A lie will remain a lie.

what a banger line

chilly timber
#

who needs English class when u have

#

fromsoftware games

chilly timber
#

u have to interact with the thing before the boss in black egg

#

right before the boss room

vast heart
#

playing sekiro rn just beat the ape duo

chilly timber
#

😭

vast heart
magic oar
#

Random question

#

But am i the only one who doesnt like deepnest?

junior ocean
#

yes

magic oar
#

Okay welp then i guess im having a skill issue

midnight oasis
#

lots of people dont like deepnest

#

I do though, its very memorable and has some of the best level design in HK

magic oar
#

Personally i just dont like deepnest just my opinion

plucky eagle
#

it’s a great area
im just a huge arachnophobe
lol

magic oar
#

My problem is that

#

I hate labyrinths

junior ocean
#

|| 🕷️ || aracnophobia warning

magic oar
plucky eagle
steel wyvern
junior ocean
magic oar
#

Also the sounds are so obnoxious T-T

stoic sentinel
craggy violet
#

Where hollow silk

valid pilot
#

Gone

craggy violet
#

NOOOOOOOOOOO

ocean glen
#

Another year

azure elm
craggy violet
#

Imagine dying before Silksong comes out

fleet flax