#off-topic
1 messages · Page 96 of 1
dont mind the water color, we had some wood that stained it
cant find the cherry shramp
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
i had some really fiesty ones, and they let me know it during water changes lol
true, they breed like crazy
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
oh nooo 
poor little thing; it's a pretty common defect from what i know :c
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
It's called intrusive thoughts, yours are a bit dark though 
yeah dw i wouldnt ever act on them
famous last words
I’m terrified
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
"for lambda to work" wdym?
lambdas in Kotlin look like: kotlin x.apply { thing -> thing.bar() }
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() }
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
spread operator 🤤
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
IJ will nicely ask you to not do that 😊
Wait till you find out about receiver parameters
x.apply {
bar() // thing is `this` now
}
rn I have a setGenerator method, should I put {} inside the () or not? A bit confused
lol
or use this apply
apply is a function that just makes the it parameter equal to the this of the thing you did it on
so how would I go about it if in java I would use for ex. setGenerator(unit -> lalala)?
lalal
}```
oh yeah
and yeah the apply function, it lets you like make your own little DSLs
countless times I have forgotten to put that last ) lmao
Don't forget the ; :)
oh yeah no
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
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
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
yeah i just honestly kinda love kotlin
probably my favorite language, just a nicer Java
ngl, start gonna be a bit hard, specially when I still use java in some projects
but slowly and steadily getting used to kotlin
now all I need is for them to include every object you'd want to serialize in the JVM in kotlinx.serialization
and indeed, the small things it provides are life changing
so I don't have to write a UUID and InetAddress serializer in every project 😭
Dude they just added their own uuid implementation into the std lib .. IT'S NOT SERIALIZABLE
just gonna take even longer to learn the best practices in kotlin since they are not the same as in java
WHAT LOL
i knew they added it but i heard it was kinda shitty
that's so funny that it's not even serializable
It's Java serializable but not Kotlin serializable
on a very side note, I just noticed I did implement the std lib, yet code still working
wtf lmaoo
what exactly does that do?
my #1 homie
Kotlin auto adds the std to your dependencies
Also think of it as the jdk
it didn't though
did you use kotlin() in your gradle?
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
yuh
understood, ty
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 🙃
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
wait uh, how does this work if I have a 2 parameter method and the lamba is the last parameter
Idk, took them years to add polymorphic serialization to hocon and they only did because I PRed it lol
setParameter(firstArg) {
blahblah
}```
oh wth
you just remove the last arg that's a function and put it outside
that somehow makes sense in my brain
is hocon the json but without quotes thing?
function(first, second, { // lambda })
function(first, second) { // lambda }
function(
first = first,
lambda = { // lambda },
third = third,
)
These are all possible
Yeah, it's genuinely my favourite config format
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?
th
you probably want AsyncPlayerConfigurationEvent::class.java
Let me see if I can find a non nda example 
yeah cause ::class gives you a KClass, not a normal java Class
.javaClass also works but I prefer ::class.java
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
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"
}
]
And keys don't need ""
and that
oh yeah that's pretty nice
idk for the amount of config i need, i'll probably just use a single json file lol
how th do I set the main class in manifest?
does that require a plugin?
ohhh uh, that might be for my framework hold on
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
I am not using shadowjar though
at least minestom wiki didnt say anything about shading it
this not working lol
(what I got from another post)
are you running the jar task
MainKt btw
oh wait yeah where is your package
do I need one? 👀
you should
You’re using Kotlin 🥲
okok
TRYING
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
bruv 😭
Do you have the application plugin?
open your jar in WinRar or something and see if it looks correct
oh interesting, will take a look after'
It makes it easier
yeah if you get the applications plugin, you can just do the kotlin application { mainClass = "me.mrafonso.Main" } or whatever
Just application
oh
you should be able to just put the word application yeah
without the id?
Yes
plugins {
`java-library`
`maven-publish`
}
Similar to those you don't need id or version
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?
what gradle command are you running
it does but still doesnt work lol
and then open the jar with an archiving software and see if everything is in the right place
yeah should be build/libs/app.jar or whatever
It's gradle, doesn't matter the language the output is the same place
Win-Rawr 🦖
can you run it locally with java -jar <jarname>?
might be an issue with your ptero image
I mean, running the class works fine
Actually just tested and yeah it doesn't work with just the application plugin
Honestly just throw shadowjar in there 
yeah that's what I do lol
even when i'm not shading anything
just builds it right 😌
Same
id("com.github.johnrengelman.shadow") version "6.1.0"?
The other one
Yeah
do I use this then or....?
couldn't hurt yeah
Show your build.gradle
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)
}
put the application back
have both?
yea why not
god 30mb 💀
wait were you not shading things you needed before lol
Minestom baby
yeah
that might be why it wasn't working lol
if you didn't have the Minestom shit you needed
Error: Could not find or load main class me.mrafonso.MainKt
Caused by: java.lang.ClassNotFoundException: me.mrafonso.MainKt
what the actual;
idk if you need the Kt
still didnt work
Open da zip
I am gonna kill someone
yeah bro what is wrong with your gradle lol
Look for da file
can you run it locally? or is it a thing with the ptero
30mb looking good (sarcasm)
Is da file there?
I can run it in intellij locally
yeah
so it's probably an issue with ptero
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)
}
Make sure you're running the -all.jar file
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
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
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
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
@twin dune no way check out this blue cybertruck!!
Me when I go to Mechanic in Los Santos with my stolen deluxo.
I'll have all blue please.
ngl i was expecting a different reaction after watching the video
I've been non-stop doing Criminal Mastermind to the point where everything reminds me of it.
how did bro ended up there
idk but wow!! look at that cyber truck!!

