#off-topic

1 messages ยท Page 820 of 1

sharp sky
#

Erm..

fallow crow
#

ahahhaah piggy wtf

wary willow
#

:)))))))))))))))

muted fern
#

=multi

honest thistleBOT
#
Your XP Multiplier:
floral umbra
#

fuck i missed it

#

lmao

fallow crow
#

broo

sharp sky
#

I got 1 x69 msg ๐Ÿ‘€

barren nacelle
#

@muted fern since much are active could you enable my multi ๐Ÿ˜Š

wary willow
#

I got 3

eternal apex
#

=multi spin

honest thistleBOT
#
New XP Multiplier...
#

alert **FUNNYCUBE ACTIVATED FRANTIC MODE ** alert

floral umbra
#

1010101

barren nacelle
#

Pog

fallow crow
#

oh god

eternal apex
#

another 8

boreal escarp
#

Btw pig have you seen my ping about 1.t docs?

floral umbra
#

pog

uneven tree
#

T

queen jewel
#

Frantic mode?

sharp sky
#

Lol

floral umbra
#

spam spam spam

eternal apex
#

idk gaby

sharp sky
#

Spam

fallow crow
#

oh god what the hell is that

wary willow
#

what the hell is FRANTIC MODE?

barren nacelle
#

:)

sharp sky
#

Party

eternal apex
#

doesn't ring a bell

sharp sky
#

AA

floral umbra
#

no dont actually spam you fool

muted fern
#

inb4 someone gets auto muted

eternal apex
#

hello efe

fallow crow
#

funnycube I think you have some explaining to do

floral umbra
#

taking attendance ๐Ÿ–๏ธ

sharp sky
muted fern
#

accepting bets on who is first to get muted

barren nacelle
light scaffold
#

this is interesting

wary willow
#

lmaoooo

fallow crow
#

not me

uneven tree
#

.

eternal apex
#

gaby what was ur question?

wary willow
#

I bet its not going to be funnycube

#

gonna win the bet

light scaffold
#

x10 multi is kinda crazy

queen jewel
#

Repeated messages with same text?

wary willow
#

but x69 multi is even crazier huh xD

honest thistleBOT
#

Frantic mode expired.

fallow crow
#

lol

wary willow
#

who got muted

queen jewel
#

Frantic mode?

light scaffold
#

Ah yes

floral umbra
light scaffold
#

The good old days

fallow crow
#

well I'm still here

light scaffold
#

of x69

floral umbra
#

we had 69 a second ago

muted fern
light scaffold
#

oh

queen jewel
#

hmm

floral umbra
#

but only for like 1 second lol

wary willow
sharp sky
#

I am so distracted rn lol

lament ember
#

ping :/

sharp sky
#

From my coding

barren nacelle
#

Can we get multi 100 for 10 seconds because yall opened the Official Helpchat Youtube channel thonk ๐Ÿ˜Š

queen jewel
#

Trying to find one of the huge bm messages

lament ember
#

who pinged me and why xD

wary willow
#

@lament ember hello

queen jewel
#

wall time

muted fern
#

x-100?

sharp sky
#

Hello @lament ember

fallow crow
#

--100

sharp sky
#

Long time no see ๐Ÿ‘€

lament ember
#

hello

floral umbra
#

im down for a ----100

barren nacelle
#

X+=100;

muted fern
#

=xp @honest thistle

barren nacelle
#

Thats bette

honest thistleBOT
floral umbra
#

lol

queen jewel
#

x**100

wary willow
#

several people typing ...

barren nacelle
#

Ah sheesh

lament ember
#

lol

wary willow
#

=xp 532800069565546496

honest thistleBOT
wary willow
#

=xp clip

honest thistleBOT
barren nacelle
#

X*=100 * 1883

muted fern
#

love how the christmas overlay is perfectly fine

sharp sky
#

I keep getting habit of typing =daily everytime I go to #bot-commands ..

lament ember
#

Varias personas estรกn escribiendo

queen jewel
#

xD

muted fern
#

=daily

honest thistleBOT
#

@muted fern,

โŒ› Hold up...

You already claimed your daily reward for today!

floral umbra
#

noob

velvet crescent
#

=xp

honest thistleBOT
velvet crescent
#

Oh well

muted fern
#

hows everyones advent claiming going?

wary willow
#

=xp

honest thistleBOT
uneven tree
#

.

wary willow
#

Frostyy stay thgere

boreal escarp
wary willow
#

no one likes you

lament ember
#

I see you have a new role btw @muted fern

barren nacelle
queen jewel
#

Firstly, it's a compiler hack. The Java compiler isn't intended to be used like that and so it can cause compiliation errors, or worse:
I was working with a project using Lombok recently and method references for a lombok generated method were causing some pretty difficult to debug runtime errors.

Secondly, it requires an IDE plugin. You have to properly configure your build tools and IDE to avoid hundreds of errors, and installing an IDE plugin + setting up annotation processing takes time, especially if you're inexperienced.

Generated code also doesn't show up in Javadocs, so unless users have source code available it's going to look like nothing is accessible

If Lombok's code generation does something unintended, it can be difficult to debug, and usually requires you to remove the annotations and do a certain impl manually anyway. However, once you get used to this it's very discouraging to do, so it's easy to rewrite an entire class just to make it work with Lombok

