#off-topic

1 messages · Page 96 of 1

vagrant pike
#

dont mind the water color, we had some wood that stained it

#

cant find the cherry shramp

glacial harness
#

god i wish that were me ,,

#

ohhh to be blessed by a little wet bug

vagrant pike
#

the guppies were nibbling on the fingers lmao

#

funny feeling

glacial harness
#

i always had a soft spot for livebearing fish like guppies, but i have no idea what i'd do with all the babies they produce 🥴

#

i remember my bettas nipping me a few times shibeLUL i had some really fiesty ones, and they let me know it during water changes lol

vagrant pike
#

true, they breed like crazy

glacial harness
#

they go insane omg 💀

#

like i love the dumbo ear guppy varieties, but it's just so easy to get overrun 😭

#

and sadly there's not as much of a "local fish store" culture over here in portugal as there was in the US

#

so it's not like i could trade in the babies for store credit or anything :c

vagrant pike
#

yeah we dont have that here either

#

one of the guppies we had had scoliosis 😭

glacial harness
#

oh nooo catscream

vagrant pike
glacial harness
#

poor little thing; it's a pretty common defect from what i know :c

worldly pike
#

let it dry

vagrant pike
#

old pic

#

he deded

worldly pike
#

idk why but whenever i see things like hampsters i just have an urge to squeeze them till they like pop

#

i would never actually do something like that

#

but in the back of my mind something tells me too

#

its not even just animals like when im near my grandma something in my head tells me to punch her

#

like ofc i wouldnt

long summit
#

It's called intrusive thoughts, yours are a bit dark though monkaS

worldly pike
#

yeah dw i wouldnt ever act on them

vagrant pike
#

famous last words

worldly pike
#

oh gods of rizz

#

when will china invade india

blazing oar
#

Uhm quick kotlin question, do I need to do something for lambda to work? Cause it appears I am unable to use them in kotlin? @long summit

young mortar
#

they are squiggly brackets, if you want to name the parameter, then the param, then an arrow, then the function body

#

if you don't want to name the param and there's only one, it's called it by default

#

so that could also be like kotlin x.apply { it.bar() }

blazing oar
#

Oh sh@

#

that makes more sense

#

lol

young mortar
#

yeah it's like, one of the most important things that makes kotlin DSLs so nice

#

that, and that if you have a function parameter as the last parameter in a function, you can put it outside the function call parens

worldly pike
#

spread operator 🤤

young mortar
#

because technically, you could also do kotlin x.apply({ it.bar() })

#

but that's kinda icky, so generally you want to put it outside the parens

long summit
#

IJ will nicely ask you to not do that 😊

#

Wait till you find out about receiver parameters

x.apply {
  bar() // thing is `this` now
}
blazing oar
#

rn I have a setGenerator method, should I put {} inside the () or not? A bit confused

#

lol

#

or use this apply

long summit
#

No

#

Never put it in the method

young mortar
#

apply is a function that just makes the it parameter equal to the this of the thing you did it on

blazing oar
#

so how would I go about it if in java I would use for ex. setGenerator(unit -> lalala)?