💀
Was randomly checking the spigot drama twitter account and saw this post xD
opa
@sullen pumice did you make that video?
Yeah I did
That video is pretty much a self promo
Oh sorry no my intention, just trying to show off the nice video and server showcase (features and map)
Might as well post this project to github at this point so we can test on your project lmao
Lol
gimme the code, yoink
Somehow it is fixed? I copied src, recreated the whole project, pasted the code and now it works?!
Tf
Lmao
Welcome to IntelliJ
Weird af
Hi
hy
@warped raptor really cool work!
Thanks :)
@twin dune
I assume done with text displays and packets?
yep 🐱
how do ya sync the displays with the player cursor o-o It can be moved that quickly?
or is there some kind of magic behind it hahah
With player pitch / yaw
wait it is just that fast?
I mean regularly there's a delay bcs of the packet sending & receiving
it's likely localhosted
so the delay would be quite minor
ah
I havent tried it w displays tbh
but I do know that it was not possible w Armorstands
bcs they use the move thingie client side
#showcase message
@warped raptor this is really cool. Props for it looking good too lol.
I think I misunderstood the question. The selected slot is determined by the pitch/yaw. The ingredients and the crafting result are not. I handle that by changing the display' Billboard
Thank you very much! 🐱
That would be true, but in the video, it's an external server
it's not a billboard btw
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
I think he's referring to the 'crafting' that follows the cursor. In that case, it's a display with a vertical billboard
declaration: package: org.bukkit.entity, interface: Display
ah yea i thought you were referring to the panels as billboards for a sec
xD np
based
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
Not really it’s actually solid I’m working on something dope for Noti I’ll dm info
oh god
BASED
Its really solid bro, I don't have to pay a single artist for this project it's so cool
I mean, I like it
If it can exist it will exist
??
I am service muted from 3 months while it was a 2 month mute
U guys are being biased every now and then
Remove the Service Mute rn
First don't tell me what to do
Removed your service mute @barren pine hope you don't do it again!
😭
Just a tip… maybe ask nicely if you’re going to ask for something
But what did I even do?
That guy idk his random name....
He initiated the beef
I just replied
has nothing to do with that
Its about a service
Lmao
Tell me. What service is it bout?
Bro demands to be unmuted! 😭
Yea so?
(That is a cry of laughing)

Bro. U really got issues with ur parts.
Fix them
💀
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
You posted within our service channels with a budget and then told the "freelancer" you wouldn't pay now but maybe in the future.
- He is a staff.
- There is nothing such as minion.
Sentences like these show ur level of understanding.
Oh alr
That one
But that was cuz I already got a dev for that
🍿
- Yes, exactly.
- Are you a staff? Can you ban anyone in the server? Do you dictate rules?
Read our rules and don't abuse our service channels next one will be a perm service mute.
Sorry I didn't delete it
Alrighty.
Advocating for violence over a support dispute that doesn't involve you is nuts
You instigate every chance you get I don't know why you are even responding.
Cry?
Tf you on about
Point proven
You're the one that started it lmao
Th is going on now
👀
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
Just pointing out your silly ass arguments are silly
U weren't asking anything.
U were just being....... Leave it.
Your point isn't necessarily invalid