There's also an extra degree of complexity with Lombok. Java is supposed to be explicit, and transparent. If you don't notice an annotation at the top of a class, it's easy to wonder where a method is coming from, or why a field is never initialized.

It also can be harder to work with. Again recently, IntelliJ couldn't find usages of a constructor, because as far as it was concerned, there was no constructor - Lombok generated it - meaning I had to find every usage of the class and search for a constructor which wasted a lot of time.

A final, slightly petty point: Lombok'ed bytecode doesn't match the source code (obviously), but it means a pretty annoying IJ warning (look at BungeeCord source for example)

Lombok may seem good in the short term, but it comes with a heavy price. Favour IDE generated boilerplate, or consider using a language like Groovy or Kotlin if you really dislike boilerplate.

wary willow
#

oh lmao got 3k ahead of Frosty

muted fern
#

you get a prize if you claimed them all

queen jewel
#

xD

barren nacelle
#

;-;

uneven tree
#

Fuck I missed one

velvet crescent
#

Atleast you didn't ping Bomp Yugi

queen jewel
boreal escarp
#

Firstly, it's a compiler hack. The Java compiler isn't intended to be used like that and so it can cause compiliation errors, or worse:
I was working with a project using Lombok recently and method references for a lombok generated method were causing some pretty difficult to debug runtime errors.

Secondly, it requires an IDE plugin. You have to properly configure your build tools and IDE to avoid hundreds of errors, and installing an IDE plugin + setting up annotation processing takes time, especially if you're inexperienced.

Generated code also doesn't show up in Javadocs, so unless users have source code available it's going to look like nothing is accessible

If Lombok's code generation does something unintended, it can be difficult to debug, and usually requires you to remove the annotations and do a certain impl manually anyway. However, once you get used to this it's very discouraging to do, so it's easy to rewrite an entire class just to make it work with Lombok

There's also an extra degree of complexity with Lombok. Java is supposed to be explicit, and transparent. If you don't notice an annotation at the top of a class, it's easy to wonder where a method is coming from, or why a field is never initialized.

It also can be harder to work with. Again recently, IntelliJ couldn't find usages of a constructor, because as far as it was concerned, there was no constructor - Lombok generated it - meaning I had to find every usage of the class and search for a constructor which wasted a lot of time.

A final, slightly petty point: Lombok'ed bytecode doesn't match the source code (obviously), but it means a pretty annoying IJ warning (look at BungeeCord source for example)

Lombok may seem good in the short term, but it comes with a heavy price. Favour IDE generated boilerplate, or consider using a language like Groovy or Kotlin if you really dislike boilerplate.

I agree with you @queen jewel

eternal apex
#

damn api.extendedclip gets more unique viewers per 24 hours than helpch.at in a month

queen jewel
#

lol

wary willow
#

Firstly, it's a compiler hack. The Java compiler isn't intended to be used like that and so it can cause compiliation errors, or worse:
I was working with a project using Lombok recently and method references for a lombok generated method were causing some pretty difficult to debug runtime errors.

Secondly, it requires an IDE plugin. You have to properly configure your build tools and IDE to avoid hundreds of errors, and installing an IDE plugin + setting up annotation processing takes time, especially if you're inexperienced.

Generated code also doesn't show up in Javadocs, so unless users have source code available it's going to look like nothing is accessible

If Lombok's code generation does something unintended, it can be difficult to debug, and usually requires you to remove the annotations and do a certain impl manually anyway. However, once you get used to this it's very discouraging to do, so it's easy to rewrite an entire class just to make it work with Lombok

There's also an extra degree of complexity with Lombok. Java is supposed to be explicit, and transparent. If you don't notice an annotation at the top of a class, it's easy to wonder where a method is coming from, or why a field is never initialized.

It also can be harder to work with. Again recently, IntelliJ couldn't find usages of a constructor, because as far as it was concerned, there was no constructor - Lombok generated it - meaning I had to find every usage of the class and search for a constructor which wasted a lot of time.

A final, slightly petty point: Lombok'ed bytecode doesn't match the source code (obviously), but it means a pretty annoying IJ warning (look at BungeeCord source for example)

Lombok may seem good in the short term, but it comes with a heavy price. Favour IDE generated boilerplate, or consider using a language like Groovy or Kotlin if you really dislike boilerplate.
@queen jewel COOOL

sharp sky
#

I am way back behind...

eternal apex
#

pls

queen jewel
#

LMAO

muted fern
#

pls no copa pasta

queen jewel
lament ember
#

Lombok is a hack yeah

muted fern
#

will unleash the hound

floral umbra
#

lombok good

boreal escarp
#

creepy pasta

wary willow
#

just quoting

#

no copy pasting

#

yes

#

of course funny

eternal apex
#

copypastas are getting deleted

