#general
3141 messages · Page 1508 of 4
||i think he died in the show||
One's Java and C/C++ the other is PHP and Python
no other IDE works properly on my PC
LOL
unfortunately
already tried
or notepad++ for crying out loud
eh, eclipse isnt bad
Eclipse is still decent enough for Java tbh
although it can't compete with the better ones
the PHP one is bad tho
"pc"
battery charging icon
Whatever I call it a PC lol
No he didnt
lmao
Broken legs perhaps
theres actually two people in there
😳 😳 😳
yes, they're drowning
deviantart level photoshop ngl
Nah maybe their just decoy legs so maybe if someone sneaks up and tries to shackle his feet he can just get up and run away cuz thry shackled the fake feet instead
hate when i get shackled out of my hot tub
Dont yall hot tub with decoy legs in case of emergency??
no cuz i dont have a hot tub
i have several questions
Sadge
noice
can confirm
Smh
chunky milk
For 50% off your first month of any subscription crate from KiwiCo (available in 40 countries!) head to https://kiwico.com/hacksmith50
Last chance to pick up our Hacklorian t-shirt ► https://hacksmith.store/collections/special-offers/products/the-hacklorian-t-shirt
Big thank you to Canuck/O’Dell Engineering Ltd for helping out with the armor t...
chunky like my ass

Rainbow Goblins: 0:00
00:00 - 03:15 01 Prologue
03:15 - 08:25 02 Once Upon A Song
08:25 - 11:36 03 Seven Goblins
11:36 - 15:55 04 The Sunset Valley
15:55 - 21:32 05 The Moon Rose
21:32 - 27:58 06 Soon
27:58 - 28:31 07 Magical Night Light
28:31 - 34:52 08 Rainbow Paradise
34:52 - 38:03 09 Thunderstorm
38:03 - 42:52 10 Rising Arch
42:52 - 46:33 1...
Looks old
old people music
Fonkee
banging hard is my specialty

