#general

3141 messages ยท Page 326 of 4

acoustic basin
#

@woven otter yes?

turbid birch
#

what if something i offer players can vote for like on planetminecraft

#

i dont believe it gives you pay2win anyway

#

but i also offer it in the store to buy

#

perm

woven otter
#

out = when it's widely used /s

turbid birch
#

is that allowed

void void
#

well blacklist of domains or ip's to be specific

turbid birch
#

ok let me explain it another way

#

if i have a creative server

#

where you can vote for worldedit

woven otter
#

kinda sucks for the guy who wrote the redis patch

turbid birch
#

can i let people pay to have it without having to vote

#

because its a creative server, worldedit isnt giving you pay2win

#

its just speeding up building

#

and you can vote for it anyway

void void
#

it is against the eula to do that but how I worked around that is giving everyone worldedit if that donator is online

turbid birch
#

i dont get how its against it

#

its not letting the players pay2win

void void
#

because you are giving one player perms that another player doesn't, that's explicitly stated in the eula

merry talon
#

building faster is winning

#

in this context

woven otter
#

potato

turbid birch
#

thats dumb

#

no wonder servers are shutting down all the time

void void
#

pay2win is a generalized term people invented back in 2014-2015 to simplify the eula when you really shouldn't simplify it

turbid birch
#

they make it very hard to raise funds to pay for an expensive server

void void
#

I have it so when people vote, everyone get's donator perms for 5 minutes, if they like it they can buy donator rank which gives them x amount of cosmetics depending on tier of rank and certain perms depending on the rank but everyone on the server get's the perms when they are online not just them, but once the donator leaves everyone else get's default perms

#

I raise about 400 a month from my server

turbid birch
#

but surely allowing you to vote for the exact same result is not pay2win

#

because you can just vote2win

void void
#

iirc it was 387.46 last month

haughty fractal
void void
#

vote crates are not covered by the eula but perms are

turbid birch
#

they are so harsh with the eula

#

it should be literal pay2win

#

e.g im selling diamonds is bad

void void
#

so giving players items or in game money or cosmetics for voting etc. is not against the eula

turbid birch
#

if mojang think it violates the eula, do they just email you to remove it?

void void
#

often they blacklist you without notice, other times they will give you weeks notice to prepare

turbid birch
#

why would they blacklist without notice thats dumb

void void
#

I had my friend get emailed directly through the support email provided in the motd of the server

woven otter
#

if server is small enough I don't think mojang will ever notice

merry talon
#

because they don't care lol

woven otter
#

yeah

turbid birch
#

my server isnt that small

merry talon
#

making an example out of you is more important than the small amount of people you bring to the game

woven otter
#

they only care when large sums of money are involved

#

I bet you can find hundreds of servers that are pay2win and are not blacklisted

static badge
#

the rule is unenforceable

turbid birch
#

also i heard that apparantly SRV records bypass the blacklist

#

is that really true

woven otter
#

well it's a used technique

golden gust
#

Well, they block the domain behind the SRV

#

srv itself is resolved by the client and doesn't care, its only on connection to the server that it does

turbid birch
#

well i dont intend on getting blacklisted anyway

woven otter
static badge
#

it's his brain copied into a git repo

golden gust
#

Was tryna show something

static badge
#

we already know ur dumb

woven otter
#

what were you trying to show

golden gust
#

--author on git, basically

woven otter
#

I see

#

is it to specify author for a commit

static badge
#

nossr didn't know? monkaMEGA

golden gust
#

he was wondering what the verified tags where for ๐Ÿ˜„

static badge
#

where for

golden gust
#

be for

static badge
#

ur four

woven otter
dapper nacelle
#
    @NotNull
    public Vector rotateAroundNonUnitAxis(@NotNull Vector axis, double angle) throws IllegalArgumentException {
        Preconditions.checkArgument(axis != null, "The provided axis vector was null");

        double x = getX(), y = getY(), z = getZ();
        double x2 = axis.getX(), y2 = axis.getY(), z2 = axis.getZ();

        double cosTheta = Math.cos(angle);
        double sinTheta = Math.sin(angle);
        double dotProduct = this.dot(axis);

        double xPrime = x2 * dotProduct * (1d - cosTheta)
                + x * cosTheta
                + (-z2 * y + y2 * z) * sinTheta;
        double yPrime = y2 * dotProduct * (1d - cosTheta)
                + y * cosTheta
                + (z2 * x - x2 * z) * sinTheta;
        double zPrime = z2 * dotProduct * (1d - cosTheta)
                + z * cosTheta
                + (-y2 * x + x2 * y) * sinTheta;

        return setX(xPrime).setY(yPrime).setZ(zPrime);
    }
woven otter
#

rood

dapper nacelle
#

double x = getX(), y = getY(), z = getZ();

#

what is this

#

like wtf

woven otter
#

something retarded probably

dapper nacelle
#

yeah

static badge
#

it's basic java?

dapper nacelle
#

no why not call x directly

static badge
#

cunt subclasses might override

dapper nacelle
#

hm...

woven otter
#

cunt

dapper nacelle
#

I see why anyone would want to override that method