wary willow
#
So the story of my life:```
#

lets start typing poems

#

lmao

fallow crow
#

no

#

the end

lament ember
#

Lombok seems really nice on the surface, but once you look further in to it, it starts to unfold and collapse

muted fern
#

quickly type the first word that comes to mind

lament ember
#

if you want less boilerplate, try using Kotlin ๐Ÿ˜‰

floral umbra
#

penis

wary willow
#

yes

queen jewel
#

Mind

wary willow
#

tree

barren nacelle
#

cube

floral umbra
#

i dont think we get xp for like 1 word

muted fern
#

you all failed

floral umbra
#

this is a scam

fallow crow
#

lol

sharp sky
queen jewel
wary willow
#

we are all some failures

floral umbra
#

true

queen jewel
velvet crescent
#

The feeling when barry was down so we all missed an advent day

queen jewel
#

tbh sounds like a suicide prevention hotline

barren nacelle
#

๐Ÿ‘

queen jewel
lament ember
#

@muted fern one was not informed of the challenge that one was assigned to complete, therefore one cannot have failed said challenge

muted fern
#

You were suppose to say polypsychic

wary willow
#

polypsychic

#

did it

queen jewel
wary willow
#

what do I win?

barren nacelle
eternal apex
#

d;polypsychic

wind sageBOT
#

There was no direct match for that query, did you mean any of the following?: java.security.PolicySpi java.security.Policy java.awt.font.GlyphMetrics javax.swing.text.GlyphView org.omg.CORBA.BAD_POLICY

sharp sky
#

Lmao

wary willow
#
java.security.PolicySpi
java.security.Policy
java.awt.font.GlyphMetrics
javax.swing.text.GlyphView
org.omg.CORBA.BAD_POLICY```
queen jewel
#

polywhirl?

wary willow
#

lmaoooo

#

don't delete it funnycube

queen jewel
#

xD

wary willow
#

xD

#

we all saw that

muted fern
#

i didnt

#

barry does

wary willow
#

ah

velvet crescent
#

Saw what?

wary willow
#

xD

queen jewel
#

ha

muted fern
#

pretty sure thats broken

barren nacelle
#

=op

muted fern
#

having many souls or modes of intelligence.

wary willow
#

its not a word

lament ember
#

looks like the Google API hook is broken

muted fern
#

I have several modes of intelligence

lament ember
#

debatable

queen jewel
#

What is your default?

wary willow
#

yes

#

several modes

#

just not any at the same level or higher as a human

queen jewel
#

modular

muted fern
queen jewel
#

damn

#

a 5?

#

the mode 5?

sharp sky
#

Short question

muted fern
#

Mode 5

lament ember
#
default void funnyCube() {
    // do nothing xD
}
queen jewel
#

THE mode 5?

muted fern
#

Throw me into a void why dont you

sharp sky
#

Is sharing screen on discord mobile just like Go Live already? thonk

muted fern
#

That's just rude

wary willow
#
fun funnyCube() { 
  return 
}```
lament ember
#

lol

muted fern
#

How fun is your cubes

lament ember
#

just remove the return

wary willow
#

very fun

muted fern
#

Mine are ice cold

queen jewel
#
fun nyCybe() = null!!
barren nacelle
#

Not enough

lament ember
#

I only used the Java one because it contains the default keyword and @queen jewel said default lol

#
fun nyCube() = Unit
queen jewel
#

NPE

lament ember
#

that better

muted fern
#

How do you make a tissue dance?

lament ember
#

for those of you who don't understand Kotlin, Unit is basically the same as void

barren nacelle
#

Blow at it CoolFlushed

muted fern
lament ember
#

get out

#

actually get out

barren nacelle
#

=ban

lament ember
#

transfer the server to piggy and leave lol

queen jewel
#

Vote to ban cube

honest thistleBOT
#
๐Ÿ”จ The hammer has been swung.

@barren nacelle Banned!

barren nacelle
#

๐Ÿ˜ญ๐Ÿ˜ญ

lament ember
#

oh I love that GIF

muted fern
#

Why did the maths book look so sad?

muted fern
barren nacelle
#

๐Ÿงข

wary willow
#

fuck I was working on something and now I don't remember what it was.

#

=joke

#

soonโ„ข๏ธ ?

muted fern
#

ah yes

barren nacelle
wary willow
#

=dadjoke

lament ember
wary willow
#

gottem

muted fern
#

adding dad jokes to barr

#

one moment

wary willow
#

yess

#

thank you funnycube

wary willow
#

why

#

xD

lament ember
wary willow
#

my idea!

muted fern
#

should be done shortly

wary willow
#

please

lament ember
#

who are you and what have you done with cube?

wary willow
#

give me my respect

muted fern
#

ill double time it

queen jewel
woven prairie
#

Holy shxt, that sucks man ๐Ÿ˜ฎ

wary willow
#

oh

#

took me a while

fallow crow
#

oh my god

wary willow
#

:)))))

fallow crow
barren nacelle
#

"Dad, did you get a haircut?" "No, I got them all cut!"

queen jewel
#

๐Ÿ˜‚

muted fern
#

b=joke

night walrusBOT
#
Ha!

Why did the octopus beat the shark in a fight? Because it was well armed.

wary willow
#

b=joke

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

queen jewel
#

Alpha Barry where?

wary willow
#

...

fallow crow
wary willow
#

=joke

muted fern
#

ill push it live

#

one sec

floral umbra
#

beta barry lo

fallow crow
#

BETA BARRY?????

sharp sky
#

It's weird putting the word "Ha!" as the embed title

fallow crow
#

HE'S ALIVE

barren nacelle
#

๐Ÿคฏ

queen jewel
#

=joke

muted fern
fallow crow
#

a dollar

floral umbra
#

FunnY JoKE

muted fern
#

"Hey son,"?

fallow crow
#

lol yes

floral umbra
#

if its a dad joke yes

sharp sky
#

Yes ๐Ÿ‘€

floral umbra
#

b=dadjoke

night walrusBOT
#

@floral umbra,

Development mode!

You can't use my commands whilst I'm in this mode.

queen jewel
#

inequal representation

wary willow
#

b=barrysucks

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

queen jewel
#

try: "Hey Them,"

wary willow
#

b=

barren nacelle
#

b=help

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

#

@barren nacelle,

Development mode!

You can't use my commands whilst I'm in this mode.

wary willow
#

b=

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

wary willow
#

lmao

#

b==

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

wary willow
#

b==a

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

queen jewel
#

b==rrrrr

night walrusBOT
#

@queen jewel,

Development mode!

You can't use my commands whilst I'm in this mode.

floral umbra
#

=brrrrrr

magic summit
#

.....

wary willow
#
b=10```
barren nacelle
#