young mortar
#
  lalal
}```
blazing oar
#

OH

#

okay that is hella nice ngl

young mortar
#

oh yeah

long summit
young mortar
#

and yeah the apply function, it lets you like make your own little DSLs

blazing oar
#

countless times I have forgotten to put that last ) lmao

long summit
#

Don't forget the ; :)

blazing oar
#

oh yeah no

young mortar
#

like if you have to intialize an object with a bunch of setters or something, instead of just like doing a million methods, you can just .apply it all together

blazing oar
#

that one def. been my life changer

#

sometimes I even still add the ;

#

just cause I am used to it

#

lmao

#

but then I remember I don't need it

#

on a side note, github copilot sucks with suggestions about minestom

#

lol

long summit
#

The little functions it provides are so nice, a small example:

val something = createSomething()
list.add(something)
return something

You might have done something like that before but how about

return createSomething().also { list.add(it) }
#

createSomething().also(list::add) for my close friends

young mortar
#

yeah i just honestly kinda love kotlin

#

probably my favorite language, just a nicer Java

blazing oar
#

ngl, start gonna be a bit hard, specially when I still use java in some projects

#

but slowly and steadily getting used to kotlin

young mortar
#

now all I need is for them to include every object you'd want to serialize in the JVM in kotlinx.serialization

blazing oar
#

and indeed, the small things it provides are life changing

young mortar
#

so I don't have to write a UUID and InetAddress serializer in every project 😭

long summit
#

Dude they just added their own uuid implementation into the std lib .. IT'S NOT SERIALIZABLE

blazing oar
#

just gonna take even longer to learn the best practices in kotlin since they are not the same as in java

young mortar
#

WHAT LOL

#

i knew they added it but i heard it was kinda shitty

#

that's so funny that it's not even serializable

long summit
#

It's Java serializable but not Kotlin serializable

blazing oar
#

on a very side note, I just noticed I did implement the std lib, yet code still working

young mortar
#

wtf lmaoo

blazing oar
#

what exactly does that do?

young mortar
#

my #1 homie

long summit
#

Also think of it as the jdk

blazing oar
#

it didn't though

young mortar
#

did you use kotlin() in your gradle?

blazing oar
#
plugins {
    kotlin("jvm") version "2.0.0"
}

group = "me.mrafonso"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

dependencies {
    implementation("net.minestom:minestom-snapshots:65f75bb059")
}

kotlin {
    jvmToolchain(21)
}
#

this is my gradle

young mortar
#

yeah right at the top

#

kotlin("jvm")

blazing oar
#

Oh I see

#

so if I do that no need to add dependency?

young mortar
#

yuh

blazing oar
#

understood, ty

long summit
# young mortar my #1 homie

On this project I had to have 3 uuid serializers, binary using most and least significant bit for packets, a hex version because that's what the minecraft session api uses and a normal string one 🙃

young mortar
#

yeah like, why can't they just make an official addon or whatever that adds serializers for every JVM standard library object

#

like it would literally take a day or something

#

we need JVM treeshaking, so you only include the function you use

#

or maybe they could be like inline somehow so it just copies them into your project the first time you use it? though i guess probably not

blazing oar
# long summit

wait uh, how does this work if I have a 2 parameter method and the lamba is the last parameter

long summit
#

Idk, took them years to add polymorphic serialization to hocon and they only did because I PRed it lol

young mortar
blazing oar
#

oh wth

young mortar
#

you just remove the last arg that's a function and put it outside

blazing oar
#

that somehow makes sense in my brain

young mortar
long summit
long summit
young mortar
#

hmm yeah I was thinking about using just JSON for my config for the votifier listener thing, since I already have the serialization setup for it and everything

#

is hocon that much of an improvement?

blazing oar
young mortar
#

you probably want AsyncPlayerConfigurationEvent::class.java

blazing oar
#

oh

#

didn't know you had to do that

long summit
blazing oar
#

the small things killing me

#

xd

young mortar
long summit
#

.javaClass also works but I prefer ::class.java

blazing oar
#

hmm okay, ty

#

almost forgot setters work like setting a variable in kotlin

#

it's the ✨ small things ✨

#

gonna get used to it at some point

#

lol

long summit
# young mortar is hocon that much of an improvement?

Oh there you go, here is an example from a project I have

header = "Types"
// Comments!!
pages = [
    {
        header = "GUI"
        link = "gui"
    }
    {
        header = "Paginated GUI"
        link = "pagegui"
    }
    {
        header = "Scrolling GUI"
        link = "scrollgui"
    }
    {
        header = "Storage GUI"
        link = "storagegui"
    }
]
blazing oar
#

reminds me of json

#

but without the , hassle

long summit
#

And keys don't need ""

blazing oar
#

and that

long summit
#

And comment support

#

(i know jsonc exists)

young mortar
#

oh yeah that's pretty nice

#

idk for the amount of config i need, i'll probably just use a single json file lol

blazing oar
#

how th do I set the main class in manifest?

young mortar
#
application {
  mainClass.set("me.test.MainClass")
}```
#

in your build.gradle.kts

blazing oar
#

does that require a plugin?

young mortar
#

ohhh uh, that might be for my framework hold on

blazing oar
#

also do main.kotlin count on the path or nha?

#

I assume not

young mortar
#

oh yeah yeah, it should be similar to tasks.withType<ShadowJar> { manifest { attributes(mapOf("Main-Class" to "me.test.mainClass")) } }

#

i don't remember what you actually want the main class to be

blazing oar
#

I am not using shadowjar though

blazing oar
#

at least minestom wiki didnt say anything about shading it

#

this not working lol

#

(what I got from another post)

young mortar
#

are you running the jar task

long summit
#

MainKt btw

young mortar
#

oh wait yeah where is your package

blazing oar
#

do I need one? 👀

young mortar
#

you should

frank pasture
blazing oar
#

okok

blazing oar
long summit
#

If you create a package-info.kt and declare the package there it'll use that package for all classes in there without needing a "real" package

blazing oar
#

bruv 😭

long summit
#

Do you have the application plugin?

young mortar
#

open your jar in WinRar or something and see if it looks correct

blazing oar
long summit
#

It makes it easier

young mortar
#

yeah if you get the applications plugin, you can just do the kotlin application { mainClass = "me.mrafonso.Main" } or whatever

blazing oar
#

or wdym

long summit
#

Just application

blazing oar
#

oh

young mortar
#

you should be able to just put the word application yeah

blazing oar
#

without the id?

long summit
#

Yes

long summit
#
plugins {
  `java-library`
  `maven-publish`
}

Similar to those you don't need id or version

blazing oar
#

no main manifest attribute, in server.jar I am dying ,tf

#
plugins {
    kotlin("jvm") version "2.0.0"
    application
}

group = "me.mrafonso"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

dependencies {
    implementation("net.minestom:minestom-snapshots:65f75bb059")
}

application {
    mainClass = "me.mrafonso.MainKt"
}

kotlin {
    jvmToolchain(21)
}
#

this my build.gradle

#

looks right no?

young mortar
#

what gradle command are you running

blazing oar
#

jar

#

don't tell me it is not jar now

young mortar
#

uhhh, try assemble

#

if that exists

blazing oar
#