#
private static Vector rotate(Vector vector, Vector axis, double degrees) {
    degrees *= Math.PI / 180d;
    double u = axis.getX();
    double v = axis.getY();
    double w = axis.getZ();
    double cos = Math.cos(degrees);
    double sin = Math.sin(degrees);
    double x = vector.getX();
    double y = vector.getY();
    double z = vector.getZ();
    double v1 = (u * x + v * y + w * z) * (1 - cos);
    double xPrime = u * v1 + x * cos + (-w * y + v * z) * sin;
    double yPrime = v * v1 + y * cos + (w * x - u * z) * sin;
    double zPrime = w * v1 + z * cos + (-v * x + u * y) * sin;
    vector.setX(xPrime);
    vector.setY(yPrime);
    vector.setZ(zPrime);
    return vector;
}
#

I use this to rotate around axis

woven otter
golden gust
#

git rerere

static badge
#

there's also google: <git do this>

grand slate
#

^

woven otter
grand slate
#

my most frequent search "git remove last commit" and i still can't remember how to do it

dapper nacelle
#

thare is that, but if you follow any advice on google about git you will end up doing a new git clone

grand slate
#

last time i tried to remember, i um lost my entire repo

static badge
#

git reset --hard HEAD~1

golden gust
#

git reset --hard HEAD^1

#

or dat

static badge
#

you're slow

golden gust
#

ur bad

static badge
#

you're retarded

#

but most importantly

#

ur last

grand slate
#

i don't trust myself to remember that anymore

dapper nacelle
#

I seriously fucked up some of my projects while using the github advice someone gave online

grand slate
#

either 1 google search, or bye bye repo

golden gust
#

git is easy once you figure out how it works ๐Ÿ˜„

#

Issue is that most people really don't care to figure out how it actually works

grand slate
#

oh yea git is easy, i'm just rarted

static badge
#

everything is that way

dapper nacelle
#

IntelliJ's integreated github โค

grand slate
#

ew no

#

i mean, i use it, but ew no

static badge
#

git gui monkaMEGA

woven otter
#

honestly someone told me that git on cli is a great experience

#

and it was

grand slate
#

it is

#

yea

woven otter
#

not gonna lie

grand slate
#

on mac i use git cli, but not on windows, idk why

golden gust
#

Could never get into IJs UI for it

dapper nacelle
#

imagine solving merge conflicts via the cli

woven otter
#

did rebase and cherry-picking with cli and it was fun

static badge
#

you don't solve conflicts from cli

#

you solve from IDE

dapper nacelle
#

you can solve them in git's terminal

grand slate
#

not if vim is your ide ๐Ÿ˜‰

golden gust
#

You can if you want

static badge
#

VIM really should die

#

in a giant

#

pit

grand slate
#

yes it should

static badge
#

of

#

fire

golden gust
#

I mean, it's just text files, git doesn't care how you edit the work folder

dapper nacelle
#

it was a god damn awful experience tho

static badge
#

even when VIM dies and it has to exit

#

it will need to google that

#

fucking vim

grand slate
#

i'm hating on it, but i still edit html files on my vps with it lmao (if it's < 5 lines)

dapper nacelle
#

how to exit vim: ctrl + c

grand slate
#

no

golden gust
#

vim is love, vim is life โค

woven otter
grand slate
#

vim is dangerous, and vim is gay, but boi is vim sometimes convenient

vestal jasper
#

How to use vim: don't

grand slate
#

how to use emacs: don't

static badge
#

nano life

vestal jasper
#

how to use ed: don't

#

nano life

grand slate
#

how to use nano: also don't

static badge
#

vic you're in nanometres

grand slate
#

host an ftp server u cheap fuck

dapper nacelle
#

when solving merge conflicts I have a 10% chance of code randomly vanishing, a 30% chance on duplicate code and a 80% chance of everything fucking breaking

woven otter
#

how to use a text editor: don't

grand slate
#

who else uses intellij for editing text files? just me ok

static badge
#

and that's why you review the diff before committing :>

woven otter
#

simplified it for all editors

grand slate
#

thanks duck, real cool

woven otter
#

yw

dapper nacelle
#

imagine merging while the whole project is refactored

grand slate
#

also what's your nickname emoji, just a box for me

dapper nacelle
#

that'd be literal hell

grand slate
#

lmao me and begga had a fun time on my Flutter project

woven otter
#

omg that's sad rayz

#

it's a duck

#

ofc

dapper nacelle
#

never, but never allow people to edit too many files in their branch

grand slate
#

i sorta refactored whilst he had forked it, and i selected the WrOnG ConFLicT SolVEr

dapper nacelle
#

I am so glad I work alone on my plugin

#

just one branch

woven otter
#

just don't use git /s

grand slate
#

i rarely work on OS stuff, and even if my proj is open source, they're small, so no need for others to help

dapper nacelle
#

I regularly need to revert stuff so github is nice

#

also for sharing code

#

and I work from multiple desktops

grand slate
#

oh lol i use it when a user asks me something, i jujst whip up github and read the code from there, intellij is a cunt to load

dapper nacelle
#

yeah

woven otter
#

ur a cunt too

dapper nacelle
#

4 letter words :/

hot gorge
#

Goat

dapper nacelle
#

cake

hot gorge
#

WEEB

woven otter
#

bark

#

leaf

static badge
#

what

woven otter
#

tree

dapper nacelle
#

smh

woven otter
#

see

hot gorge
#

Got'em

static badge
#

if I had two remaining braincells
and one of them was dying let's say
and you offered to lend me one of yours
not only would I reject that offer but I'd be surprised you'd offer your last remaining braincell
u fuking retard

woven otter
#

u

#

.leaf

static badge
#