b=yes

night walrusBOT
#

@barren nacelle,

Development mode!

You can't use my commands whilst I'm in this mode.

wary willow
#

b=10

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

sharp sky
#

nothing ๐Ÿ‘€

barren nacelle
#

B=dadjoke

wary willow
#

b=10
c=3
println(b-c)

night walrusBOT
#

@wary willow,

Development mode!

You can't use my commands whilst I'm in this mode.

floral umbra
#

everything

wary willow
#

yes

#

you missed

#

everything

#

that happened

#

in the time you were gone

#

makes sense

barren nacelle
#

๐Ÿงข

floral umbra
#

its literally facts

muted fern
#

=joke

honest thistleBOT
#
He son,

Sometimes I tuck my knees into my chest and lean forward. Thatโ€™s just how I roll.

floral umbra
#

he son

muted fern
#

he son

barren nacelle
muted fern
#

my god

barren nacelle
#

=joke

honest thistleBOT
#
He son,

I used to hate facial hair, but then it grew on me.

floral umbra
#

lmfao

fallow crow
#

He son

floral umbra
#

these are funny

fallow crow
#

lol

sharp sky
#

he son

floral umbra
#

=joke

honest thistleBOT
#
He son,

Can a kangaroo jump higher than the Empire State Building? Of course. The Empire State Building can't jump.

lament ember
#

"He son"

barren nacelle
#

=joke

fallow crow
#

oh my god

honest thistleBOT
#
He son,

Where did Captain Hook get his hook? From a second hand store.

floral umbra
#

=dadjoke

honest thistleBOT
#
He son,

Do I enjoy making courthouse puns? Guilty

fallow crow
#

this is so bad

wary willow
#

=joke

honest thistleBOT
#
Hey son,

Whatโ€™s the advantage of living in Switzerland? Well, the flag is a big plus.

muted fern
#

fixed typo

fallow crow
#

bro no

barren nacelle
#

=where-is-dad

floral umbra
#

git commit -m "fix typo"

lament ember
#

well that's one for the archives

fallow crow
#

this was a mistake

sharp sky
#

=joke

honest thistleBOT
#
Hey son,

Why did the kid throw the clock out the window? He wanted to see time fly!

wary willow
#

where did you get all these jokes from?

#

=joke

honest thistleBOT
#
Hey son,

What do you call an Argentinian with a rubber toe? Roberto

fallow crow
#

BRO why an argentinian

#

no

#

not me

floral umbra
wary willow
#

=joke

honest thistleBOT
#
Hey son,

Why did the coffee file a police report? It got mugged.

queen jewel
#

=joke

honest thistleBOT
#
Hey son,

What did the green grape say to the purple grape?
BREATH!!

barren nacelle
#

=joke

honest thistleBOT
#
Hey son,

What did the father tomato say to the baby tomato whilst on a family walk? Ketchup.

queen jewel
#

=joke

honest thistleBOT
#
Hey son,

What kind of pants do ghosts wear? Boo jeans.

eternal apex
#

cube

#

while you're at it

sturdy bobcat
#

I hate this

eternal apex
#

can u add a drama generator

barren nacelle
fallow crow
sharp sky
#

What is "boo jeans" lol

wary willow
#

=joke

barren nacelle
#

=joke

honest thistleBOT
#
Hey son,

What is the hardest part about sky diving? The ground.

#
Hey son,

I don't trust stairs. They're always up to something.

sturdy bobcat
#

blue jeans

barren nacelle
#

Lmfaoooo

muted fern
#

that involves more effort than this did

floral umbra
#

@muted fern how does barry dev mode work? is it like the dev branch is development mode barry then its pushed to master and it auto updates with ci/cd?

queen jewel
#

Make barry self aware

eternal apex
#

no it doesn't cube

#

just copy text

#

ez

fallow crow
#

oh my fucking god this is so bad

wary willow
#

=joke

honest thistleBOT
#
Hey son,

I gave all my dead batteries away today, free of charge.

wary willow
#

=dadjoke

floral umbra
#

=joke

honest thistleBOT
#
Hey son,

Some people say that comedians who tell one too many light bulb jokes soon burn out, but they don't know watt they are talking about. They're not that bright.

#
Hey son,