Drop it
Lol, you don't just come to a person you want something and demand for something. You ask nicely, called politeness and respect to a higher up
But oh welp
Alr Man I withdraw.
Can't no life the whole day like this guy
Drop what, Afonso can't even see my messages
The argument
And here we see who's speaking.
If there is anything wrong, staffs are here to tell me bout.
Adam can himself tell.
No need for ur no lifing running commentary
Bye
Argument requires two people i think
Lmao, you really have no respect for anyone, not even for yourself but oh welp, nothing I can do about that.
Must mean them
Adam is not a conversationalist that's for sure
Probably because he forgets he's allowed to interact with public chats
You just love to start arguments its not a conversation when you always interfere into conversations you aren't apart of.
Next time you interfere ill simply mute you
Interfere with what, the public chat?
And?
I'm asking
What am I interfering with dear moderator
Especially to someone that cannot even see my messages 👀
Can you just drop it when I tell you to drop the act / convo just do so.
Sir yes sir God king Adam
Adam bro. You may me right. But the other random guy interfered first.
Would apreciate if a mod of the ecloud could approve the latest release of the formatter expansion. Thanks.
Simplejson, gson etc...
what happened to the emojis
they were too cool to stay there
👍
thx

@twin dune
@willow fox dms?
...
Avg. Twitter acc
most batiest bait that ever baited
#1279692880973140020 message hella sus
@proper jungle just.. how?
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
I saw the first post, but I still don't understand what you are doing lol
check the new one
Just tell me smh
it is um
Fake creative with spectating and with riding an entity
all at the same time
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
cursor
wtf
This is amazing. Congratulations!
ty 😄
I thought it was similar to what CosmeticsCore does, which is effectively "disconnecting" the player camera from the actual model.
Or maybe it is... idk
i think that it is the same
yeah, most likely
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
Time to turn things upside down.
Tune into the Arcane Season 2 Official trailer, premiering September 5 at 5am PT.
Pre-save “Paint the Town Blue” by Ashnikko from the Arcane Season 2 Soundtrack, releasing September 5, now: https://arcane.lnk.to/PTTB
Follow #Arcane on social for the latest:
https://www.instagram.com/arcaneshow/
https://twitt...
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 
But this should work very similarly with a lot more work
well am actually trying to avoid using shaders
sounds about right
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
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
@steep gulch just check the guidelines 🙂
Also, #1279692880973140020 is for paid jobs, you have to specify payment info
literally read the rules lol....
@steep gulch
you can't specify 0$
^^
#1279692879492812810 is there for that.
@steep gulch that is not a valid budget
Is 1 dollar is ok
No
Ffs
lol

WHY NOT
Well I dont really care much Abt money, I get enjoyment from other people enjoying my creation and ideas can't really get that if no people really even try the servwr
if you don't plan on paying just use #1279692879492812810
like tf?
is that so hard to understand?
I plan on paying is it hard to read
In the future is not now
plan on paying in the future isnt the same with planning to pay an X amount right now
Read our terms of those channels
plan and will are 2 different things, post it there once you actually pay
lol
The future starts now
lmao
here
useful for you
take a read at it
You are actually violating 2 rules lol
someone should start making a gallery of meme requests in paid :/
"in joining the team" against the rules to post recruitement for teams
real
who has thread perms
I already said that before
yapper should do it
we need a request Ls thread
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
It's all the day ive been ping ponged all around the fucking internet
?