bot's so slow you could nickname it z750

woven otter
#

that literally u

dapper nacelle
#

sometimes you just gottem

static badge
#

wouldn't notice a diff

woven otter
#

is everyone waiting on Z now

dapper nacelle
#

Z?

static badge
#

for what

mossy frigate
dapper nacelle
#

in 9 days

#

the konosuba movie

vestal jasper
#

so leaf how are you enjoying ligma/sugma in ow

woven otter
#

like for ver/1.14 to become master

dapper nacelle
#

everyone has been waiting for this anime

static badge
#

remember what he said about it fucking all of the open prs

#

my if only we would pull those it wouldn't be a problem :>

woven otter
#

oh yes that

dapper nacelle
#

Spigot should remove there redundant @Nullable annotations

wooden blade
#

@Null U

vestal jasper
#

Spigot should start putting @NotNull annotations where they're actually accurate

dapper nacelle
#

yeah

vestal jasper
#

Instead of areas where the return is very regularly null

dapper nacelle
#

do a pr where you singlehandedly updated all the annotations

vestal jasper
#

I have no plans on ever submitting a PR to spigot

woven otter
#

just replace everything with Optional

dapper nacelle
#

MD_5 will probably reject it ๐Ÿ˜‚

#

Optionals are slow

#

compared to null

#

extra head size

static badge
#

optional is serious cancer

dapper nacelle
#

it has its uses

static badge
#

like seriously if your code contains it you need to go to the doctor

vestal jasper
#

just use kotlin ez

static badge
#

tbh kotlin > optionals

dapper nacelle
#

my code has optionals ๐Ÿ‘€

woven otter
#

leaf i'm still curious what was the optional nightmare you were dealing with

static badge
#

mojang's code

vestal jasper
#

wat

dapper nacelle
#
public static <T> void setPersistentData(@NotNull ItemStack itemStack, String key, PersistentDataType<T, T> type, T t) {
    ItemMeta meta = itemStack.getItemMeta();
    if (itemStack.getType() == Material.AIR) {
        return;
    }
    PersistentDataContainer container = meta.getPersistentDataContainer();
    NamespacedKey namespacedKey = new NamespacedKey(plugin, key);
    container.set(namespacedKey, type, t);
    itemStack.setItemMeta(meta);
}
woven otter
#

that's pretty broad though

golden gust
#

Heyy, optionals are cool

dapper nacelle
#

oh what

golden gust
#

Gotta have something to keep the GC churnin'

dapper nacelle
#

oh wrong method

#
public static <T> Optional<T> getPersistentData(@NotNull ItemStack itemStack, String key, PersistentDataType<T, T> type) {
    ItemMeta meta = itemStack.getItemMeta();
    if (itemStack.getType() == Material.AIR) {
        return Optional.empty();
    }
    PersistentDataContainer container = meta.getPersistentDataContainer();
    NamespacedKey namespacedKey = new NamespacedKey(plugin, key);
    return container.has(namespacedKey, type) ? Optional.ofNullable(container.get(namespacedKey, type)) : Optional.empty();
}
static badge
#

I mean yeah all that shit does is add to gc

dapper nacelle
#

here are some fine optionals

static badge
#

which is already fucked

#

and btw cat that reminds me what happened to the dude reducing streams in that one class

dapper nacelle
#

why use optionals when you have @Nullable

static badge
#

should we just go ahead and do that

vestal jasper
#

that looks like more work than it's worth

static badge
#

put out a bounty for streams

#

"$10 per 1000 stream calls nuked"

woven otter
limber knotBOT
#

(DiscordBot) it's free real estate - length 3s - 7,354 likes, 94 dislikes (98.7%) - 599,989 views - Roger 'The Dankmaster' Penrose on 2017.09.11

wooden blade
woven otter
dapper nacelle
#

imagine if mojang released some nms that is not obfuscated

#

and without version number in the packet name

wooden blade
#

Or that โ€œapiโ€ they promised?

vestal jasper
#

Pretty sure the package version number thing is md_5's doing

dapper nacelle
#

oof

vestal jasper
#

Don't quote me on that though

dapper nacelle
#

does he use like some dark regex stuff to update versions I wonder

woven otter
#

huh what are you talking about

void void
#

Pretty sure the package version number thing is md_5's doing

of course it is

dapper nacelle
#

if he replaces all text occurrences to change packet names

void void
#

well it's done since craftbukkit ages

#

does he use like some dark regex stuff to update versions I wonder

huh?

#

he's using maven shade plugin to "relocate" classes

woven otter
#

isn't that just relocation by maven?

golden gust
#

package versioning was bukkits thing

dapper nacelle
#

it sucks

golden gust
#

and tbh, i kinda can't blame them for trying

#

Would be nice to get rid of it

#

or do it properly

acoustic pilot
#

md_5 is the one who stopped doing it properly

#

It definitely doesn't suck, and is very useful

golden gust
#

getting rid of it would break a lot of stuf,f however

dapper nacelle
#

yeah true

acoustic pilot
#

If md would actually use the same process Bukkit team did, we wouldn't be having problems with it.

dapper nacelle
#

all reflections would break regarding nms

#

in existing plugins

acoustic pilot
#

The NMS version is how we determine NMS compatibility in plugins

#

Without it, it'd be a lot harder

woven otter
#

would be cool to endure 1 version where stuff breaks just to make it better in the future

static badge
#

well now you have some random string

acoustic pilot
#