it does but still doesnt work lol

young mortar
#

and then open the jar with an archiving software and see if everything is in the right place

blazing oar
#

it also goes to the build folder right?

#

just like in java

young mortar
#

yeah should be build/libs/app.jar or whatever

long summit
#

It's gradle, doesn't matter the language the output is the same place

blazing oar
#

funnily enough gotta install winrar in the new pc

#

new pc so ye

frank pasture
#

Win-Rawr 🦖

blazing oar
#

I mean...

#

looks good with winrar?

#

oh wait

#

1s

#

nha think everything is fine?

young mortar
#

can you run it locally with java -jar <jarname>?

#

might be an issue with your ptero image

blazing oar
#

I mean, running the class works fine

long summit
#

Actually just tested and yeah it doesn't work with just the application plugin
Honestly just throw shadowjar in there omega_lul

young mortar
#

yeah that's what I do lol

#

even when i'm not shading anything

#

just builds it right 😌

long summit
#

Same

blazing oar
#

id("com.github.johnrengelman.shadow") version "6.1.0"?

long summit
#

The other one

young mortar
long summit
#

Yeah

blazing oar
#

ah yeah

#

forgot about that

#

ty

young mortar
#

couldn't hurt yeah

blazing oar
#

I am dying

#

welp

#

time to set mainClassName

long summit
#

Show your build.gradle

blazing oar
#
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

plugins {
    kotlin("jvm") version "2.0.0"
    id("com.gradleup.shadow") version "8.3.0"
    application
}

group = "me.mrafonso"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
}

dependencies {
    implementation("net.minestom:minestom-snapshots:65f75bb059")
}

tasks.withType<ShadowJar> {
    manifest {
        attributes(mapOf("Main-Class" to "me.mrafonso.MainKt"))
    }
}
kotlin {
    jvmToolchain(21)
}
young mortar
#

put the application back

blazing oar
#

have both?

young mortar
#

yea why not

long summit
#

Just application

#

Remove the one from shadowjar task

blazing oar
#

god 30mb 💀

young mortar
#

wait were you not shading things you needed before lol

long summit
#

Minestom baby

blazing oar
#

yeah

young mortar
#

that might be why it wasn't working lol

#

if you didn't have the Minestom shit you needed

blazing oar
#
Error: Could not find or load main class me.mrafonso.MainKt
Caused by: java.lang.ClassNotFoundException: me.mrafonso.MainKt
#

what the actual;

young mortar
#

idk if you need the Kt

blazing oar
#

still didnt work

tacit nova
#

Open da zip

blazing oar
#

I am gonna kill someone

young mortar
#

yeah bro what is wrong with your gradle lol

tacit nova
#

Look for da file

young mortar
#

can you run it locally? or is it a thing with the ptero

blazing oar
#

30mb looking good (sarcasm)

tacit nova
#

Is da file there?

blazing oar
#

yeah

young mortar
#

so it's probably an issue with ptero

blazing oar
#

god should I just create a new one

#

1s

young mortar
#

what image are you using

#

just the generic Java container?

long summit
#

Yeah just tested that works for me

#

My build.gradle

plugins {
    kotlin("jvm") version "2.0.0"
    id("com.gradleup.shadow") version "8.3.0"
    application
}

group = "org.example"
version = "1.0-SNAPSHOT"

repositories {
    mavenCentral()
    mavenLocal()
}

dependencies {
    implementation(kotlin("stdlib"))
}

application {
    mainClass.set("org.example.MainKt")
}

kotlin {
    jvmToolchain(17)
}
young mortar
#

this is the one I use for ptero to run a jar

long summit
#

Make sure you're running the -all.jar file

blazing oar
#

hmhm

#

nothing works 😭

young mortar
#

are you using the ptero egg I sent?

#

you literally just put the jar in the files area, set the name to what it wants, and set the startup message, bam

blazing oar
#

yes I am

#

tf is going on here

long summit
#

First run it on your pc, just open terminal on the build/libs folder and do java -jar <name>.jar

#

And see if it works

young mortar
#

yeah he claims it works like that

#

but idk at this point

blazing oar
#

I tried via the IDE

#

let me try via cmd prompt

#

what in the actual fk

#

terminal in intellij not collaborating?

#

I am just...

#

gonna go play a game or smt

#

too angry to be productive rn

blazing oar
#

okay terminal already working

#

now it doesnt detect java

#

😭

blazing oar
#

okay yeah

#

does not work via terminal either

#

but it runs via IJ directly

#

lol

blazing oar
#

okay found out that path is duplicated?

#

so in the compiled jar, it is me.mrafonso.me.mrafonso

#

no idea why though

#

I only have a single package

trim raft
twin dune
#

I'll have all blue please.

trim raft
twin dune
#

I've been non-stop doing Criminal Mastermind to the point where everything reminds me of it.

unreal venture
#

how did bro ended up thereOKK

trim raft
unreal venture
twin dune
unreal venture
#

💀

magic summit
#

Was randomly checking the spigot drama twitter account and saw this post xD

chrome bridge
#

opa

naive agate
#

@sullen pumice did you make that video?

sullen pumice
naive agate
sullen pumice
#