Just watched a documentary about beaversโ€ฆ It was the best damn program Iโ€™ve ever seen.

muted fern
muted fern
#

no we dont lol

eternal apex
#

i made that :3

fallow crow
#

Luck spams people should accept nossr50, causing adf.ly
kekw

barren nacelle
#

=joke

honest thistleBOT
#
Hey son,

I was going to learn how to juggle, but I didn't have the balls.

barren nacelle
#

๐Ÿ’€

#

=joke

honest thistleBOT
#
Hey son,

To the person who stole my anti-depressant pills: I hope you're happy now.

wary willow
#

noooo

eternal apex
#

Tux joins governments around to world to ruin GroupManager

fallow crow
#

he didn't manually add them one by one lol

wary willow
#

why the hell would it even be a thing?

#

then

floral umbra
barren nacelle
#

=joke

honest thistleBOT
#
Hey son,

I am terrified of elevators. Iโ€™m going to start taking steps to avoid them.

wary willow
#

no its not

velvet crescent
#

=joke

wary willow
#

jokes are good

honest thistleBOT
#
Hey son,

A red and a blue ship have just collided in the Caribbean. Apparently the survivors are marooned.

wary willow
#

=dadjoke

honest thistleBOT
#
Hey son,

I was thinking about moving to Moscow but there is no point Russian into things.

floral umbra
#

it will lol

eternal apex
wary willow
#

we're just kids having fun lmao

barren nacelle
#

=dadnoke

#

=dadjoke

honest thistleBOT
#
Hey son,

I heard there was a new store called Moderation. They have everything there

wary willow
#

ok then watch us having fun

#

lmao

#

=joke

honest thistleBOT
#
Hey son,

What did the beaver say to the tree? It's been nice gnawing you.

barren nacelle
#

There should be nan jokes

velvet crescent
#

Barry you need to die with these trashy jokes

floral umbra
#

@muted fern programming jokes from r/programmerhumor

wary willow
#

=multi

honest thistleBOT
#
Your XP Multiplier:
barren nacelle
#

Because you suck stuff

fallow crow
#

=joke

honest thistleBOT
#
Hey son,

What is red and smells like blue paint?
Red paint!

eternal apex
#

wait what happened to the second 8

barren nacelle
#

I got scammed

#

Lol you dont even got a life to suck it

muted fern
eternal apex
#

see cube it's basically the same thing

wary willow
#

lmaoo

eternal apex
#

drama gen should be ez to add

muted fern
barren nacelle
#

Its a fact not only true

eternal apex
#

is there an npm library lol

muted fern
eternal apex
#

well hope isn't lost

#

drama generator is made in js

#

just copy the file over

#

run the function

#

ez

barren nacelle
#

npm install dadjokes --save

muted fern
#

o god

eternal apex
wary willow
barren nacelle
eternal apex
#

o

wary willow
muted fern
#

shh

barren nacelle
#

But nan jokes ๐Ÿ˜

fallow crow
#

=joke

honest thistleBOT
#
Hey son,

Why does a Moon-rock taste better than an Earth-rock? Because it's a little meteor.

wary willow
fallow crow
#

what

eternal apex
#

don't eat moon rocks they make you very ill

#

-cave johnson

fallow crow
#

^

wary willow
#

ah do they?

floral umbra
#

=cavejohnsonquote

eternal apex
#

yes

wary willow
#

good to know

eternal apex
#

have you guys seen the heimlich counter-maneuver?

#

it's great

#

very promising

muted fern
#

k ima go sleep

floral umbra
#

ayo?

wary willow
#

include in barry ^

muted fern
#

pig wants spigot drama

floral umbra
#

^ that one is easy tto use

muted fern
#

not rando drama

wary willow
#

just read

#

its good

floral umbra
#

you can customize it

wary willow
#

we can add our own drama

#

to it

fallow crow
#

nighty

muted fern
#

pr barry

#

ez

wary willow
#

he fell for it and he's struggling to not say it xD

floral umbra
#

OS barry ๐Ÿ‘€

barren nacelle
#

=joke

honest thistleBOT
#
Hey son,

What lies at the bottom of the ocean and twitches? A nervous wreck.

muted fern
#

barry is os to a certain amount of people

#

<o/

wary willow
#

me

#

I'm a certain amount of people

#