Of course md just doesn't bump it anymore

static badge
#

stop complanining kappa

golden gust
#

It wouldn't make it better, however

dapper nacelle
#

there could be a version string somewhere

golden gust
#

There is

#

In the package and in some random class somewhere

acoustic pilot
#

The point was to force things to break

golden gust
#

But, that doesn't fix the issue that relocation was tryna solve

dusk drift
#

^ me looking in here

golden gust
#

Plugins being stupid and not caring about checking versions just diving into reflection

#

Bukkit made those changes to stop stupid plugins breaking servers on updates

acoustic pilot
#

When a plugin would stop working due to a NMS version bump, the plugin author would have to evaluate the changes and not be stupid and put out an actual update.

static badge
#

tbh every update to mappings we should roll a dice

#

for whether we actually use spigot mappings, yarn, or mcp

dapper nacelle
#

yarn for java?

void void
#

doesn't yarn update faster?

#

no, yarn mappings

static badge
#

I'm literally memeing boys CALM DOWN

dapper nacelle
#

compared to npm

golden gust
#

Yarn tracks snapshots

dusk drift
#

.typing

limber knotBOT
golden gust
#

yarn is a set of mappings, not the package manage

#

.g yarn fabricmc

limber knotBOT
#

(DiscordBot) https://github.com/FabricMC/yarn -- FabricMC/yarn: Libre Minecraft mappings, free to use for...: "Yarn. Yarn is a set of open, unencumbered Minecraft mappings, free for everyone to use under the Creative Commons Zero license. The intention is to..."

dapper nacelle
#

why not build it on top of Vue, a JavaScript framework

#

they have great dependency injection

golden gust
#

Shit

void void
#

huh???

golden gust
#

I was baited

#

Gotta have been

dapper nacelle
#

lol

static badge
#

if we use javascript in this project

#

I'll literally quit fuck that and fuck everyone

void void
#

lmao paper in javascript

static badge
#

js can burn and I'll die on that hill

void void
#

wait java and javascript is the same anyway wtf lol

golden gust
#

I wasn't sure if baited or if somebody just had a tumour

#

Probs both

static badge
#

cat

golden gust
#

fuq u

static badge
#

you're a tumor

golden gust
#

.leaf

static badge
#

and you were baited

dapper nacelle
#

Just add the Prototype object to paper

#

than it will be super fast

golden gust
#

Dudes

void void
#

...

dapper nacelle
#

Pwototypiee.funkywunks

void void
#

delete JustDylan.prototype.live;

vestal jasper
#

OwO

golden gust
#

Clearly the fix for paper is to start throwing threads around

#

Need to send a sound? async!

static badge
#

exactly what I did kappa

golden gust
#

Wanna do 1 + 1? Async that too!

void void
#

no let's rewrite patches to mixins instead

dusk drift
#

psssttt, is #2172 gonna be merged soon?

void void
#

let's think realistically now

golden gust
#

oh go nothx

woven otter
#

async async when

dapper nacelle
#

async makes everything faster

golden gust
#

2172?

void void
#

imagine if cat was async

dapper nacelle
#

I needed to pee, but didn't wanna leave my bed so I did it async

dusk drift
#

Ash PR for mob spawns

#

you and Z approved

void void
#

he would've merged my waterfall pr faster

woven otter
#

start by making main thread async

static badge
#

z technically needs to re-review

golden gust
#

2171 u dum

dusk drift
#

shhh

woven otter
#

that way everything is async

static badge
#

21 - 71 is also ur iq

dusk drift
hot gorge
#

I like gsync better than async

#

Make chunks gsync

void void
#

async gsync Thonk

dapper nacelle
#

freesync for the OGs

woven otter
#

also use glock

dusk drift
#

I like zsync coz its so fast it's already at the end of the alphabet

void void
#

glock

#

lol

#

you mean water pistol?

dapper nacelle
#

that's the sound I use when I drink

dusk drift
dapper nacelle
#

glock glock

void void
#

absolutely unusable pistol in cs:go smh

woven otter
#

I was going for g-lock but glock was better

#

but yes use water pistol and spray water on your motherboard

hot gorge
#

async 40cal

woven otter
#

let's just contribute to glowstone tbh

dapper nacelle
#

it its distilled water you can throw it over your motherboard

#

if there is no dust in the air

woven otter
#

or your motherboard

dapper nacelle
#

or on*

woven otter
#

i bet it's dusty

dapper nacelle
#

then you just need to wash it away with distilled water

#

works every time

woven otter
#

while it's on preferably

dapper nacelle
#

distilled water is non conductive

woven otter
#

well while it's pure yes

dapper nacelle
#

anything dissolved into it makes it conductive however

woven otter
#

well what I said

static badge
#

you can wash your motherboard in the bathtub with you

#

and your rubber duckies too

dapper nacelle
#

I was already typing then so fuck you

void void
#

javascript just physically hurt me

woven otter
#

no u

dapper nacelle
#

rubber ducks are essential to developers

woven otter
#

leaf will you show how it's done

dapper nacelle
#

I use intellij in bath with my rubber duck

#

its good for debugging

golden gust
#

not conductive?

#

Just needs more volts

void void
#

rubber ducks won't help you if your gradle is not synced properly

static badge
#

you would know about needing more volts

dapper nacelle
#

use maven

#

smh

woven otter
#

it needs 2000C

golden gust
#

CRANK IT UP DA... erm