Oh sorry no my intention, just trying to show off the nice video and server showcase (features and map)

long summit
boreal escarp
#

Lol

vagrant pike
#

gimme the code, yoink

blazing oar
#

Tf

#

Lmao

blazing oar
#

Weird af

glass matrix
#

Hi

sinful current
#

hy

blazing oar
#

@warped raptor really cool work!

warped raptor
blazing oar
twin dune
warped raptor
proper jungle
#

or is there some kind of magic behind it hahah

proper jungle
#

wait it is just that fast?

#

I mean regularly there's a delay bcs of the packet sending & receiving

solar sinew
#

so the delay would be quite minor

proper jungle
#

ah

proper jungle
#

but I do know that it was not possible w Armorstands

#

bcs they use the move thingie client side

lime torrent
#

#showcase message
@warped raptor this is really cool. Props for it looking good too lol.

warped raptor
lime torrent
#

:D

#

Very curious how it was done let alone without resource packs. thonk

warped raptor
solar sinew
#

so for clarity don't refer to it as such

#

oh or are you referring to the crafting ingredients being shown in the middle of the screen

warped raptor
#

I think he's referring to the 'crafting' that follows the cursor. In that case, it's a display with a vertical billboard

solar sinew
#

ah yea i thought you were referring to the panels as billboards for a sec

warped raptor
#

xD np

young mortar
#

based

naive agate
young mortar
#

AI image generation is so ass bro

#

there's basically no upside to having it exist, and lots of downsides

#

at least ChatGPT can be legitimately useful from time to time lol

naive agate
young mortar
#

oh god

vague walrus
# young mortar oh god

Its really solid bro, I don't have to pay a single artist for this project it's so cool

strange estuary
#

If it can exist it will exist

barren pine
#

@naive agate

#

Enough time

naive agate
#

??

barren pine
#

I am service muted from 3 months while it was a 2 month mute

#

U guys are being biased every now and then

barren pine
naive agate
#

Removed your service mute @barren pine hope you don't do it again!

strange estuary
#

Just a tip… maybe ask nicely if you’re going to ask for something

barren pine
#

That guy idk his random name....
He initiated the beef

#

I just replied

naive agate
#

Its about a service

blazing oar
#

Lmao

barren pine
blazing oar
#

Bro demands to be unmuted! 😭

barren pine
blazing oar
#

(That is a cry of laughing)

barren pine
barren pine
#

Fix them

#

💀

blazing oar
#

You see, adam has the power here, you are a minion here, so you usually ask the king nicely for stuff, if you demand, you usually get decapitated in old times

naive agate
#

You posted within our service channels with a budget and then told the "freelancer" you wouldn't pay now but maybe in the future.

barren pine
barren pine
#

That one

#

But that was cuz I already got a dev for that

ocean wagon
#

🍿

barren pine
#

He was the 3rd one to apply

#

Mb

blazing oar
naive agate
#

Read our rules and don't abuse our service channels next one will be a perm service mute.

barren pine
#

Sorry I didn't delete it

vague walrus
barren pine
#

Will tc

#

I forgot to delete it

#

Once completed

naive agate
naive agate
vague walrus
#

You're the one that started it lmao

blazing oar
#

Th is going on now

barren pine
#

👀

blazing oar
#

Grandpa or zodd here?

#

Lol

#

Bet it's zodd complaining about me for asking cool guy to be nice lol

#

Anyways, time to go to work

vague walrus
#

Just pointing out your silly ass arguments are silly

barren pine
vague walrus
#

Your point isn't necessarily invalid

barren pine
naive agate
#

Drop it

blazing oar
#

But oh welp

barren pine
vague walrus
#

Drop what, Afonso can't even see my messages

naive agate
barren pine
#

Bye

vague walrus
#

Argument requires two people i think

blazing oar
vague walrus
#

Must mean them

#

Adam is not a conversationalist that's for sure

#

Probably because he forgets he's allowed to interact with public chats

naive agate
vague walrus
#

Like that

#

It's a public chat friend 🙂

naive agate
#

Next time you interfere ill simply mute you

vague walrus
#

Interfere with what, the public chat?

naive agate
#

And?

vague walrus
#

I'm asking

#

What am I interfering with dear moderator

#

Especially to someone that cannot even see my messages 👀

naive agate
#

Can you just drop it when I tell you to drop the act / convo just do so.

vague walrus
#

Sir yes sir God king Adam

barren pine
#

Adam bro. You may me right. But the other random guy interfered first.

unreal venture
#

drama in offtopic

atomic lichen
magic summit
#

Would apreciate if a mod of the ecloud could approve the latest release of the formatter expansion. Thanks.

full atlas
#

Simplejson, gson etc...

ocean wagon
#

what happened to the emojis

winter compass
#

they were too cool to stay there

magic summit
#

thx

mellow wedge
magic summit
trim raft
arctic cobalt
#

@willow fox dms?

barren pine
#

...

twin dune
strange estuary
#

Grilled cheese

#

🙏

strange estuary
#

NOOO

#

I haven’t even grilled it yet

#

🥲

worldly pike
blazing oar
boreal escarp
#

@proper jungle just.. how?