(โ•ฏยฐโ–กยฐ๏ผ‰โ•ฏ๏ธต โ”ปโ”โ”ป

proper fableBOT
#

โ”ฌโ”€โ”ฌ๏ปฟ ใƒŽ( ใ‚œ-ใ‚œใƒŽ)

muted fern
#

any how

#

peace out

wary willow
#

bye

muted fern
#

enjoy

wary willow
#

gn

muted fern
#

=joke

honest thistleBOT
#
Hey son,

If at first you don't succeed, sky diving is not for you!

wary willow
#

I think I'll leave as well

magic summit
eternal apex
#

ye

#

should do

fallow crow
#

Patreon freezes Turbotailz's account
kekw

wary willow
#

omg

barren nacelle
#

-.-

wary willow
#

yes

#

of course

#

even added coockeies to the rick roll

#

cookies *

#

lmao

#

its an actual article

barren nacelle
#

Rip snoop

fallow crow
#

that fr?

eternal apex
#

yeah

wary willow
#

just read ... you'll see for yourself

eternal apex
#

rip

stray sedge
#

it isnt

#

fuck you Blitzz ๐Ÿ˜ฆ

wary willow
fallow crow
#

lol yeah totally not real url

wary willow
#

its actually real url

stray sedge
#

it is a real url

fallow crow
#

well duh

wary willow
#

xD

fallow crow
#

you know what I mean

stray sedge
#

just a stupid videoo playing

barren nacelle
#

Snoop got ricked rolled

stray sedge
#

going to take down that video

fallow crow
#

lol

barren nacelle
#

-...-

wary willow
#

old but gold

velvet crescent
#

Blitz fuck off

#

I remember that link

wary willow
#

you do?

#

rly/

#

ah

#

oh no spigot down?

#

or is it just for me

stray sedge
#

same

eternal apex
#

works for me

wary willow
#

for me it doesn't work on any links

#

ah it came back lmao

velvet crescent
wary willow
#

yes

#

if its first time onlyt

#

tho

#

so if you've purchased spotify before I think it won't owkr

#

work*

stray sedge
velvet crescent
#

I get this shit twice a week

fallow crow
#

same

#

But I have a spotify account with all 4 of my gmail accounts so I could like reuse the free trial

#

so I get like 4 emails at once like twice a week

sullen sorrel
#

yes

eternal apex
#

how

stray sedge
velvet crescent
#

:what:

barren nacelle
#

@fallow crow, I'm not threatening you because you blocked me? Who cares about you? And I am not threatening you. I am just saying don't try to play with me unless you'll see something you wouldn't like.

#

What would I lose lol?

#

It will fuck your life not mine

#

I havent done anything wrong

velvet crescent
#

Can you take it to DMs because shit get's real fingerguns

long summit
#

Those were definitely threats and right after you said you weren't you threat again
So i suggest you tone that down

barren nacelle
barren nacelle
long summit
barren nacelle
#

I said I am ending it here, if you dont want then I wont stop

feral obsidian
barren nacelle
feral obsidian
#

This is most certainly a threat

fallow crow
#

period

barren nacelle
#

Can you stop

long summit
fallow crow
#

efe

#

you're not helping yourself

eternal apex
#

salty salty

#

shut up or i'll ban

#

go to dm

sullen sorrel
sharp sky
#

Oh wait I remembered

sullen sorrel
#

?

sharp sky
#

=remindme 28d remember to cancel my free nitro sub

honest thistleBOT
#
Reminders | Invalid Args

Missing Quotes
Usage: =remindme <time> "<message>"
eg. =remindme in 5 hours "to feed the Llama"

sharp sky
#

Bruh

sullen sorrel
#

lol

#

how does it remind?

#

bc i have DMs off

eternal apex
#

tags you in bot commands

sullen sorrel
#

o

#

hmm

#

ill think about it ๐Ÿ˜

eternal apex
#

average

sullen sorrel
#

โ“

sharp sky
#

You still need to reach tier V to at least use the remind thing, I guess?

eternal apex
#

=roleperks

honest thistleBOT
eternal apex
#

yep

woven prairie
#

=remind

honest thistleBOT
#
Reminders | Usage

Usage: =remindme <time> "<message>"
eg. =remindme in 5 hours "to feed the Llama"

long summit
#

@fallow crow Anything above tier 2 can react to stuff, no?

fallow crow
#

in here yes

long summit
#

I am not sure what tier it is

#

=tier perk

honest thistleBOT
#
Your Current Level Tier

Let's see how far along you are:

Current Tier:

Tier VI

Contains Levels:

50 - 59

long summit
#

Forgot the command

fallow crow
#

=perks

velvet crescent
fallow crow
#

mm

#

aa

long summit
#

=roleperks

eternal apex
#

?

#

not =

long summit
#

?roleperks

honest thistleBOT
long summit
#

There you go, ty

sullen sorrel
#

o

#

lol

#

technoblade potato

#

thats literally the only skyblock videos i watched

#

technoblade potato series

#

lol

#

i prefer skyblock with challenges

#

challenge -> get items -> do more challenges -> repeat

#

no weird items

#

no custom items

#

just simplicity

#

like duels

#

:>

#

i have a 8% or something win chance in bw

#

and like 90 something wins

#

lol

normal sable
#

does anyone know how to fix a cracked monitor?

#

...

sullen sorrel
#

o

#

^

floral umbra
#

rice

normal sable
#

um

#

here lemme show u the damage

wary willow
#

=joke

honest thistleBOT
#
Hey son,

My friend said to me: "What rhymes with orange" I said: "no it doesn't"

sullen sorrel
#

how do u see it

floral umbra
sullen sorrel
#

oh

#

im not on mc rn

floral umbra
#

=joke

honest thistleBOT
#
Hey son,

I used to work for a soft drink can crusher. It was soda pressing.

sullen sorrel
#

=joke

honest thistleBOT
sullen sorrel
#

=joke

honest thistleBOT
#
Hey son,

I considered building the patio by myself. But I didn't have the stones.

normal sable
#

=joke

honest thistleBOT
#
Hey son,

Without geometry life is pointless.

wary willow
#

that's nothing lmaoo

#

I used to have like 50 days on my survival server

woven prairie
#

O

sullen sorrel
#

what is that-

wary willow
#

wait 70 I think is the most I got to

woven prairie
sullen sorrel
#

sheep

floral umbra
#

horse

normal sable
#

sheep gang ๐Ÿ‘‡

sullen sorrel
#

sheep ftw

#

rip horse

woven prairie
#

The council will decide your fate

wary willow
#

omg hand reveal

queen jewel
#

The council is dead

#

or was

normal sable
#

hey guys srs question

#

what are ur thoughts on seafood

queen jewel
#

ew

normal sable
#

just ew?

floral umbra
#

i like it when i catch it myself

#

when its fresh

velvet crescent
#

Blitz get gud, I've gotten a face reveal from him already

floral umbra
#

plushy reveal

velvet crescent
#

I even got a cable management reveal and I was disgusted

sharp sky
#

@normal sable it's fine

#

I had them like all the time

woven prairie
velvet crescent
#

check snap weeb

#

What a sexy eye

woven prairie
#

๐Ÿ˜ฎ

trim raft
#

Eye

#

Reveal

velvet crescent
#

I sent him an even better reveal

queen jewel
#

Didnt gian already facereveal in #showcase once?

queen jewel
velvet crescent
#

I think Charlie posted that, when they met up a while back

trim raft
normal sable
#

I wanna make a server so bad but don't want it to end up going nowhere and lose all my money like last time ๐Ÿ˜”

queen jewel
#

I have no idea who charlie is btw

velvet crescent
#

Chazza?

queen jewel
#

Still no idea

velvet crescent
#

What a rando

queen jewel
#

xD

woven prairie
#

nice food

queen jewel
#

Havent seen anyone with that name talk here recently

normal sable
velvet crescent
#

He hasn't been in here for like 8 months ish I think

normal sable
#

yikes

queen jewel
#

yea I have been here for like less than 8 months I think

woven prairie
#

Not photoshopped

trim raft
queen jewel
woven prairie
#

๐Ÿ˜ฎ

queen jewel
#

Thats clearly a hologram

velvet crescent
#

You want sum feet pics Gian?

trim raft
woven prairie
#

๐Ÿ˜ฎ

trim raft
#

Frosty

#

TheSnowman

#

Pls

velvet crescent
#

Is there a placeholder which shows how long a player has been online for?

#

@wary willow You probs know this

woven prairie
#

%how_long_have_i_been_online_for%

wary willow
#

there is I'm 99% sure

#

xD

#

no idea which one it is

velvet crescent
#

Just imagine if this was the PAPI support discord, just imagine

jade oasis
#

i am the reveal god

sullen sorrel
jade oasis
#

mfw frosty accidentally turns on his camera

fallow crow
jade oasis
#

lmaooo

sullen sorrel
#

what is mfw

velvet crescent
#

Scholtes, stfu lmao

floral umbra
velvet crescent
#

Idk what idiot decided to put that button next to it

#

Which expansion James

#

playtime I pressume?

floral umbra
#

its not available yet but im just adding it to a core plugin im writing lol

velvet crescent
#

I mean if the server stores it I'll add stuff like that to the next player expansion

#

Since ew having to have another plugin for just that

floral umbra
#

i dont think it stores it, but im already storing playtime stuff for other reasons so im just adding this cause its easy

fallow crow
#

a whole plugin for a single placeholder

#

yes

floral umbra
#

can the player expansion use the join/quit events

#

cause if it can its really easy to do

jade oasis
velvet crescent
#

Nope James

floral umbra
#

rip

velvet crescent
#

Odd that the server doesn't have that info

#

Since I mean it'd make sense to have it

sullen sorrel
#

do expansions have the spigot api?

jade oasis
#

as in papi placeholders?

sullen sorrel
#

yes

floral umbra
#

cause spigot sucks

velvet crescent
#

Anyone seen the v3 expansion yet?

#

That shit hella sexy

floral umbra
#

no?

jade oasis
#

no

floral umbra
#

what is it

velvet crescent
#

ein moment

jade oasis
#

frosty don't sexualize code

velvet crescent
#

when google opens

#

en trenutek

#

Better?

#

It's not no

jade oasis
#

thats a difficult question to answer

velvet crescent
#

Everywhere

jade oasis
#

literally

#

israel

floral umbra
#

my home israel

jade oasis
#

netherlands

#

5 years

#

just renewed my passport today lol

floral umbra
#

@velvet crescent google hella slow

#

smh

velvet crescent
#

I just opened github, gimme a bit smh

jade oasis
#

nah frosty is just

velvet crescent
#

hella sexy

floral umbra
#

oh what

#

thats wack

#

placeholders are their own method?

velvet crescent
#

Yus

floral umbra
#

what is PlaceholderContext

stray sedge
#

ghost tag?

velvet crescent
#

Sexy right?

floral umbra
#

yea it looks nice

velvet crescent
#

Context being what you're given right now, ie. Player and param String

floral umbra
#

although it is a bit more verbose than something like

return when (id) {
    "a" -> "b"
    "c" -> "d"
}```
#

ah ok

velvet crescent
#

I mean the above get's messy quick, especially when you have like 40 placeholders

floral umbra
#

yea

velvet crescent
#

Just look at the current expansions

floral umbra
#

my player pr just getting ignored sad1

#

forgot i made that lmao

sullen sorrel
#

why are there two IV roles

wary willow
#

what?

#

what u got?

bright patrol
#

How do I claim the giveaway I won?

velvet crescent
#

You message the giveaway provider

sullen sorrel
#

:C

wary willow
#

yes

#

you can

#

yes!! you can

#

nice

wary willow
velvet crescent
#

I have 1

#

but I've no idea who

wary willow
#

me neither lmao

barren hatch
#

i dont like any of them

fallow crow
#

you tell me, my recommendations are pretty accurate lmao

barren hatch
#

ive never done anything related to any of those on spotify

vast fossil
#

Ive got the same thing

#

Like literally the same shows

#

And i dont like them

fallow crow
#

Yes

native plaza
#

Which is the best way to do Rollbacks
Like which plugin
or what to do in case i need it

fallow crow
#

CoreProtect?

light scaffold
#

MittenProtect

stray sedge
#

what does TM mean

fallow crow
#

Trademark

stray sedge
#

aah

long summit
#

Gabyโ„ข๏ธ

#

He trademarked his name

boreal escarp
#

haha

sullen sorrel
#

โ„ข๏ธ

#

โ„ข๏ธ

#

woah

#

:tm:

#

are there any other sEcReTs

normal sable
#

When you click on the bot it doesnโ€™t have any roles

sullen sorrel
#

those are webhooks

normal sable
#

Webhooks?

#

How does that work tho

light scaffold
#

๐Ÿ˜Ž ๐Ÿ‘

wary willow
#

you scamming kids again efe? :kappa:

normal sable
#

How does it feel to have nitro? ๐Ÿ˜”

wary willow
#

wait

#

how many xbox passes you bought?

#

xD

#

lmao

normal sable
#

WAIT

#

WAIIITTTT

#

Sorry

#

anyway

#

I have Xbox game pass

#

No.. Iโ€™m gonna get that for a $1 next year

#

Next month*

fallow crow
#

Next month is next year

#

:^)

normal sable
#

Omg ur right

#

Facts

#

I need ultimate tho?

#

Sucks

#

Ok imma go figure something out

#

I only bought it for sea of thieves

#

But ig I have nitro now

#

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

#

Not too much iirc

#

It took an hour for me

#

Itโ€™s not as much as I expected for a game like sea of thieves

#

Canada

#

Germany pog ๐Ÿ˜ฏ

sullen sorrel
#

USA = ๐Ÿ˜„

#

:C

#

๐Ÿ˜ฆ

normal sable
#

Nope

#

USA bad

#

Well

#

USA decent

#

Iโ€™ve never been so I couldnโ€™t tell you

#

I am what

#

Nope too late

sullen sorrel
#

huh?

normal sable
#

Now u gotta tell me

#

Hehe

#

My monitor cracked af

#

I should probably replace it

fallow crow
#

And this is ur mum *insert picture of the Jupiter*

#

Yes

#

The Jupiter

#

:^)

#

Okay stfu

magic summit
wary willow
#

oh I'm doing so bad

wary willow
#

we lost 16-14

#

he had 43 kills lmao

#

what?

#

tic tac toe

#

is already in cs:go

#

ah you mean you coded it while palying cs:Go?

#

that makes a lot more sense

#

I never actually try making a program

#

using kotlin ya know.

#

I should start making something

queen jewel
#

Keylogger

wary willow
#

Trojan Horse

#

don't

queen jewel
#

Hax

wary willow
#

yes Keylogger

#

OMG

queen jewel
#

efe scamz

wary willow
#

the dev of Duels just updated the plugin

queen jewel
#

what?

#

oh

wary willow
#

after like 8 months

queen jewel
#

spigot plugin

wary willow
#

of nothing

queen jewel
#

Ill try in the morning ef

#

its 3 am

fallow crow
#

key logger ip logger worms

wary willow
#

what you using to make the apps efe?

fallow crow
queen jewel
#

Qatar

wary willow
#

ugh

#

QATAR

#

I got it

#

no I didn't

fallow crow
#

ooo

wary willow
#

fuck

queen jewel
#

lol

fallow crow
#

yeah it's like Qatar but louder

#

QATAR

wary willow
#

ah yes Snake. the game of the year

queen jewel
#

Snake 4D

fallow crow
#

I can send you a test jar :^)

wary willow
#

how the hell does that even work? xD

queen jewel
#

with VR and AR suppourt

queen jewel
#

It just exists

#

its not in our 4d frame

#

so we cant see or use

#

but it exists

#

You can just search up java key loggers in github efe

#

gn

fallow crow
#

nighty

queen jewel
#

Oh wait

#

Tf

wary willow
#

did you know that google can make calculate using different currencies ?

queen jewel
#

Mann

wary willow
#

Like you can do 1 USD + 0,6 EUR

queen jewel
#

I still have Indian time zone on my pc

#

Its only 12:30

#

LMAOoOOO

wary willow
#

and it will tell you 1,72 USD

queen jewel
#

Welp I guess ill go to sleep either way, too lazy to put everything back on

mellow zinc
#

4 kb/s kek

sullen sorrel
#

๐Ÿ˜ฎ

#

80 mbps ftw

#

aka 10 mBps

fallow crow
#

\o/