woven otter
#

then it's okay

dapper nacelle
#

I should sleep

void void
dapper nacelle
#

before it gets to 04:00 for a 3nd time in a row

#

oyasumasai minasan

woven otter
#

only 3rd time in a row?

dapper nacelle
#

it aint fun when you wake up at 09:00 because of your screaming siblings

woven otter
#

REE

dapper nacelle
#

if I wasn't too lazy to get out of bed I'd make them shut up myself

#

or plan b: play heavy metal on my speakers so hard that the neighbours would complain if we had any

#

works every time

hot gorge
#

You must actually be 17

azure patio
woven otter
#

arisa is typing

dusk drift
#

Arisa is my wife

azure patio
#

jesus, Duck
I'm hungry I wanna eat duck

#

owo

dusk drift
#

๐Ÿฆ† quak

azure patio
#

I got spam email with fake ray-ban site tc..

#

and around 60 emails offering sex

#

wtf

azure patio
#
This letter is notifying you of the death of my client. I am
contacting you to inform you that a notice has been given by thebank that if no one comes forward for the claim of the assets ofthe deceased that it will be marked as ownerless and subsequentlyclaimed by the Government.I am contacting you because you bear the same last name with mylate client.I want to know if you are in anyway related to mylate client.Please respond with your full name and contact telephone number.Best Regards,
Adrian March
Attorney at Law```
#

somebody register my email adress

#

to some shit

#

wtf

#

who

#

messed up people

#

Literally 60 emails liek this like every different with differ email and tel. number but it's same like wtf

dusk drift
#

orrrrrrrr you did the most likely one and signed up to places with ur email and agreed to the tos

#

to sell ur email etc

#

or aka

#

let third parties use it

azure patio
#

I'm careful about this, I'm not sure
I think it's more like one of my """FRIENDS""" registered me somewhere because he was saying osmething about it

#

he was thinkign I registred him somewhere too

#

I did not

dusk drift
#

Kinda just a shit thing to do...

azure patio
#

^

wet viper
#

Hello, can you help me with a question please?

azure patio
wet viper
#

How do I check how many blocks there are in an area in async?

azure patio
#

tha'ts not specific at all

#

you want like whole code?

golden gust
#

you can't access the world async safely

#

best you can do is split the work up over several ticks

wet viper
#

Thank you very much.

hollow fossil
azure patio
#

xdddd

#

lol

#

Where are you from? Do you understand the content of the email messages?

static badge
#

and this is why you don't put ur email in dumb places or public

hollow fossil
#

Yeah, I do as they are in my native.

azure patio
#

btw Ahoj :D

hollow fossil
#

Hello there XD

azure patio
#

leaf somebody did that to me

#

not my fault cries

#

some pervert

#

I'm sure

static badge
#

I'm 90% sure you're a pervert kappa

azure patio
#

๐Ÿ™ƒ

static badge
#

100%

azure patio
#

NewAge? do you know something more about the emails?

#

jako nejaky info navic

hollow fossil
#

not really

golden gust
#

ahoj you filthy pirates

azure patio
#

no again :DD

hollow fossil
#

Probably someone was playing with seznam.cz domain

azure patio
#

probably, thanks god I'm not using that email anymore for anything

wet viper
#

Hello, @golden gust I understand, but could you tell me how I can make multiple players can do this check with a pick in tick range without causing any lag?

azure patio
#

no

acoustic pilot
#

Spam emails are often the result of a breach on a site where you registered in the past.

azure patio
#

don't ping electrocat

#

never

#

nightmare

#

is coming

static badge
#

poor cat

azure patio
#

^

golden gust
#

I'm not even attempting to read that

static badge
#

doomed to be without braincells

#

I mean without being pinged

acoustic pilot
wet viper
#

:/

acoustic pilot
#

(note: you will have to enter your email) ๐Ÿ™‚

azure patio
#

I know about that Byteflux, the email that is getting the spam messages I'm not using anymore anyway

#

so

#

it's okay

#

4 breaches

#

lul

static badge
#

only got two kappa

azure patio
#

:D

hollow fossil
#

3 here, email is not used for anything important tho

azure patio
#

my main email has 0

#

uwu

acoustic pilot
#

17 breaches on my old email lol

wet viper
#

Can anyone help me with a question? I want to do a block check in an X area, and I wish my players could do this without causing lag, how can I do this? Isn't there a way for me to do this with async safely?

static badge
#

"block check in an X area"?

azure patio
#

17 breaches :OOO

golden gust
#

You'll need to split the work over a few ticks if you wanna ensure that it doesn't take too long

azure patio
acoustic pilot
#

Dating all the way back to 2012 looks like ๐Ÿ˜›

woven otter
#

Arisa eating duck is illegal

static badge
#

all that korean hentai huh byte

azure patio
#

I liek duck

woven otter
#

and is punishable by death

azure patio
#

a lot

#

duck is amazing

woven otter
#

yes I am

azure patio
#

I love to eat the duck skin

woven otter
#

ok now I will need to murder you

azure patio
#

๐Ÿ—ก

#

๐Ÿฆ†

#

โŒ

woven otter
#

ur doomed

#

hide

azure patio
#

hides in basement

#

a few moments later runs from basement because of spiders

dusk drift
#

you two are weird

azure patio
#

You are purple flower bird

void void
wet viper
#

@static badge Checar os blocos que tรชm em uma รกrea

azure patio
#

lul

wet viper
#

Check blocks in an area*

static badge
#

not sure what made you think I'd understand that

azure patio
dusk drift
#

Leaf prob spent my $10 I gave him on OmegaLULUW skins

#

what a sado

static badge
#

buying cosmetics in a game I payed $40 for

dusk drift
#

sounds like you

#

you played tf for like 4k hours

azure patio
#

I brought one dress for 30$ in soulworker

#

:{

dusk drift
#

dress!?!?

#

DRESS?

azure patio
#

YESES

dusk drift
#

get one IRL

azure patio
#

I have

dusk drift
azure patio
#

I wanted one in game

#

owo

dusk drift
#

UwU

dusk drift
#

WEEBS

#

REEE ๐Ÿ‘‰ ๐Ÿšช

azure patio
hollow fossil
dusk drift
#

can u fucking guys

#

get

#

fucking

#

ANTI SPAM

azure patio
#

:DD

#

I have anti spam

#

it's in spam folder

hollow fossil
#

^

dusk drift
azure patio
#

ty emaily jsou

#

jak

dusk drift
#

use one

#

for god fucking sake

azure patio
#

lyl

woven otter
#

hex you are weird

azure patio
#

i'm good

#

thanks

woven otter
#

why are you using screwdriver as hammer

dusk drift
#

duck

#

man

#

I fucking did

#

I had no hammer man

azure patio
#

My anti spam catches all spam I get

#

so

dusk drift
#

needed that shit in

void void
dusk drift
#

glare

#

what the fuck

hollow fossil
azure patio
void void
#

i dont get it

azure patio
#

You are lucky one, NewAge

#

:DD

dusk drift
#

I get like one spam email a month

#

if that

#

my spam folder actually has my important shit

azure patio
#

plebian

dusk drift
#

that some fucking reason gets filtered into there when I NEED IT

azure patio
#

Hex?

#

Do you know about that you can create folders etc..

#

labels

#

instead of putting important stuff into spam

#

?

dusk drift
#

Did you know?

#

its not me filtering my emails?

#

they get sent into spam

azure patio
#

bad anti spam

#

wtf

static badge
#

420 kappa

azure patio
#

I have one number +420 *** 505 666

#

hih

#

f*ck now everyone can find my second number

static badge
#

and this is why your email gets spammed

azure patio
#

me: expecting someone to call me

#

I lost phone

static badge
azure patio
#

I don't have phone in my house and I wasn't outside for like 4 days
but you knwo nobody is calling me on phone anyway because they know I'm not accepting calls by anyone because I can't call because anxiety thinksmart ยฏ_(ใƒ„)_/ยฏ

brazen adder
#

Wooo #2171 is merged

woven otter
#

Arisa u filthy weeb

#

ur weird

azure patio
#

thanks

#

you are weird too

#

I like my weird myself

#

but also hate

#

ยฏ_(ใƒ„)_/ยฏ

brazen adder
#

Merged !

golden gust
#

i h8 u 2, so all is good

dusk drift
azure patio
#

โœ…

#

you dont have to imagine it

#

here it is

#

and no, it's not me

void void
dusk drift
#

I want a purple role ๐Ÿ˜ญ

azure patio
#

^

marble summit
#

Anyone wanna buy my minecraft gamemode i made

azure patio
#

I buy tweny of these

marble summit
#

How much each

azure patio
#

I don't know? you tell me?

#

I don't understand anything anymore

#

cries

marble summit
#

Uh idk i spent like a half a month or more of coding all day

#

So 75$

woven otter
#

I wanna duck role

azure patio
#

I bid 100$

woven otter
#

where is my duck role

marble summit
#

@azure patio ok deel

azure patio
#

luul

#

where is my role?

woven otter
#

no my

azure patio
#

no my

marble summit
#

Join my discord so i can give u role

azure patio
marble summit
#

You paid for duck role u get it

azure patio
marble summit
azure patio
#

I'm going to get cidar

#

brb

void void
#

my uncle owns discord

marble summit
#

Now, anyone want to buy my minecraft gamemode so i can eat food

void void
#

make it a premium plugin

#

people pay for those

marble summit
#

How

azure patio
#

spigot

void void
#

no idea, how hard can it be though?

celest coyote
#

ya'll better update to latest build

azure patio
#

Im back

celest coyote
#

and enable per player mob spawning

marble summit
#

Welp my plugin is paper not spigot sad

azure patio
#

prplz my mommy owns daddy of google owo

celest coyote
#

time to discontinue my plugin and refer people to paper

tawdry coyote
#

do u think enabling it will be more laggy or less laggy

azure patio
#

how it works when two players are eg.: 10 blocks from each other and both of them has max 5 zombies? and let's say max of them will spawn, how many of them will be there?

#

My drunk thinking

celest coyote
#

wat

limber knotBOT
#

my cousin owns jagex and he'll get your club penguin account banned arisa

azure patio
#

fuk

#

no

#

just not my penguin account

#

no

woven otter
#

I want rs gp

#

where is my paypal

limber knotBOT
#

you said a naughty word your account has been banned

woven otter
#

please 48 kg paypal bitcoin

azure patio
woven otter
#

yes

marble summit
#

someone buy my mc plugin so i can eat foodz

woven otter
#

no you buy my mc plugin so I can eat

limber knotBOT
#

how can I do the opposite of buying his plugin

#

I want to take money away from him

azure patio
#

and what me? wait a second
I'm selfish and I keep all my plugins just for me

#

sell him plugiin ^^^ human

limber knotBOT
#

ok wtf is wrong with these worldguard flags

#

I swear their API is just trolling me

marble summit
#

Sell u plugin

#

For 75$

limber knotBOT
#

I fucking hate every aspect of it

marble summit
#

Then u resell

azure patio
#

profit

marble summit
#

For 25$ per person who buys it

#

So then u need to sell 4 times to make profit

#

Ez

#

Then i wont starve and u make moniz

limber knotBOT
#

pls 2 send help worldguard is trolling me

azure patio
#

.MO? do you want to buy my plugin for command /fly? maybe 85$?

void void
#

would you steal a plugin to feed your family??

azure patio
#

yes

void void
#

trick question families cant eat plugins

azure patio
#

you think so

marble summit
#

Do you want to buy my entire gamemode called teytem for 75$

azure patio
#

heh

#

I will eat your plugin

marble summit
#

Ill even throw in a lobby plugin

#

That is hardcoded

#

And a spawn

limber knotBOT
#

this garbage always returns true

#

wtf

azure patio
#

spawn plugin with hardcoded coordinates

marble summit
#

Yes

void void
marble summit
#

Hardcoded shooting game

#

And its also half complete

woven otter
#

Shrekcraft

woven otter
#

wiz fix ur api

#

that's what you have to say magma

limber knotBOT
#

why the fuck is this always returning true

#

I swear I have it right

azure patio
#

Liลกรกckรฉ Jablko - CIDER - Jablko is nice

void void
#

apple?

golden gust
#

What in the shek is going on here

azure patio
#

prplz yes

woven otter
#

shrek is love shrek is life

azure patio
#

electrocta minecratf community

void void
#

yes i see the russian word for apple

azure patio
woven otter
#

jablko

azure patio
#

Jablko is czech word

#

I will give you russia

#

blyat

#

:D

void void
#

ัะฑะปะพะบะพ, basically the same word

woven otter
#

well maybe they are from the same family of languages

azure patio
#

ye it's written completely same

#

now teach me speka azbuka

#

I'm nor ewllt okAT

void void
#

can you read cyrillic?

limber knotBOT
#

this is fun, now I can't seem to cancel a spawn event

azure patio
#

just little bit

#

not much

#

my mother can

#

oh leaf has new ava

#

leaf nice ava

#

i like it

static badge
#

it's me when I see z's code

fallen oracle
#

Weird flex, but okay.

azure patio
#

๐Ÿ‘Œ

celest coyote
static badge
celest coyote
#

cat im basically abandoning my only spigot plugin rn

fallen oracle
#

He's not following me :(

#

I've got 40 followers wtf lol

azure patio
#

Glare, followers are not everything

fallen oracle
#

What else is there?

azure patio
#

Power

#

Magic Power

static badge
#

money

azure patio
#

corrupted world

fallen oracle
#

I've got the power to post a status message to 40 people

azure patio
#

send them meme in the status

#

or anime gif

fallen oracle
azure patio
#

that's deep

celest coyote
#

alright boys I put a big fat suggestion to use Paper#175

#

my work here is done ๐Ÿšถ

fallen oracle
#

Look here buddy

#

Link*

celest coyote
#

link what

void void
fallen oracle
#

THE BIG FAT SUGGESTION CANT YOU READ

#

Wait you're not leaf

#

Sorry for yelling at you

static badge
#

~paper-175

#

@cosmic raft

#

bot sux

celest coyote
fallen oracle
#

@cosmic raft

#

box sut

celest coyote
#

@cosmic raft fix yer but

fallen oracle
#

bix yer fut

azure patio
#

I need to pee but I'm too lazy to get up and go on the toilet and then back and sit down

#

tmi right?

cosmic raft
#

it's down because a sponge server is down @static badge

fallen oracle
#

Can't you just stand and pee

static badge
#

rip

azure patio
#

too lazy

fallen oracle
#

Or are you one of those

#

.... Girls

static badge
#

bot still sucks kappa

azure patio
#

One of those?

#

what? :D

#

My brain is slow

fallen oracle
#

No girls allowed here

azure patio
static badge
#

girls are outlawed on the internet

azure patio
#

๐Ÿ˜ข

#

I will buy strappon will be that enough?

fallen oracle
static badge
#

wouldn't be surprised if you already had one

azure patio
#

heh

#

perv

fallen oracle
#

Wait, if you're a girl, why would you consider peeing while standing up?

static badge
azure patio
#

I can pee while standing

#

where is problem?

fallen oracle
#

Ya but you can't aim

static badge
azure patio
#

ye that's the problem

#

but you know

#

if you dont have to aim

fallen oracle
#

NO AIM NO GAME

unreal quarry
#

I know a girl that can aim

void void
static badge
#

she have a dick billy?

void void
#

ipad mini 2 a7 on 12.4

unreal quarry
#

Nope. Not your type, leaf :p

static badge
#

WOW

#

r u calling me gay

fallen oracle
#

Yeah I heard unbroken came out with a new jailbreak for 12.4

void void
#

I jumped on it straight away

fallen oracle
void void
#

It took a few hundred retries but it finally completed without an error

unreal quarry
#

Wtf glare

#

I would punch you lol

fallen oracle
#

๐Ÿ˜‚๐Ÿ˜‚

static badge
#

wouldn't ur hand break

unreal quarry
#

Probably :(

fallen oracle
azure patio
static badge
#

SO UR BONES ARE BRITTLE

#

WHAT'S WITH THE DENIAL EARLIER

fallen oracle
#

He only had a solid beard

limber knotBOT
#

anyone know why worldguard would always return true for a custom flag when I reload the plugin that registered the custom flag?

fallen oracle
#

It saves it to data iirc

limber knotBOT
#

but the only thing it saves is registering the flag right?

#

if I don't reload wg but reload the plugin I should be fine?

celest coyote
#

fucking wot reddit

unreal quarry
#

Post more, glare. these are gold

celest coyote
#

locked my account

#

reeee

fallen oracle
celest coyote
#

now i gotta change my password because reddits a lil bitch

static badge
#

reddit has been full of little bitches since the start of time

vestal jasper
#

Leaf
Why are people in ow massive retards

limber knotBOT
#

girls, girls, you can all be little bitches

static badge
#

they're real edgelord teenagers

fallen oracle
#

Because you're playing OW

vestal jasper
#

dude splits and dies for no reason then whines that I'm not healing

limber knotBOT
#

deep down I'm really superficial

static badge
#

it's easier to blame someone else than to say "am dumb feeder"

vestal jasper
#

then when hammond focuses me he fucks off and does nothing to help me

queen oasis
fallen oracle
static badge
#

you bronze yet tho

vestal jasper
#

no I'm silver

azure patio
#

I'm not bitch

static badge
#

get bronze

unreal quarry
#

LMAO glare

fallen oracle
#

I had lunch with my roommate today who is grandmaster or whatever they call it and he said it's super toxic.

azure patio
void void
#

any good casino plugins for 1.14.4
anyone knows?

azure patio
#

.g casino spigot

limber knotBOT
#

(DiscordBot) https://www.spigotmc.org/resources/casino.26595/ -- Casino | SpigotMC - High Performance Minecraft: "You just need to click to the Casino sign, enter the amount of money which you want to put in the casino, wait a few seconds and get yourย ..."

azure patio
#

idk what it is

fallen oracle
azure patio
hot gorge
#

Weeb gifs

azure patio
#

WHy do I have to get drunkso easily, the cidar tastes so nice but if I keep drinking more and more I will probably something my body is not build for alcohol I wanna sleep I wanna cuddle into blanket and fall asleep

fallen oracle
#

Proabbaly cause you're a girl

#

WHO AREN'T ALLOWED HERE

azure patio
#

I'm allowed on internet

#

guys are wierd

fallen oracle
#

My apologies

fallen oracle
void void
#

too many animes in here

dusk drift
static badge
#

jfc

celest coyote
#

HEXED WHY

void void
#

you can get banned from discord for making fun of furries, delete that

azure patio
#

^

static badge
#

wait really

azure patio
#

cute discord icon

#

yes

#

you can

static badge
#

so what you're telling me

celest coyote
static badge
#

is z750 can get banned for calling me a furry

#

watch out z

azure patio
#

I'm furry so I have inviciblity

#

normies

#

owo

#

plebians

static badge
#

calling us plebians

azure patio
#

hih

quick gust
#

hello

#

i am looking for the smartest person here.

azure patio
void void
#

@quick gust look in the mirror

azure patio
celest coyote
#

what are you doing arisa

#

gathering evidence to ban leaf?

quick gust
#

is it this spottedleaf guy

azure patio
#

^^ yes

celest coyote
azure patio
#

:DD

#

@marble summit

#

history is amazinf thing

#

such a gold things

limber knotBOT
#

a) fucking weebs

#

b) fucking furries

#

c) fucking degenerates (all of the above)

#

get out of my chatroom

#

reeeeeeeeeeee

celest coyote
static badge
#

appreciate that

celest coyote
#

do I dare open this

static badge
#

do it no balls

void void
#

how bad can it be

azure patio
#

very bad

vestal jasper
#

leaf the only person here who gets triggered by the mention of furries is you

azure patio
#

I want color too

#

owo

vestal jasper
#

speaking of

#

you're a furry, leaf

celest coyote
#

ah

static badge
#

vic

#

you're retarded

vestal jasper
#

see? you're triggered

celest coyote
#

its literally her shitting bag on her belly

#

because of a surgery

#

intestine rupture

azure patio
#

my imagination

#

kms

void void
#

||```Your story is inspirational and all, but I can't help but be a little jealous. I have no idea how these bags work and what it means to the rest of your system, but it just seems like you'll never again be sitting on the toilet in the lobby bathroom of a Jamaican hotel, drenched in sweat and panicking because you can hear the karaoke host announcing your name, and all your friends are calling your name, but you can't go anywhere because no matter how many times you wipe, it doesn't seem to be making any progress and you start to wonder if this Jamaican toilet is where you will live the rest of your life and you can't show your face to the karaoke crowd because they all know where you've been and so you feel totally helpless and it makes you sweat even more.

So...congrats!```||

#

oddly specific comment

azure patio
#

leaf is the most furriest furry ever

celest coyote
static badge
#

ur furry

azure patio
#

be furry is good

static badge
azure patio
#

it's actualt really good

#

you can express your feelings

#

so freely

#

without people judging you

#

and

#

yeah

#

you can have fun in furry suit

#

when you are anti social

void void
#

dataclasses

static badge
#

LUL

azure patio
#

clean butthole is important

#

always clean your butthole

static badge
#

low-value, repetitive, error-prone code