true stirrup
#

Idk if right channel but was wondering if anyone could share some tips on how to grow a small server,
Right now im doing,
PMC pretty actively,
Posting the server on reddit
Disboard etc
Encouraging referals

Im kind of lost at what else i can do

#

as i feel like putting my server on the generic server lists is a loosing battle, as i have to compete with houndred people networks essentially begging for votes etc

proper jungle
#

you havent seen what Ive done

boreal escarp
#

I saw the first post, but I still don't understand what you are doing lol

boreal escarp
#

Just tell me smh

proper jungle
#

ye

#

xD

proper jungle
#

Fake creative with spectating and with riding an entity

#

all at the same time

warped raptor
# proper jungle it is um

Do you actually move the cursor, or do you detect the player's movement with A/S/D/W while mounted? My mind just blew

proper jungle
#

cursor

warped raptor
#

wtf

warped raptor
proper jungle
#

ty 😄

magic summit
#

Or maybe it is... idk

magic summit
#

yeah, most likely

blazing oar
# boreal escarp Just tell me smh

Essentially you listen to the player's head rotation, then use that to calculate the location of the cursor. Then the rest is all done with display entities, and voila

#

on a side note

long summit
#

The way I thought it worked, which could also work, is to spawn a display entity around a player with corner markers and then use shader to make it focus onto the camera (that's how people make minimap plugins btw)
Then the cursor could be moved as the player moves, though for other people the player would be rotating like crazy omega_lul
But this should work very similarly with a lot more work

proper jungle
#

well am actually trying to avoid using shaders

analog marlin
#

i heard a great piece of business insight recently

#

businesses that people will start out of passion are the hardest to make money from

#

because the people who are passionate are willing to sacrifice making money, since they enjoy just operating the business

#

this leaves others scrambling to compete with someone who doesnt care about profit

keen dragon
#

I've always made servers with the intention of making money, none of these did

#

Servers i have been meming on and just did as a fun random side project made me good money

unreal venture
#

@proper jungle what is u cookin again

blazing oar
#

@steep gulch just check the guidelines 🙂

#

literally read the rules lol....

gloomy flower
#

@steep gulch

blazing oar
#

you can't specify 0$

gloomy flower
#

^^

blazing oar
naive agate
#

@steep gulch that is not a valid budget

steep gulch
#

Is 1 dollar is ok

naive agate
#

No

steep gulch
#

Ffs

blazing oar
#

lol

unreal venture
steep gulch
#

WHY NOT

true stirrup
blazing oar
#

like tf?

#

is that so hard to understand?

steep gulch
#

I plan on paying is it hard to read

naive agate
#

In the future is not now

unreal venture
#

plan on paying in the future isnt the same with planning to pay an X amount right now

naive agate
#

Read our terms of those channels

blazing oar
#

lol

steep gulch
#

The future starts now

blazing oar
#

lmao

#
#

here

#

useful for you

#

take a read at it

#

You are actually violating 2 rules lol

unreal venture
#

someone should start making a gallery of meme requests in paid :/

blazing oar
#

"in joining the team" against the rules to post recruitement for teams

analog marlin
#

real

analog marlin
#

who has thread perms

blazing oar
#

I already said that before

unreal venture
#

yapper should do it

analog marlin
#

we need a request Ls thread

blazing oar
#

just make it be like a starboard

#

aka it achieves X amount of stars

#

and it gets put in the gallery

#

would be full in a month

#

lmao

steep gulch
#

It's all the day ive been ping ponged all around the fucking internet

blazing oar
#

?

proper jungle
steep gulch
#

Im just sick atp

blazing oar
#

I do not know wth that is supposed to mean

#

but I do like ping pong?

analog marlin
naive agate
#

Removed your post!

steep gulch
#

Alr

honest thistleBOT
#
Pong!

• Replied in 185ms.
• API Ping is 49ms

steep gulch
#

Thanks adam

naive agate
blazing oar
#

th

naive agate
#

best sticker ay?

blazing oar
#

should be here ngl

analog marlin
#

good sticker

blazing oar
#

put it here

#

W

naive agate
#

lol

blazing oar
#

helpchat doesn't have enough stickers

steep gulch
#

Anyone wanna join my server anyway

blazing oar
#

.-.

steep gulch
#

OK BYE

#

😭

naive agate
unreal venture
#

get nitro

blazing oar
#

I sometimes question myself about society

naive agate
analog marlin
unreal venture
#

u get more xp on helpchat too

steep gulch
naive agate
steep gulch
#

ok but leave my request-free

naive agate
blazing oar
unreal venture
#

look how low you are

naive agate
unreal venture
#

you should start grinding

naive agate
blazing oar
#

I don't need boosters to achieve greatness like yourself

#

😎

naive agate
#

I use to be #1 when it came out

#

for 2 months straight

#

it was great

blazing oar
unreal venture
naive agate
blazing oar
#

lol

naive agate
blazing oar
naive agate
#

im like 30th place rn

#

I think

blazing oar
#

I am rank 63 out of 17817, sounds like a win

honest thistleBOT
naive agate
#

33rd

#

what happened to my BG

honest thistleBOT
#
naive agate
#

😮

blazing oar
#

I am technically in the top 0.35% of HelpChat

naive agate
#

😮

blazing oar
#

that sounds like greatness to me

#

AND without a booster

#

😎

unreal venture
blazing oar
unreal venture
blazing oar
#

swear there should be a inactivity system

unreal venture
#

i ll take their place eventually

blazing oar
#

like, after X amount of time, it just doesn't count you in leaderboards

unreal venture
#

well most of the top 20 are active

#

and if you join top 20 you are displayed in the main leaderboard

blazing oar
#

still think an inactivity system would be nice

unreal venture
#

so i gotta dethrone piggy

blazing oar
#

I swear I rarely see piggy speak

unreal venture
#

that is good

blazing oar
#

piggy meanwhile artificially inflating his xp

unreal venture
#

no speak = no xp gained

#

also not doing daily is good 💀

blazing oar
#

I was on a streak when I had nitro

#

cause of reminders

unreal venture
#

i ve been in 28 for so long, cause of this huge xp gap

blazing oar
#

but yeah, lost it the moment I didn't have those anymore

unreal venture
#

even jun gap aint that huge

sullen sorrel
#

memories
unfortunately his account is deleted so I can't find the messages by his user :(

analog marlin
#

i remember that

solar sinew
#

Garbage Collector?

#

why would you even. what. why. huh?

light scaffold
#

Krypton, a fast, lightweight Minecraft server written in Kotlin

worldly pike
#

to make a discord bot thay logs every message in a server

#

and connects it to the users ip

#

and makes it all public on a website

#

to truly cook digital footprints

#

ima make that bot

#

vip to see a users personal discord history on all servers the bot has been in

vague walrus
#

Can't imagine it'll see much use

#

I think the read message intent is also restricted above so many servers IIRC? It has been awhile

worldly pike
#

like to see them do something about it

#

😈

#

id win

#

ong

#

no cap

solar sinew
#

like there's some website which uses user bots to scrape data

#

and you can get access for a subscription

#

either way, you're just describing scraping

worldly pike
#

I want peoples digital footprint to be cooked

#

Burned

worldly pike
#

I swear it's gonna suck in 8 years seeing gen alpha get nostalgic over fucking skibidi toilet

worldly pike
#

Just do

proper jungle
#

hype

light scaffold
worldly pike
#

nah

#

do u wanna know why old gmod machinimas, despite being braint rot were better than what we have today

#

cause it wasnt souless corporate shit

#

skibidi toilet at the start was some guys hobby, which was alright

#

but now, just like mr beast its all corporate shills

#

that werent the shit in 2008-2019

#

@proper jungle lesss go finally gambling

proper jungle
#

it is just a store for one server

worldly pike
#

whats with the slots

#

gotta put in the fruit machines

#

i swear whenever my uncle sees these he just runs to them

strange estuary
strange estuary
boreal escarp
tropic iron
#

hi

worldly pike
inland scaffold
#

@untold cloak

solar sinew
#

we had MLG

magic summit
#

That's quite an interesting change

#

Customizable tooltip designs

unreal venture
magic summit
#

And the equippable component also is a cool addition

#

item_model is one I don't quite get... I assume it allows changing the model used to display for the item? Which seems weird given CMD can also work here...

#

Okay, the equippable one seems like a cool feature to have

#

If animated textures work with it, would this be a huge improvement for plugins like ItemsAdder, as it would no longer need shader manipulation for it

worldly pike
magic summit
solar sinew
#

get those kids hooked

light scaffold
strange estuary
#

See snapshots excite me now

#

Mojang has been cooking lately

light scaffold
#

this guy gets it

round forge
#

Hello

cosmic wigeon
#

Hi I royally need help

wary willow
cosmic wigeon
#

i think my most used account was hacked and now the person is trying to scam me

wary willow
honest thistleBOT
#
FAQ Answer:

Looking for discord support?
HelpChat is a Minecraft plugin and development support server and is not affiliated with discord in any way.
If you require support from discord, we recommend you to visit their official support website at https://support.discord.com
On this website, you can read their FAQs, or open a support ticket if necessary.

wary willow
worldly pike
#

are u mental

#

putting ur face as ur pfp

cosmic wigeon
#

thats not what i look like anymore. plus i was a freshman in that pic.

worldly pike
#

cant tell if ur a dude

cosmic wigeon
#

im a girl

cosmic wigeon
boreal escarp
wary willow
worldly pike
magic summit
#

bruh.....

#

Discord really tries their hardest to give people reasons to wanting to buy accounts it seems...

trim raft
# magic summit bruh.....

so theyre taking the monthly changes for boosting servers (the icon) and making it for having nitro for multiple months?

magic summit
#

seems like it

mellow wedge
brittle hinge
#

how i get showcase permission?

#

uh

#

i got this

proper jungle
brittle hinge
proper jungle
#

the hack

#

Ive got it almost for 3 years

#

so at least something ig?

#

xDDD

frank pasture
#

O

brittle hinge
#

When this update comes out I'm going to get Ruby

proper jungle
unreal venture
#

bruh i wont be a diamond even

#

also the 36 months to 60 sounds insane

#

thats 2 whole years 💀

chilly brook
#

im so mad i lost my old main accound, it had early supporter badge

vital kettle
#

Hello

unreal venture
#

Minecraft 1.21.2 Update Playlist ► https://www.youtube.com/playlist?list=PL7VmhWGNRxKixIX8tWEQn-BnYKE9AaAXk
Snapshot 24W35A for Minecraft 1.21.2 adds support for custom tool tips and custom armor!

A Minecraft Movie | Teaser
https://www.youtube.com/watch?v=PE2YZhcC4NY

All My Links In One Place
🔗 https://linktree.xisuma.co

🙏 Support Xisuma Dire...

▶ Play video
solar sinew
magic summit
#

In regards to snapshots

sturdy bobcat
worldly pike
solar sinew
# sturdy bobcat no literally

languages are so interesting cause like, at different points in time, this was true:
literally = no literally and literally = not literally but no literally != not literally

worldly pike
#

Mc movie trailer dropped

#

Fucking bootleg jumanji

#

Imo it looks bad

#

Just reminds me the good old days of 2016 where you had those realistic mc texture videos on YouTube

solar sinew
#

that sucks

#

i'm gonna watch it when it comes out, i think it'll be at least a fun watch

naive agate
#

@kind citrus bumping your posts in our service channels are not allowed your post was removed.

naive agate
#

don't need to delete and repost to get to the latest message

kind citrus
#

ok mb

naive agate
#

Hey @worldly oriole Your post was removed due to bumping please read our rules about bumping!

warm robin
#

hi, in what channel can i ask for support?

naive agate
#

minecraft*

warm robin
candid vortex
#

@harsh raven Sorry for the ping, but your DMs are closed, could not reach you out as in regards to your request.

frank pasture
#

@zenith mauve should it be showing this? 😂

sturdy bobcat
#

what a strange message !

frank pasture
unreal venture
unreal venture
sturdy bobcat
#

omg drama

frank pasture
#

I just went by his recommendation tbh

sturdy bobcat
#

i didn't make rosestacker !!

frank pasture
#

Oh

sturdy bobcat
#

i'm nowhere near smart enough to do that

frank pasture
#

I thought you made the rose series

sturdy bobcat
#

no i just work with them

#

nicole, who sometimes floats around the discord has made all of the releases ones

unreal venture
sturdy bobcat
#

i hate having spigot plugins

sturdy bobcat
#

but oribuin vouchers goes crazy

frank pasture
#

I need to get back into making plugins.. I miss it :(

long summit
#

I do not miss having public plugins, users are absolute idiots

sturdy bobcat
#

my biggest regret in most plugins is accepting people's suggestions

#

i often don't like them, do it anyway, and then hate it

frank pasture
#

Yet they're baked in

sturdy bobcat
#

maybe it's a bad config

#

maybe no one needs it

#

maybe no one has found it !!

#

i mean it's whatever, rankup menus are among the easiest to make

#

so there's not a high demand

twin dune
#

1-star reviews because the plugin page doesn't explicitly say their version is supported and didn't bother to even try running it.

blazing oar
frank pasture
blazing oar
#
  • its command panels lol
blazing oar
boreal escarp
#

@light scaffold deadlock by valve

light scaffold
#

man the artstyle is actually so similar haha

#

ive not really seen much footage of it

boreal escarp
#

Remember how cartoons sometimes show like a cousin that looks exactly the same but wears a different colour suit or some sort pepe_kek

#

Or an enemy

full atlas
frank pasture
#

That way the plugin shipped to users doesn't contain tons of junk

full atlas
#

Exactly. Also made it only contain 1 minion cause a lot of users would ask if they can disable certain minions.

frank pasture
strange estuary
#

Updates have been bringing to many great changes lately

unreal venture
#

i mean yeah if u dont have 100 plugins 💀

magic summit
frank pasture
boreal escarp
solar sinew
vague walrus
#

placeholder assets, game isn't released yet

vagrant pike
solar sinew
#

my bad original gangster

long summit
#

A game 3 from valve? Will never happen

boreal escarp
magic summit
mellow zinc
long summit
#

They'll just do counter strike source 2 pepeLaugh

#

Then cs go 2

mellow zinc
#

anything to avoid the 3

long summit
#

They have a few decades of cs before they need to do a 3 lmao

solar sinew
#

counterstrike source global

vague walrus
#

Doesn't exist

#

I eated it

solar sinew
vague walrus
#

😦

#

It was only 100GB

solar sinew
#

IM SO SORRY

zenith mauve
boreal escarp
#

@vernal root thats not a valid request

zenith mauve
boreal escarp
#

I cant find anything

unreal venture
#

it was charlie about smthing w your tags plugin

blazing oar
#

oh yeah

#

can confirm

#

oh wait

#

3h ago?

#

it was more like 5 hours ago

#

but yeah, it was charlie

frank pasture
#

Mine was like 14 hours before, I think someone else may've pinged him

blazing oar
#

Random thing but am I the only one addicted to Arcane S2 trailer's music?

young mortar
#

i've been relistening to the 2014 worlds warriors thing

#

so good man

blazing oar
#

also good

#

but this one simple wow

vagrant pike
#

bro wtf

#

I have premium

#

and I get ads in the youtube video when its in discord

#

💀

magic summit
#

Use [redacted], as it has an ad blocker for yt vids

blazing oar
worldly pike
worldly pike
#

what if rosa parks refused to get up from her seat cause she was hiding a nasty moist WAP stain

worldly pike
#

the things i would to do be rosa parks seat

worldly pike
#

No

strange estuary
#

gonna have to give a 👎 there

worldly pike
#

ok but this is what u see when ur against me

#

because ur a woke sheep brokie

#

and im a alpha top g who escaped the matrix

#

for when the last blockbuster closes, tears may run down my face, but i will not cry

#

cannot say the same for you

strange estuary
#

or I think he did again

#

so I hope he gets convicted then 😭

vagrant pike
#

so, I want to setup my so my Minecraft server could be able to be accessed from the internet, unfortunately I've ran into some issues
I tried port forwarding via the router, unfortunately no success
tried iptables, no success
the firewall is disabled on the ubuntu (server) machine

not sure what else to do lol

@young mortar @frank pasture any ideas? 😅

excuse my crude painting

frank pasture
magic summit
#

@stark rapids Those pokemon models look so cursed in MC.... Way too round...

vagrant pike
#

yeah I tried tunelling via playit.gg and it worked

magic summit
#

Also, quite the messed up arm there...

stark rapids
stark rapids
vagrant pike
#

found the issue

#

here's the updated "schema"

#

I had to open the port on both routers lol

long summit
#

One thing that could happen and has happened to me is stupid ISP blocking it

vagrant pike
#

fortunately that wasn't the issue

#

I was scratching my head, doing this and that and I totally forgot about the main router

#

I just have a different one on the second floor for better wifi speed lol

#

and I also use it for multiple pcs for ethernet

worldly pike
#

speaking on that

#

its funny how the uks prime minister says he should get arrested

strange estuary
worldly pike
#

yet was a high up on the jury on jimmy savilles case

worldly pike
strange estuary
#

yes it does

worldly pike
#

remember, barely any evidence for him: jail

evidence for jimmy savvile: free man

strange estuary
#

🫡

worldly pike
strange estuary
#

pretty sure there is evidence

worldly pike
#

like what

strange estuary
#

barely isn't none

worldly pike
#

barely isnt enough for conviction

#

and evidence rn is testimonial

#

testimonial isnt enough to convict someone

#

all there is, is people saying he did that

strange estuary
#

fair enough

worldly pike
#

theres no proof he actually did

#

remember, you can be falsley accused too

strange estuary
#

the accusations are bit more serious when he gets

#

arrested

#

multiple times

worldly pike
#

arrested doesnt = guilty

strange estuary
#

never said it did

worldly pike
#

its more likely they summoned him for a testimonial

#

and he didnt show up

strange estuary
#

but if I were to be accused I wouldn't just be hand cuffed

worldly pike
#

u sure?

strange estuary
#

🤷‍♂️

worldly pike
#

ive seen stuff that says otherwise

#

even then, whilst not handcuffed u will be shunned from society

#

it just takes one false accusation

#

and its been seen time after time

strange estuary
#

I don't know the actual facts on what's been confirmed on him

worldly pike
#

im not gonna listen to the bbc

#

remember the bbc literally covered up jimmy savviles pedophilia and rape case

#

and people got arrested for calling him a nonce

strange estuary
#

uhhhhh

#

I trust BBC mostly lol

#

though to be fair I really don't trust any news source

#

also, I don't see why they need to shove tate under the bus, the heck is that gonna do for them?

worldly pike
#

u shouldnt trust any government one

strange estuary
#

I've seen

worldly pike
#

its not in their favour

#

its in the complete opposite

#

and he has a massive following, dedicated one too

strange estuary
#

wait bro promotes cryptos?

worldly pike
#

like how they protected soldier f

#

a guy who killed 14 irish civilians on bloody sunday

#

good going bbc

long summit
worldly pike
strange estuary
#

I thought that was implied

#

because I don't trust any crypto lol

worldly pike
#

u shouldnt trust anything

#

always be skeptical of the downsides

#

else u will be very disapointed in life

strange estuary
#

Trust is needed in life

worldly pike
#

pretty much

#

yeah but obviouslt, never 100% buy into stuff

#

never idolise people

strange estuary
#

nah

#

This tweet alone is illegal

#

as far as I know on crypto/stock law*

worldly pike
#

depends where

#

american law*

#

remember hes a citizen of romania

#

he most likely resides there

#

romania, being a former communist country most likely never adapted to things like this

#

alot of eastern block nations dont even have laws on insurance yet

#

whereas america being built on entreprenaurship has had alot more time to cover loopholes

strange estuary
#

meh. pump and dumps are so lame

worldly pike
#

i dont disagree with u

#

its scummy to scam

strange estuary
#

especially when he's already so rich

#

but uh, that's never stopped anyone

worldly pike
#

i feel like for most rich people hes probably cash poor

#

most wealth comes from assets

#

pretty much same for anyone tbh

strange estuary
#

I can't believe people in the comments support it tho

worldly pike
#

theres gonna always be people supporting something