Im just sick atp
imagine how the poor nitro scammers must feel
Removed your post!
Alr
• Replied in 185ms.
• API Ping is 49ms
Thanks adam
th
best sticker ay?
should be here ngl
good sticker
lol
helpchat doesn't have enough stickers
Anyone wanna join my server anyway
.-.
No self promoting...
I sometimes question myself about society
u get more xp on helpchat too
Gonna commit a crime soon
ok but leave my request-free
if you boost
sure, buy me it :3
look how low you are
not if you commit
you should start grinding
lol
in other words, "I had no life when it came out for 2 months straight" xD
i havent achieved greatness yet cause i aint in top 20 :/
No cuz I was the only active staff lol
lol
Top 100 enough for me
I am rank 63 out of 17817, sounds like a win
😮
I am technically in the top 0.35% of HelpChat
😮
✊
bro so many aren't even here anymore
swear there should be a inactivity system
i ll take their place eventually
like, after X amount of time, it just doesn't count you in leaderboards
well most of the top 20 are active
and if you join top 20 you are displayed in the main leaderboard
still think an inactivity system would be nice
so i gotta dethrone piggy
I swear I rarely see piggy speak
that is good
piggy meanwhile artificially inflating his xp
i ve been in 28 for so long, cause of this huge xp gap
but yeah, lost it the moment I didn't have those anymore
even jun gap aint that huge
memories
unfortunately his account is deleted so I can't find the messages by his user :(
i remember that
Huh
Garbage Collector?
why would you even. what. why. huh?
YESSS BEST OF HELPCHAT
BomBardyGamer
Krypton, a fast, lightweight Minecraft server written in Kotlin
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
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
doesn't this already exist
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
Yes
I want peoples digital footprint to be cooked
Burned
Man im happy I grew up watching him
I swear it's gonna suck in 8 years seeing gen alpha get nostalgic over fucking skibidi toilet
why
Just do
I would get nostalgic over skibidi toilet
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
xDDDD
it is just a store for one server
whats with the slots
gotta put in the fruit machines
i swear whenever my uncle sees these he just runs to them
If only popularmmos would return
My first day of entrepreneurship class the students literally just spews brain rot all class, rizz skibidi sigma gyat, we are all 16-18 🫠
hi
reads like a parent tryinng make a joke to younger people
@untold cloak
Be There and Be Square. #MinecraftMovie - only in theaters 2025.
every generation is worse than the last one
we had MLG
rip the custom resourcepack ones now
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
rip to those old enough to remember the fred movies
Not a good server if it promotes gambling, which Mojang outright prohibits
get those kids hooked
sounds like a quitters mindset!!!! the jackpot is just one more spin away!!!!
HOLY.
See snapshots excite me now
Mojang has been cooking lately
this guy gets it
Hello
Hi I royally need help
with?
i think my most used account was hacked and now the person is trying to scam me
Ah. I'm afraid this is not Discord's support server (they don't have one).
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.

bro make ur pfp anything else
are u mental
putting ur face as ur pfp
thats not what i look like anymore. plus i was a freshman in that pic.
cant tell if ur a dude
im a girl
i already did that.
wow
I'm afraid there's nothing we can really do for you.
i have thought of many roasts but i dont wanna get muted or timed out
bruh.....
Discord really tries their hardest to give people reasons to wanting to buy accounts it seems...
?
so theyre taking the monthly changes for boosting servers (the icon) and making it for having nitro for multiple months?
seems like it
daaaamn that is one mentally unhealthy statement 👀
whats that
discord new badge system
O
I have since 2019 xd
When this update comes out I'm going to get Ruby
ssshit thats gonna b freaking flex
bruh i wont be a diamond even
also the 36 months to 60 sounds insane
thats 2 whole years 💀
im so mad i lost my old main accound, it had early supporter badge
Hello
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...
what a strange thing to say
I prefer Slicedlime's videos.
In regards to snapshots
no literally
I'm gonna skibidi this is so sigma
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
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
that sucks
i'm gonna watch it when it comes out, i think it'll be at least a fun watch
@kind citrus bumping your posts in our service channels are not allowed your post was removed.
I increased the budget
Still bumping you can edit posts
don't need to delete and repost to get to the latest message
ok mb
Hey @worldly oriole Your post was removed due to bumping please read our rules about bumping!
hi, in what channel can i ask for support?
for plugin support?
minecraft*
ye, #general-plugins i guess
@harsh raven Sorry for the ping, but your DMs are closed, could not reach you out as in regards to your request.
@zenith mauve should it be showing this? 😂
what a strange message !
using a fork of paper called paper 
Time to turn things upside down.
Arcane Season 2 Official Trailer, premiering on September 5 at 6am PT.
Stream “Paint the Town Blue” by Ashnikko from the Arcane Season 2 Soundtrack, now: https://arcane.lnk.to/PTTB
Follow #Arcane on social for the latest:
https://www.instagram.com/arcaneshow/
https://twitter.com/arcaneshow
https://www.faceb...
wow u use alonsotags over eternaltags :/ ?
omg drama
I just used whatever my setup guy configured for me, I use RoseStacker by Ori, ShopGUI SellGUI by @twin dune etc 😂
I just went by his recommendation tbh
i didn't make rosestacker !!
Oh
i'm nowhere near smart enough to do that
I thought you made the rose series
no i just work with them
nicole, who sometimes floats around the discord has made all of the releases ones

i hate having spigot plugins
Ahhh that makes sense
but oribuin vouchers goes crazy
I need to get back into making plugins.. I miss it :(
I do not miss having public plugins, users are absolute idiots
my biggest regret in most plugins is accepting people's suggestions
i often don't like them, do it anyway, and then hate it
I notice this in a lot of public plugins, it goes from a simple concept (e.g. chat plugin) and ends up with every hook, every feature that only the odd person needs
Yet they're baked in
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
💯
1-star reviews because the plugin page doesn't explicitly say their version is supported and didn't bother to even try running it.
👀 working on the mc server I see
Haha finally had some motivation to see if I could update the server from 1.20.6 to 1.21.1
Tbh I only add suggestions I like and feel are a good addition, if they want extra stuff they can commission an addon
- its command panels lol
W, btw check dms rq, will send a question
@light scaffold deadlock by valve
man the artstyle is actually so similar haha
ive not really seen much footage of it
Remember how cartoons sometimes show like a cousin that looks exactly the same but wears a different colour suit or some sort 
Or an enemy
That's why my latest Minions plugin was api based. You can make your own add-ons or I can make official ones.
I think the modular approach is a lot better
That way the plugin shipped to users doesn't contain tons of junk
Exactly. Also made it only contain 1 minion cause a lot of users would ask if they can disable certain minions.
Worth it for sure
real
I managed to do it, wasn't as difficult as I thought
Awesome stuff!
Updates have been bringing to many great changes lately

i mean yeah if u dont have 100 plugins 💀
neither did I. But people say it's a decent game apparently.
Thankfully only 43
Ive played a few games, pretty fun
is this not literally tf2
placeholder assets, game isn't released yet
Nah thats tf3
my bad original gangster
A game 3 from valve? Will never happen

TF2.5
when u realise counter strike 2 will be the last counter strike 😮
anything to avoid the 3
They have a few decades of cs before they need to do a 3 lmao
counterstrike source global
fatty
IM SO SORRY

@vernal root thats not a valid request
Hello, can you or someone check who ping me about 3 hours ago?
I cant find anything
doesnt it show up here?
it was charlie about smthing w your tags plugin
oh yeah
can confirm
oh wait
3h ago?
it was more like 5 hours ago
but yeah, it was charlie
Mine was like 14 hours before, I think someone else may've pinged him
Random thing but am I the only one addicted to Arcane S2 trailer's music?
also good
but this one simple wow
🎹 Find my music here:
Spotify: https://open.spotify.com/search/d.meletis
Apple Music: https://music.apple.com/ca/artist/d-meletis/1593125050
Deezer : https://www.deezer.com/us/artist/150074812
🖥 Join Discord: https://discord.gg/QwNeWRTVCB
🙌🏻 To Download my content or just support
https://www.patreon.com/DMeletis
This is not the official sou...
bro wtf
I have premium
and I get ads in the youtube video when its in discord
💀
Use [redacted], as it has an ad blocker for yt vids
casino alert #showcase message
what if rosa parks refused to get up from her seat cause she was hiding a nasty moist WAP stain
did u get your meds today?
the things i would to do be rosa parks seat
is this supposed to be funny
No
yikes
gonna have to give a 👎 there
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
hope he gets arrested
or I think he did again
so I hope he gets convicted then 😭
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
That’s so weird because forwarding should fix it, you could always try something like Ngrok to see if you can get it working
Then you’ll know if your network is an issue or not
@stark rapids Those pokemon models look so cursed in MC.... Way too round...
Also, quite the messed up arm there...
skin issue
quite a process to get bbmodels to obj and then used on software
okay well
found the issue
here's the updated "schema"
I had to open the port on both routers lol
One thing that could happen and has happened to me is stupid ISP blocking it
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
barely any evidene
speaking on that
its funny how the uks prime minister says he should get arrested
doesn't matter he's trash regardless
yet was a high up on the jury on jimmy savilles case
doesnt mean he should be in jail
yes it does
remember, barely any evidence for him: jail
evidence for jimmy savvile: free man
🫡
no, it doesnt
pretty sure there is evidence
like what
barely isn't none
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
fair enough
arrested doesnt = guilty
never said it did
but if I were to be accused I wouldn't just be hand cuffed
u sure?
🤷♂️
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
I don't know the actual facts on what's been confirmed on him
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
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?
u shouldnt trust any government one
look at what he posts online
I've seen
its not in their favour
its in the complete opposite
and he has a massive following, dedicated one too
wait bro promotes cryptos?
remember how the bbc also covered up numerous british attrocities in ireland
like how they protected soldier f
a guy who killed 14 irish civilians on bloody sunday
good going bbc
Scams his followers with crypto*
he promotes it for the anonymous aspect
u shouldnt trust anything
always be skeptical of the downsides
else u will be very disapointed in life
Skeptical but not cynical
Trust is needed in life
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
meh. pump and dumps are so lame
i feel like for most rich people hes probably cash poor
most wealth comes from assets
pretty much same for anyone tbh
I can't believe people in the comments support it tho
theres gonna always be people supporting something