#meme #wtf #womanmoment
Wow "womanmoment"
i think its hilarious how their first reaction is to record it instead of telling her lol
I think the story on that video is it's a novelty water hose lol
Who fkin knows tho it's the internet
Why is blonde in the title? 😛
cuz blondes are stupid 🙄
obvious reasons
I don't think it's ever "supposed" to be down
Well... steam is supposed to be down on Tuesdays. Didn't know if bukkit had something similar.
@void void
cf is having issues again like last week
Welcome to Cloudflare's home for real-time and historical data on system performance.
good old maintenance
Guess this is a good excuse to take a break. I need to either figure out a way to manually reroute nether portals or figure out if multiverse netherportals does that automatically.
I've been using
Bukkit.dispatchCommand(Bukkit.getConsoleSender(), String.format("mvnp link nether %s %s", name, name_nether));
Bukkit.dispatchCommand(Bukkit.getConsoleSender(), String.format("mvnp link nether %s %s", name_nether, name));
but would like a better method.
Multiverse doesn't have an API?
They do but I don't know how to use it if I don't have the internet.
why would it require network access?
I mean maybe it does but I'd assume not
@brave radish it doesn't require network access, i do. lol
the wiki has a dev section
how are you talking on discord without internet access?
But... you have internet access because you're talking to us, so wdym?
I was referring to cf being down and not being able to access the bukkit forum page I usually use for MV info.
ohhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
https://github.com/Multiverse/Multiverse-Core/wiki/API-Usages-(NetherPortals) i think this is what you want
or ya that
idk why everyone is obsessed with java docs, they tell you fuck all if you dont know what you're looking for
How.. the hell.. does Google cache everything?
they crawl through the web and index everything
I'm in between knowing what to look for and knowing how to use it.
I know what's important when I see it. I just don't know what to do with that information.
works perfectly fine for Bukkit
if you know the API's structure you can guess the names
ah yes bukkit and sane names go hand in hand
well they're searchable names at least
does a command throwing an exception in the console instead of a normal error message qualify as a bug?
depends on the purpose of the command, but generally, you dont want end users to see exceptions
Look at me, Mavening some API shit into my IDE...
I feel powerful. I feel dangerous.
generally vanilla commands don't throw exceptions though
player executed server command x?
cant make plugin, no links just code thx
Wyd after smoking this
Perhaps
have there been anymore bans in the past couple days?
besides people threatening me?
as a joke
what
@waxen panther make a funny, jester
sorry, GAMING.
ur fired
ROLLING ON THE FLOOR LAUGHING
seeing others suffer is my happiness fuel
glad to see that this makes you happy
also 1.8 pleb, that makes me less happy
permaban
I would be on 1.16 a lot more if my friends would actually join my server :(
also, I'm still waiting for 1.16 HCF
i mean, that was like 2012-2014 for me
"hey bro, why'd you shut down the server, i was about to play on there!"
every time
I didn't have a server back then. My server is literally my first computer
I would've still had my first computer back in 2012, nor would I be able to pay for a hosting provider back then
I could see this happening, but the only two people that really join are me and my best friend
2 people out of 7 people total
including me in the 2 and the 7
one friend hasn't even joined the server yet
I could see this happening tbh
but I could probably work on it behind the scenes and try to figure out a way where I can get more people to play
since it's hosted locally
Z friended me on discord, that's it boys I made it. I can die happy now
(I'm using 'boys' very gender neutrally there, everyone is boys)
I am impressed with how well paper handled me chunkloading 8k chunks
I'm running at 13.5 mspt currently. Normally it runs at ~4 mspt so it's definitely a performance hit but well under 50ms.
Is there a way I can detect if paper is done loading all my chunks?
Currently, it's done async so there's no easy way for me to know when it's done.
Wait until you test on Tuinity
What is Tuinity
o.O I just want something that works. I'm already using paper instead of spigot.
I don't understand what you're doing tbh
How, exactly, are you loading those chunks?
Consumer<Chunk> consumer = chunk -> {
Bukkit.getLogger().info("Chunk loaded at " + chunk.getX() + "x " + chunk.getZ() + "z for world '" + name + "'.");
chunk.setForceLoaded(true);
};
for (float x = minX; x <= maxX + 15; x += 16) {
int cx = (int) Math.floor(x / 16);
for (float z = minZ; z <= maxZ + 15; z += 16) {
int cz = (int) Math.floor(z / 16);
world.getChunkAtAsync(new Location(world, cx * 16, 0, cz * 16), true, consumer);
}
}
Ah ok this discussion is for #paper-dev then, you'll prob get better answers about it there :p
There's no questions or answers, they were just asking how I did a thing
Yeah you were asking about how to detect when it's finished though, soooo
Whatever tho lmao
Oh. Uhh
you see when it's done because it calls your consumer

hi brocc
hei !
what's a regi

Pokemon
Just never heard of those pokemon lol
Wtf
the night is fucked
there's also some mod that makes infinite mobs spawn in the nether
that's cool
how can people use unactivated windows without going insane
umm no smooth lighting? gross
until you have 50 of them and run at 3fps
im just gonna throw them in a big box and hopefully ignore them
reminds me of the old mekanism, machines would constantly light updates every tick
and the good old multistructures breaking if they crossed chunkborders

ITS A GOOD GAME
That was a thing like… 5 years ago
day 1 account 
im the best kind of mobile gamer, the f2p
toilet
ok
@limpid comet nice!

It's an interesting game technologically
It also never worked, at least when I played it, and, from what I've heard, didn't get much better
Their auth servers used to go down more than Mojang's
its very much better now lmao
it was shit for the first bit, but i've not ran into any bugs/bad servers for years
@unkempt drift HEY YOU
can we ban people from making more /fly plugins and uploading them to spigot mc
and this useless crap
well yeah got that far
why complain about it here, we can't do anything about it :P
its a waste of evreything
this isnt even spigot
oh hey its bart
more people reeling at the bleeding edge of infuriation of these crap plugins the better

guess theyre not getting my business, 6 calls later
yea im pretty bummed
trust me they dotn care lol
the one in my local are so busy
they dont give a shit about losing sale from those call ins
a year later
can somebody guess when will paper 1.17 come out?
It's out already bro
WHAT
Where u been
lol didn't know
is this joke or truth?
it's not out
lol
vanilla 1.17 isn't even out
almost fell
@left swift is just strange
wow that's rude
he's not just strange. He's also special
lol they did just say 1.17 is out

.eta
(See #❗-1-17) Paper for 1.17 will be released when it's released. In the meantime, every time you ask, we postpone it by an hour, so I believe this makes it 162 hours...
I don't even know how to respond to you right now zombie
U broke my heart saying that
I cant believe after 24 years
wait does it count up every time you type it?
.eta
(See #❗-1-17) Paper for 1.17 will be released when it's released. In the meantime, every time you ask, we postpone it by an hour, so I believe this makes it 162 hours...
(See #❗-1-17) Paper for 1.17 will be released when it's released. In the meantime, every time you ask, we postpone it by an hour, so I believe this makes it 162 hours...
I would like to know the the eta on the eta on the bot incrementing that counter. Machine asked for the eta but didn't get an answer so I'm asking for an eta on the eta

Kashike's I think
sulu i think
sulu has pencil
@upbeat falcon is sulu's
ur a pencil
simple has paperchan
Z owns some tacos
I was about to say that
can somebody tell me what is waterfall
bungee but better
yeah basically
how can servers even jump
ok
poxy
something that can let you jump between servers
no
not really, waterfall isn't a server
thats not how that works
there is some extra api but not the paper api
good idea
basically your proxy routes all players to the correct server
oh ok
and you can hook up multiple servers together so the proxy can switch you between them
I really hate how everything is loud
Can't go to a restaurant or a bar or literally anywhere without a ridiculous amount of noise and stupidly loud music playing
who the fuck likes this shit
it's terrible
maybe you got sensory overload?
Maybe he has functioning ears and went to a modern restaurant
impossibruh
so you enjoy going to a restaurant where you have to speak louder than normal speaking volume to talk to your friends?
or just in general you enjoy loud music playing that you didn't pick, or have any control of the volume
yeah im not talking about clubs
and i would never go to a club anyways
i dont without earplugs
Invest in a nice dining room set then you can bring the restaurant home
im talking about just literally any modern hipster restaurant with """atmosphere""" where the atmosphere is just stupid fucking music playing way too loud
havent had any issues with loud music in a restaurant tho
Dinner parties are fun, but I am not really into the idea of having to do that any time I want to go out with some friends
usually its just the radio playing softly in the background, if at all
belgium, 😉
Ded is just deaf that's why all music is soft for him
the only places I know of that have soft / reasonable music / noise are the expensive places that you can only really go to if you're dressed up and it's a special occasion
odd
and coffee shops, but those are just for coffee
Ded doesn't have to worry about loud music cuz belgium doesnt have good music to blast
can't really sit down and have a meal at a coffee shop
seems like the most normal thing here lol, never even considered it could be different
Ya know all these Hollywood hackers that do stupid things like making redlights green? Someone should make a movie where some dude strolls through town turning off people's music when its too loud
my SO used to live 2 blocks from a bar and sometimes the music would be so loud it would keep her up at night
lol, thats what we do at parties we provide audio equipement for, if it starts clipping the amp shuts down
they usually only go over it once 😉
Was the rent cheap atleast or was it more cuz it was close to a bar
probably more, apartments near city centers are expensive af
Probably way more lol
restaurants that blast music are definitely bad
bars dont usually play music here
well some do, but those are like "party bars" lol
not your general pubs
ye
qarty bars
same here
Why would you want to talk when u want to eat food tho that's all I'm saying
general pub would be great, but that's not really something that exists in america
Talking is for car rides and the bedroom
you sound boring
seems like a general lack of common sense is a thing in murica
wat? Those are just dive bars haha
Like most bars are definitely like that here, at least
tru
bout time DED understands this country
this is an insanely loaded question BUT
Oh boy
here in the US people seem to think not playing loud music == boring
what is in your opinion the best anticheat
turning off your server
Gottem
LMAO
can't cheat if you can't play
lul
Idk the new wendy anticheat is nice
i'm all for playing music, but nothing more annoying than trying to have a convo and having to shout over the music
that’s what I did with my rust server so I don’t get raided
what about mcdo anticheat?
I mean that's what I'm complaining about yeah. It's not that every place is like that it's just that it seems to be more popular right now (where I live) to be like that vs not
go to every corporation in America and tell them this plz
sounds like a found a hole in the market
oob
american dream, here i come
@waxen panther you are fired
finally
I'm a better jester then sleepy brocc
I am a furry 😭
Yes. Come open a new chain of restaurants just like Chipotle except they don't play dumb music
Dont ping me u monster
smh
Someone get an acid spray bottle
ew one of those guys
i should name it "It's actually good"
It's on the table again
EWWW
STAPH
I remember u now last time I saw you typing in here was when 1.16 released
DELETE THIS

Eternity gonna have nightmares
i dont talk here much, either i get bored and come here or i come here about plugin / waterfall support mostly
lol
good
Why is he signel us to share???
cuz he wants you to shit together
You scared eternity so much they forgot how to use english
Yes
now im confused
You want some product? Only 50 gold
Advertising
its good product
ban for ads!!!!!!!
oh wait wtf I have a spray bottle emote

yes
So fast 😫


just die once, full mana again 
Is that how to get mana
Yikes
Like super yikes
anyways
Kbye
bye
Go get mana by deding

CUTE
Cant wait for Discord Sticker to be out of beta
we can have paper chan in sticker size 
Bigger = better
unless it's your student loan 
or a low-res image of paperchan
So how's everyone on this fine eve
meh
merp

Hello... I need to call attention to a growing problem.... I run a Minecraft server and it's constantly in danger of being hacked because there isn't any code to prevent hackers done by Mojang.
Please go and vote for my thread on mojangs website, this is critical!! This isn't a player problem it's an server operater problem, we need better security to provide a better experience for our users!
Please click here, login, and vote for my post PLEASE!
And THX!!!
yeah gl lol
that isn't mojang's job AT ALL
and besides just get an anticheat ^
The only way Mojang could solve it is DRM and a rootkit to stop you from tampering with the client at all
imagine kernal level anticheat on minecraft game
Well, they could redesign the protocol to make some cheats less effective or impossible but they couldn't stop xray and similar things
don't really know what the modes are
just don't send the inside of chunks until they are visible
that mode
Mode 1 replaces ores with stone, mode 2 replaces everything that isn't exposed to air into random blocks
Mode 1 you can still xray caves and such
replace everything not exposed to air with stone
or just replace it with nothing and render a void before it loads in
I think mojang just doesn't really have any priority for preventing cheats
Nope, because Mojang doesn't care about public servers
I wish they would remove their useless flycheck, moved too quick, and block-distance checks too
They'll occasionally do some things to make sure they don't screw them up or add something they ask for but their primary audience is single player and Realms users playing pure vanilla or datapacks
lol i've been wanting to make mods that interface with plugins but feedback posts like that make think people would use them to ban players if they see they're using fabric
I genuinely thought you meant your server was in danger of being hacked
Not fucking cheaters LOL
why would you ban players using fabric
They're more likely to do things to make it easier for you to fix it yourself
Exactly
idk, it's seemingly becoming a more prevalent thought in recent years to just ban people using any mod loader
They gave you the mappings, you have the code, do it yourself 😛
that doesn't even make any sense
er, recent years being the past 2 years
wurst and forgehacks and whatever mask the modloader network packets
I just want people to adhere to server rules... Idc what people do elsewhere...
if you ban forge/fabric from their handshake then you're literally only banning legit players
many server owners are crazy lol ¯_(ツ)_/¯
That feedback post is asking for something that modded clients would bypass by default
I don't run an anarchy server....
I mean it's not like these cheats are private just install wurst and join your server where you banned fabric and you can plainly see it doesn't work
Why would I go out of my way to report to the server that my cheat client is a cheat client
I'd just leave the part alone where the client claims to be vanilla
yea, lol do better admin work
In fact I'm a parent andhost for kids... Would you want to protect ur users like your own kids?
watch the players that you think are cheating
If your own kids are cheating then ground them or something don't install an anticheat what
I have a job irl.. I can't 24/7
get a trustworthy kid to do whitelist applications when you're not around
It's like, your suggestion is nice and all but not it's not trivial
This like the same mentality of parents getting mad at online websites showing their kids inappropriate stuff and demanding they cater to their whims instead of the parents doing a better job monitoring what their kids are using lol
So all I'm hearing is excuses... And not.. why not give it a chance...
If you want to give it a chance install a publicly available anticheat
There are plenty
Their suggestion already exists and can be bypassed by doing less work in your mod
you will see they don't work that well
Yes, and anything Mojang adds won't work 100% either
They do help .. but not foolproof
that's where your discretion comes in
I'm not asking for anticheat or anti hack built in, but, can we please make it easier for servers to detect and call out users
Even games where the developer controls end-to-end the client and server like Valorant and they have whole divisions of people dedicated to anticheat, don't prevent hackers 100%
they're there to aid you

Anticheat and detecting cheaters are equivalent on a technical level
I'm quoting them 😛
I realize
Mc has a sandbox mode... Why do people need kill aura anyway
I don't even know what your question is anymore
Because they want to bully everyone else
because getting more internet points give them sastisfaction
paper should just like, be better 😎
is this just a rant about cheaters? Cheaters cheat because they want to be the best, or they want to bully, or whatever
They cheat themselves.... They should try to be legit and earn it
Honestly I'm of totally the opposite opinion, Mojang clearly has no idea how to make a good anticheat and I wish they would remove their existing checks like the block break distance a flycheck
I spent a couple years thinking about how to block cheaters and fixing what I could in CraftBukkit, there is only so much you can do before you start breaking the game
brocc should be better
anticheat plugins break the game so go further than the server could but they still aren't enough
@magic river I'm a fan of anticheats that don't modify the game's behaviour at all
Those are called CraftBukkit 😛
imo anticheat should analyze a player's packets and behaviour, and once it has enough certainty that they're cheating it can ban
If there is an exploit fix that doesn't change behavior it should be in the server, not in a plugin
Oh, you mean doing analysis instead of prevention
i think paper should ship a full neural network for detecting cheaters in a block game 🙂
@waxen panther e
You want VAC
@vestal jasper hi there mister
hi there mister
yes pls ban all the hackers
every anticheat I use I make sure to disable all the rubber-banding behaviour and such that I can
My one attempt at detecting non-vanilla movement packet sending was a pretty big failure, too many edge cases due to TCP or client bugs that cause random bits of packet spam
it ruins the experience of legit players and cheaters don't need to have the instantaneous feedback of knowing their cheat doesn't work
Fairly sure that's how hypixel does it
It's easier to detect invalid movement vs invalid movement packets
design the game so you don’t need to worry about cheating
why cant you just run a whitelist and have their parent send in an application for their kids to join
how is this hard?
But I wanted it all 😛
it turns out stupid people are more likely to turn their cheat settings up if they think the anticheat is not detecting them 🤣
Or only have trustworthy players
which is what I just suggested
Like on my server idgaf if people are cheating that much tbh
Considering java 16 upcoming... Hacks and cheats vs anti hack and anti cheat r gonna be a new battle
All they do is ruin their own experience
What's the difference?
Java 16 has little to nothing to do with cheats
lol what. java 16 isnt going to change anything
Not a ton but a spam of packets that doesn't actually move you is probably just the client bugging out
Didn’t you hear Java 16 built in anticheat 😳 but only if you pay Oracle $1337
Anything legacy is gonna die
I don't know what you're talking about
wat
Do you know Java16 blocks java illegal reflective access! built in anticheat! /s
Java is generally backwards compatible, making outdated cheats work with java 16 should be fairly trivial
That’s how they were hacking on my server!
max you have to do is probably --add-opens
Java 16 is a completely different level of code
You're just completely wrong, not sure what to say
I was trying to make a thing that would allow exactly as many packets as vanilla would send in a worst case scenario plus a buffer when you didn't send enough packets to handle TCP-caused delays
It's gonna break a ton... I can't wait, but also alot of rewrite gonna happen
Is this some really high level troll or I am just dumb?
I kept finding cases where vanilla sent more packets than my maximum
Fortunately it is still java and they don’t change that much between versions that would break your shit, at least without a ton of warnings in advance
By the time I random out of cases that broke I was allowing like 200 movement packets a second
May as well not bother at that point
I already tried to run my server on java 16.. nope... Not compatible...
Yea this approach is not gonna work, because the packets aren't timestamped

They don't need to by timestamped, you just need to allow an up to 30 second buffer
Just because you have a plugin that doesn't work on java 16, that doesnt mean anything to do with anticheats will change?
You're completely misinformed, there are only minor changes that need to be made to become compatible with java 16, speaking as a java developer
(that's how long before the server times you out)
my job fired me because I didn’t know Java 16 only Java 1.8.0_51 😔
im still waiting for amaranth to make minecraft two ☹️
they’ve had years to make it so it wouldn’t break
Some plugins doing extra crazy things with loading code and really invasive reflection will break
have you reported the issues you found to the respective parties
Hopefully they've updated by now but some won't
^^ and or don’t use bad plugins. Or update them because they might already be updated for it
Most coders don't want to hear it.. well... 1.17 is getting closer...
not really following. if you receive a bunch of packets late it will appear that you are receiving a large amount of packets in a short time-frame, even though the client didn't send them that fast
6 months ago you could find a lot that would break, maybe even 3 months ago
btw since you are here. @magic river 
https://drama.essentialsx.net/eyJzZW50ZW5jZSI6NjQsInBlb3BsZSI6WzEwXSwidGhpbmdzIjpbNjldfQ==
or are you saying that the vanilla client can sustain 200 movement packets per second for an extended period of time?
Sure which is why you allow a buffer to build up. If due to packet loss or something I only got 10 packets from you in the last second then 10 are missing so I add them to your buffer of allowed packets
The 200 thing was a glitch with positioning on the edge of a block and jumping, or something
The client would actually send 200 packets a second or so, I was testing with the client and server on the same computer
ah
mojank
a cheat that just sends a lot of packets isn't that useful though, I would try detecting too fast movement patterns or something
I did at least get most things involving the player to run on the server tick and not on the player movement packet
I think vanilla ended up making most of those changes too
I don't understand that
Before that players got ticked as a part of processing their movement packet
why do most anticheats run on the server tick
can you not just queue the incoming packets and process them on another thread?
Didn't send a packet? Your damage cooldown didn't tick
No no, I mean you know how entities tick, right?
sure I write mods
Block grow, mob burn, monster move, etc
Players used to only do all of that when a movement packet came in
You could just stop sending movement packets and be invincible (you couldn't move but whatever, just turn it off after the idiot trying to attack you dies)
huh
They could do the opposite too, drink a regen potion then spam movement packets and regen really fast
These are the kind of fixes I was talking about for blocking exploits without changing behavior
let's just say Minecraft isnt make for competitive pvp at all.
Technically that is a behavior change but not one a client will ever notice and it was a bug anyway
Yea, that's a sensible thing to fix
Yeah, the real solution is to turn PVP off
on the other hand, I do think that cheaters are a lot more likely to turn on their obvious cheats if they think it's not detected
and it's much more preferable to me to have someone regen really fast for a few minutes, get detected, and permanently banned
Yeah, if you have the staff to monitor such things having systems that just detect cheats is a better idea
They'll crank them up once they think you don't have any anticheat which makes for obvious bans
If I can fix a bug without breaking things for non-cheating users I'll always pick that though
just turn pvp off 👍
no regard for pvp servers smh
plus doesn't fix fly hacks or xray or anything on an smp for example
when I ran an smp the amount of people who would use movement cheats think they were undetectable was ludicrous
cant relate. I run whitelist server so everyone knows everyone. We just be chilling 
the roleplay aspect of MC is the best part of it. Anything pvp is just pure toxic
day 2 of trying to get abs:
Can't feel my legs and arms are shaking
well and as usual while it may be hard for an automated system to detect it, it's usually quite blatant if you just have a staff member check on everyone every 30 minutes or whatever
bruh if you run a whitelist server you're in no place to talk about the usefulness of anticheat
hello snoopa your abs is location on your chest not your leg
This is not true for ghost cheats like reach and aim assist
it was lower body + core workout
or autoclicker
competitive mc gotta be the most boring thing on earth
actually no
not quite as boring as technical mc
smh
"technical" 
brocco dissing my sciCraft homie???
😬
autoclicker easy to detect automatically, reach is usually pretty obvious...aim assist fair enough
just put on a marriage plugin and call it a day 
and Gsit
autoclicker is the hardest cheat to detect, it's practically undetectable, what?

CANT HAVE MARRIAGE WITHOUT GSIT 
disclaimer: not an anticheat expert
ok i go rest because i am dying
Snoopa I am sad to inform you everyone is dying... just in different rate
reach is the most obvious but also not easy to detect, especially if they have extremely low reach extension
these three I actually looked into trying to make an anticheat for and you have to really rely on statistical analysis and probabilities there's no certainty
yeah exactly, same with a bunch of movement hacks I believe. Difficult to detect programatically, but one glance by a human and you know without a doubt they're hacking
autoclicker is so difficult because autoclicker programs can just introduce noise and it looks perfectly human
most movement hacks are quite easy to detect with certainty
although some major server (cough hypixel) somehow miserably fail to do it
all my homie hangout in hypickle
true
what do you have against gsit
who has something against gsit
eternity is making a joke where you can use /lay and /sit together + the marriage plugin and its 
oh
😉
yeah marriage plugins are the worst
the best?? all my homie marry each other in game
ya nothing like throwing marriage onto a server with a mix of children, teenagers, and adults
practically skittles mc smh
maybe on your tiktok server smh
well I don’t have marriage for that reason, it’s inappropriate on a kids game

my server is vetted only the most mature and bestest guys and girls allowed 😎
can kill ppl with a sword tho 🤨
Poly marriage and ender dragon later? 😳
Paper is celebrating pride month, if that's am issue for you, I can show you the door
sigh
sed
somebody here speak chinease?
can somebody double check this? 😄
.a
:>
å
.å
[09:18:14] -Korobi- Illegal command name. Command names must start with an alphanumeric character.
wow, that's like... anti... erm... somethingist
I agree with korobi, that video is definitely illegal
@warm anchor 
Kneny, for one, she's 9k years old, so, you're lewding somebody older than your granny, and, ALLLLSSSOOOOOO
She's cuwute

i like this new cat
mari 

Depends
like, if you're just fucking around, latest gets you new features
only massive pro of LTSes is that fixes are backported to it
why would you release a beta for prod 🤔
yeah thats kinda dum, latest = latest for prod
only real caveat of sticking to latest is that you get the potential for a breakage on each major release, e.g. removing deprecated API, etc
only reason to stick to LTSes generally is that the man power to keep your stack updated is too damned high (which is generally bad anyways)
my company sticks to LTS. we run 2k+ services in 4+ different environments
E N T E R P R I S E
but we actually update to new java releases inside of a LTS
how do y'all deal with LTSes disappearing from support?
Guess you's haven't really dealt with that one yet maybe
throw everything into the next release on test infra and pray the env doesn't blow up too hard? 😄
we updated everything to 11 earlier this year
and going forward we will try to keep on latest LTS
I guess most of the headache really is gonna be dependencies really
I know ill be updating my shit day one 😄
personally i wait for like a week or 2 after major release for bugs to be found and fixed, then update
if anyone is bored, two easy issues: https://github.com/PaperMC/bibliothek/issues :p
games are just not as well tested these days and are often pushed too early to appease management and not "upset" players, with the rise of platforms like Steam being the defacto for gaming these days, or consoles, just "we'll push out a fix week after release" is too easy and too much of a norm, even for AAA titles
cough cough cyberpunk
ok yeah nodejs has fixes backported
LTS release status is "long-term support", which typically guarantees that critical bugs will be fixed for a total of 30 months. Production applications should only use Active LTS or Maintenance LTS releases
yeah, but thats meaningless when ppl don't actually update
when was the last time you updated your local java 8 or 11
it was just to run a small server for friends xd
like 2 years ago
and rn i have to use it to make awt applets for comp sci class 🤮
internet explorer
YEP
and basically we got an assignment to write a huge if else if statement
and me being me i wrote a switch statement
B)
Our Dash Cam Store : http://www.dashcamownersaus.com.au/
Send us a video: https://dashcamownersaus.com.au/contact-us/
Follow our streams on twitch: https://www.twitch.tv/dashcamownersaus
can PM me
Smurf mini at your service
All these people wanting an ETA for paper 1.17, I just want to see what they come up with for the 1.17 Discord Banner
Well, it's nether themed, I assume it will change.
Would make more sense to change it at 1.18 when the caves & cliffs update is fully released 😛
But either way that nether one is nice
I like the nether one, could be a geode next? I dunno.
Chinese Child p?
bro it's a troll
jk
Yeah, no shit Ellie
dont take it seriosly please
Doesn't mean it's necessary lol
camm I will punch you in your cock
hot
@viral hornet 🥺
What is ccp tho
boutta fight sakuya in eosd @ashen cliff give me your blessing
combined community codec something something
🥺
chinese communist party
Ok
hi. all project minecraft .jar like that? I make diagramma 😄
there's already plenty of those oput there
that one isn't even worth mentioning
it's from the ssspigot mcm developer
straight up garbage
yes
Purpur is just Tuinity fork, isnt it?
I jsut never understand why people bother with them so much, unless they're just using it as a learning tool or something
purpur is a paper fork
ah ok
however yatopia done something that they state add 20% speed increase to generation
but that's also minimal for world gen lol
purpur take mixed patch from tuinity to
Yes
hm. here don't help if guy using purpur?
what
that's unrelated but yes you're not getting support here if you use something other than paper
nice english
my point is that someone has already made something like yours
Paper*
on the other hand, no clue where that image is
I have it somewhere
I know

why paper cant use new light engine?
because it's not in paper
and fixed mirror bugs
if someone wants to port it sure
it's pretty stable
Starlight port will be my first patch /s
Kek
Leaf code is scary
Is it next level java?
He writes chongous patches
Oh
chungus patches 👀
when will minimessage be merged into paper?
saw proxi mention it on the issue tracker
Soonish
4.2-SNAPSHOT needs some api polish by kash, then tests, then a release, then it can go into paper
Also need to update docs
But code wise it's there now, am happy with it
Since DenWav rewrote the parser with me
noice
@twin lagoon this one?
yes
holy shit haha
camm 
That makes yatopia look like the best
yeah but theres a note at the bottom
Smth smth quality over quantity
Yatopia is a hack fest
That seems hard implementing all those patches
Now your core team so you get to do that 😆
now mini can merge all MM patches 
Ive never heard of origami (the fork)
Should consider moving Hangar's preview to the paper domain now that you're core team, mini? https://i.imgur.com/FlLeIYQ.png
not all of them are active or actively promoted
akarin is dead, origami is somewhat server-specific, hydrinity is braindead
empirecraft is as the name implies empirecraft's fork
Never heard of them lol
yes "not all of them are active or actively promoted"
spigotcraft obviously has spigot 1.17 builds yes
mikel
you trigger me


Imagine if spigot would be an open source project and publishing the source code for snapshots
ehehe
imagine if we hardfork
Nah, too early, we are rebuilding our infra at paper rn, or well, planning
If or when? 😂
their own server
It’s just gonna be 12 pi4 on the new paper infra 
a highly modified version of spigot 1.7.10
is it pi2 now?
No. Rn it’s just kashi’s old laptop in his basement
We wanna be fancy and use k8s
good
They use the forums
ohnonono
Ah okay
discourse
isnt that super slow? literally on any site i've seen it it takes ages to load
wat
Ah okay, I couldn't see that on the preview page
discourse is thats the message thing right?
Papers forums use discourse
tbh Hangar is already nicer than Paper forums 












