#off-topic

1 messages · Page 425 of 1

pure quarry
#

Did you see the permissions placeholder feature by any chance?

#
settings:
    player-placeholders: true # Enables or disables player placeholders.
    server-placeholders: true # Enables or disables server placeholders.
    command-reload: true # Enables or disables /phc reload, which reloads the plugin and updates/adds/removes placeholders in the config files.
    command-overall: true # Enables or disables /phc overall.
    command-permission: 'phc.admin' # Allows server owners to use the /phc commands if they have this permission.
    permission-placeholders: true # Enables a feature where players can use the placeholder %phc_has_permission_[PERMISSION]% to return a boolean to see if that player has that specific permission.
#

permission-placeholders: ^^^^

pure bane
#

Ya we can add that too

pure quarry
#

Amazing!

#

Is this going to work with PlaceholderAPI 2.9.2?

pure bane
#

Why don’t you update. The latest should work on any version

#

Although this will work on 2.9

pure quarry
#

I can’t update yet... the majority of the plugins I have are from inactive developers unwilling to update their plugins

#

Slowly but surely, they’ll eventually all update! 😄

pure bane
#

Ah

pure bane
#

quick question

#

nvm

#

i cant do the command as /cp

#

pretty sure coreprotect registers that

regal juniper
#

Correct

jagged pollen
#

customp?

pure quarry
#

/cph - custom placeholder

jagged pollen
#

o yea

regal juniper
#

My dog is literally sitting on me in the car cause he's being a baby

naive agate
#

😮

regal juniper
#

Not bad

jagged pollen
#

noice

pure quarry
#

Awesome! 😄

#

Thank you so much!

pure bane
#

So question

#

Is it cool if I just stuff all the player config stuff in the same file

#

Basically I’m thinking I’ll have 2 sections in the config

#

One will be the key placeholders

#

Where u define the placeholder and the default value

#

Then another named data

#

Which will store the player uuid and then all the values for each placeholder

#

That they have set

#

Rather than have 3 files

#

Also thinking about making u define the expected type

#

In the config

#

That way there is not a bunch of logic to check what type it is

#

Ex
hello: string-hi

#

maintenance_mode: Boolean-true

#

Or something like that

#

Nvm you guys are all asleep

#

I’ll figure this out myself

#

Actually I’m doing this

jagged pollen
#

yea that would be good

pure bane
#

Hello:
type: string
value: hi

jagged pollen
#

little what i was typing

#

would be better i guess

#

And yea make values at the top and players data at the bottom if u don't want to make 2 files

pure bane
#

Ya

jagged pollen
#

so also people can change it from file if they dont want using the command

muted fern
#

hi

pure bane
#

Welcome

jagged pollen
#

Hey

pure bane
#

Command registration is working also

#

I’ll worry about the command stuff last

#

You know with this expansion and dm you can create your own currency

#

No vault needed

#

Gonna be sweet

pure quarry
#

Hey! I’m back... yeah, that would be awesome!

#

Maybe you could have all the variables with their variable types in separate folders! There would be two main folders with four .yml files in each:

Server: strings.yml, integers.yml, booleans.yml, and floats.yml.
Player: strings.yml, integers.yml, booleans.yml, and floats.yml.

Each .yml file would be similar to the example you showed us, clip. https://img.extendedclip.com/notepad%2B%2B_2019-05-26_20-42-08.png

Perhaps in the top of each file would be a short description of what the file is. Example: In the server’s folder, the strings.yml would have ```yaml

Strings that remain constant as a server variable are defined in this file. Ex. “test: hello world!”```

#

This system of organization would make the extension extremely user-friendly. Each file would have a simple explanation of what the file is for to avoid any confusion. The most basic server owners would understand it!

#

It could also be made more efficient: Different files represent different placeholder types, saving time from the previous system where you had to declare what type of variable it was. In addition, instead of reloading one big configuration file, perhaps you could do /cph reload server strings which would only reload server strings.

pure bane
#

i honestly dont think in terms of efficiency one file will affect anything. I think it will be more work loading/saving/storing the values if we go that route

#

rather than a single map for the key/value ill have to keep multiple maps for every one

pure quarry
#

Alrighty!

#

How about we have those two folders with those four files in them, but the extension takes the data from those files on startup or (full) reload? Then, when a placeholder is called to change, all placeholder data, both server and player, would’ve located in one big data.yml, outside of those two folders. Inside of data.yml, you can manually change player placeholders for each player by changing a variable in the text file. Values for each player would be located in data.yml so they can be easily changed by the plugin for efficiency... default placeholders and keys would be located in their respectful place in the two folders.

pure bane
#

don't mind me

#

just runing some debug tests right now

#

so far everything is good

#

the only way you can break the placeholder from returning the wrong type is if you manually change the config

#

command won't allow u to set the wrong type

#

but it wont break anything, just not load it since the value is wrong

pure quarry
#

AWESOME!

jagged pollen
#

noice clip

pure bane
#

Just trying to make the commands easy

pure quarry
#

😄

#

Why not make it like I had in my thread?

pure bane
#

I will be making the commands similar but I’m just getting the actual logic setup to not have to do a bunch of checks

#

Just let me work lol

pure quarry
#

xD

elfin minnow
#

@pure quarry why you takin forever to send a message

naive agate
#

lol

#

You writing a book?

pure quarry
#

Got two ideas:

  • Command that resets player data in a specific player placeholder! (“balance” is a player integer placeholder. /cph reset balance would make it so all player balances are set to the key value/default.)
  • For player integer placeholders, specific placeholders can be used to find what player has the highest integer between all the other players. For example, let’s say that the player placeholder “balance” is used as the server balance. This is what /baltop looks like:
glare -$2933
w1nst0n - $2834
funnycube - $1 ```

The placeholder `%cp_highest_user_2_balance%` would return the string “clip” and `%cp_highest_int_1_balance%` would return 37482. If we took `%cp_highest_user_2_balance%` it would be “glare” and `%cp_highest_int_2_balance%` would be 2933. You can also take the lowest balance of someone by doing `%cp_lower_user_1_balance%` which gets the name of the user with the lowest message. Let’s take a look at the placeholder:
```%cp_highest_user_1_balance%```
**cp** = custom placeholder
**highest** = lets the extension know it is looking for the highest value, not the lowest.
**user** = lets the extension know it is looking for the name of the player with the highest value of the placeholder. If this was “int”
**1** = lets the extension know it is looking for the #1 highest integer. If this was a different number, it would be the x highest. It this was a **lowest** placeholder, it would be x to the lowest.
**balance** = lets the extension know what player placeholder to analyze. Has to be a integer based player placeholder.

Thanks! 😄
elfin minnow
#

nou

#

denied

pure quarry
#

I cri

elfin minnow
#

ree

muted fern
elfin minnow
#

😭

muted fern
#
Get the amount of time the user has been typing in a channel for (in milliseconds), or -1 if they're not typing.```
#
/* Emitted whenever a user starts typing in a channel.```
pure quarry
#

xD

#

I wrote that for clip... I don’t think he saw ;-;

elfin minnow
#

xposed

muted fern
#

he missed it

elfin minnow
#

he saw it loud and clear kek

#

join Voice Chat Room 1

pure quarry
#

what channel do I talk in for the bc

#

Vc*

#

Oh oke ;D

#

Okeee

#

Yep

#

Alrighty! 😄

#

What did you think about the highest/lowest system?

#

...

#

;-;

#

Hm?

#

Alrighty!

muted fern
pure quarry
#

Oke

#

“We all can do what we want to it” (Lenny)

#

Someone tell me to study for finals

#

Ok

#

Sorry guys, got to go study for finals

jagged pollen
#

gl

muted fern
elfin minnow
#

why would you do this reeeeeeeeeeeeeeeeeeeeeeeaasda s asd asdasd chicken fish sticks kek

#

=uptime

honest thistleBOT
#
💜 Uptime:
15 hours, 20 minutes and 10 seconds
fallow crow
#

abv

pure quarry
#

Hey! I’m about to head to bed, but I just have to say something quickly. I like to think of myself as a person full of ideas. I happened to come up with the idea of custom placeholders, and I enjoy that I’m getting the help from you. However, when I share additional ideas I have about custom placeholders, I don’t mean to force you into doing them. I’m not one of those clients that order something specific and add onto it as the order goes on, and I never intend to be one of those people either. When I share ideas with other people, I’m just asking for their feedback on my idea, not to add onto an idea I already have. I’m sorry if anyone was confused as to what my intentions were.

I’m heading off now... cya! 😄

rocky escarp
#

next time suggest good idea like baltop

elfin minnow
fallow crow
#

oof

muted fern
#

=spin @elfin minnow

honest thistleBOT
#
XP Wheel Result...
fallow crow
#

unlucky

jagged pollen
#

@pure quarry clip now wants to make it simple for now which has the main idea u suggested with some of the additions u suggested, and we/he can add the other things later
It will be open source expansion so everyone can contribute. You can also make ur custom version if you want to.

muted fern
#

=multiplier

honest thistleBOT
#
New XP Multiplier...
fallow crow
#

unlucky

elfin minnow
#

OOF

#

=multi

#

=xp multi

honest thistleBOT
#
✳️ XP Multiplier!

Current Multiplier is x5

fallow crow
#

bad

jagged pollen
#

bad ;p? why lol

elfin minnow
#

Cube is a bully

#

Clip is the best developer I have ever met, he should totalyly give me some dank plugins

fallow crow
#

totalyly

muted fern
#

=multiplier

honest thistleBOT
#
New XP Multiplier...
elfin minnow
#

However, funnycube is also a great developer but wont tell us the cooldowns.

fallow crow
#

b=help

night walrusBOT
#

@fallow crow

Development mode!

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

elfin minnow
#

=xp

honest thistleBOT
muted fern
#

=multiplier

honest thistleBOT
#
New XP Multiplier...
elfin minnow
#

reeeeeeeee

muted fern
#

=multiplier

honest thistleBOT
#
New XP Multiplier...
muted fern
#

=multiplier

honest thistleBOT
#
New XP Multiplier...
muted fern
#

=multiplier

honest thistleBOT
#
New XP Multiplier...
fallow crow
#

=multiplier

#

=multiplier

#

=multiplier

muted fern
#

=xp multi 50

honest thistleBOT
#
✳️ XP Multiplier!

Set Global Multiplier to x50!

elfin minnow
#

Hey! I’m about to head to bed, but I just have to say something quickly. I like to think of myself as a person full of ideas. I happened to come up with the idea of custom placeholders, and I enjoy that I’m getting the help from you. However, when I share additional ideas I have about custom placeholders, I don’t mean to force you into doing them. I’m not one of those clients that order something specific and add onto it as the order goes on, and I never intend to be one of those people either. When I share ideas with other people, I’m just asking for their feedback on my idea, not to add onto an idea I already have. I’m sorry if anyone was confused as to what my intentions were.

muted fern
#

=xp multi 1

honest thistleBOT
#
✳️ XP Multiplier!

Set Global Multiplier to x1!

elfin minnow
#

=xp

honest thistleBOT
muted fern
#

=xp multi -1

honest thistleBOT
#
✳️ XP Multiplier!

Set Global Multiplier to x-1!

fallow crow
#

h

#

Hey! I’m about to head to bed, but I just have to say something quickly. I like to think of myself as a person full of ideas. I happened to come up with the idea of custom placeholders, and I enjoy that I’m getting the help from you. However, when I share additional ideas I have about custom placeholders, I don’t mean to force you into doing them. I’m not one of those clients that order something specific and add onto it as the order goes on, and I never intend to be one of those people either. When I share ideas with other people, I’m just asking for their feedback on my idea, not to add onto an idea I already have. I’m sorry if anyone was confused as to what my intentions were.

#

aa

#

ohshoot

muted fern
#

=xp multi 0

honest thistleBOT
#
✳️ XP Multiplier!

Set Global Multiplier to x0!

muted fern
#

=xp multi 1

honest thistleBOT
#
✳️ XP Multiplier!

Set Global Multiplier to x1!

rocky escarp
#

jenejebe

#

jejene

#

nekdne

#

jxken

muted fern
#

=spin @mossy saddle

honest thistleBOT
#
XP Wheel Result...
elfin minnow
#

=profile @mossy saddle

rocky escarp
#

=spin @pure quarry

#

ha

#

ban me and I will leave

elfin minnow
#

=-papi

#

-ping

muted fern
#

-ping

pale grotto
#

Don't be annoying

#

While in God's name is making the chat bounce

rocky escarp
#

use papi as DDoS attack vector

pale grotto
#

I'll make you bounce

honest thistleBOT
#
Online!

HelpChat Bots VPS is online and responding.

pale grotto
#

Off a clip

muted fern
#

=xpedit add @elfin minnow 10

honest thistleBOT
#

@muted fern, Done.

rocky escarp
#

can I have xp

elfin minnow
#

=xp

honest thistleBOT
muted fern
#

=db

honest thistleBOT
#

@muted fern

Invalid Arguments

=db <set> <table> <whereObj> <whereVal> <updateObj> <updateVal>
=db <get> <table> <whereObj> <whereVal> <getObj>

muted fern
#

=db set garys_levels user_id 272178929572511744 lvl -100

honest thistleBOT
#

@muted fern

I found nothing...

I couldn't find anything using those parameters, so nothing was changed.

rocky escarp
#

can you set me to level A

muted fern
#

=db set gary_levels user_id 272178929572511744 lvl -100

honest thistleBOT
#

@muted fern

Updated!

The requested value was updated.

rocky escarp
#

just change to string

elfin minnow
#

=xp

honest thistleBOT
elfin minnow
#

=level

honest thistleBOT
elfin minnow
#

=level

honest thistleBOT
elfin minnow
#

=level

honest thistleBOT
elfin minnow
#

-level

regal juniper
#

Nice.

elfin minnow
muted fern
#

=db set gary_levels user_id 272178929572511744 lvl -10000

honest thistleBOT
#

@muted fern

Updated!

The requested value was updated.

elfin minnow
#

=xp

regal juniper
#

So I just worked on fixing some data for a guy but he failed to tell me that he was a cracked server so about 30 minutes of changes wouldn't work

honest thistleBOT
regal juniper
#

¯_(ツ)_/¯

jagged pollen
#

rip

muted fern
#

=db set gary_levels user_id 272178929572511744 lvl -3200

honest thistleBOT
#

@muted fern

Updated!

The requested value was updated.

muted fern
#

=db set gary_levels user_id 272178929572511744 lvl -32000

honest thistleBOT
#

@muted fern

Updated!

The requested value was updated.

elfin minnow
#

=xp

honest thistleBOT
muted fern
#

=db set gary_levels user_id 272178929572511744 lvl 18

honest thistleBOT
#

@muted fern

Updated!

The requested value was updated.

muted fern
#

=profile

honest thistleBOT
regal juniper
#

Not bad

#

Not good tho

rocky escarp
#

=reboot - y

elfin minnow
#

=xp

honest thistleBOT
elfin minnow
#

=profile

honest thistleBOT
rocky escarp
#

disgusting

muted fern
#

=lvl lb

honest thistleBOT
rocky escarp
#

can you change it to Chinese

elfin minnow
#

=profile

honest thistleBOT
rocky escarp
muted fern
#

=profile @honest thistle

honest thistleBOT
elfin minnow
#

@honest thistle who is Tig

muted fern
#

@honest thistle who is Tig

velvet crescent
#

Hi

pale grotto
#

!kill

#

!kickme

boreal escarp
#

=ban @pale grotto

#

Smh @muted fern

muted fern
#

you people abused it

#

smh

boreal escarp
#

As long as it doesnt ban Im ok -.-

#

Ploz

pale grotto
#

Ouch Gaby

open locust
#

@tawny wraith hey, i've just seen your ticket on ProQuests/TE

#

let me know if you could not figure out where in ProQuests you need to fix.

muted fern
boreal escarp
#

Flappy birds?

muted fern
#

no smh

boreal escarp
#

Smh

kind bobcat
#

cool

#

@young temple here you can use other emotes eyesshaking

forest dirge
#

=db set gary_levels user_id 272178929572511744 lvl -32000

#

fuck

kind bobcat
#

o

boreal escarp
#

:)

#

@muted fern does the db cmd just run mysql commands?

muted fern
#

sorta @boreal escarp

kind bobcat
#

0

#

=db set barry_levels user_id 445556389532925952 lvl 100000000

#

^try doing that

muted fern
#

32,000 is the max

#

~about

kind bobcat
#

ok

boreal escarp
#

Int?

kind bobcat
#

give me that then

#

=db set barry_levels user_id 445556389532925952 lvl 32000

muted fern
#

small or med int

#

one of those

boreal escarp
#

Biggest

kind bobcat
#

o

#

How to get xp fast

#

=faq fast-xp

#

o

#

@muted fern why we dont have perms to =faq

muted fern
#

cause they fire mysql queries

kind bobcat
#

wtf why lol

boreal escarp
#

Because there are stored?

muted fern
#

(could store them in memory, but I don't)

boreal escarp
#

evilcube

fringe sigil
#

@muted fern Can I do a KiteBoard and KiteBar giveaway?

fallow crow
#

sad I have both

fringe sigil
#

Lol

young temple
#

Can I do a Nitro Giveaway then you give me a bonus 10,000 exp.? You know.. as a thank you for the Nitro. ||Totally not low key buying xp||

young temple
boreal escarp
#

What mod is that?

#

Also, only if you do a full nitro giveaway for 1y

young temple
boreal escarp
#

Impressive

jagged pollen
#

only if u giveaway nitro forever

boreal escarp
#

^

kind bobcat
#

to me

jagged pollen
#

o

willow oracle
#

OUCH MY FUCKING LEG

#

I DON'T EVEN KNOW WHAT THE FUCK I DID

#

But I wanna die so FUCKING BAD

jagged pollen
#

whats wrong with u bud ;p

#

are u okay lol

young temple
#

f

jade oasis
#

oml

#

just found someone who charges $150/1k views

#

how do you even think thats a good price

jagged pollen
#

lol

willow oracle
#

@jagged pollen I'm good

#

I just wanna cut off my leg

#

Lmao

jagged pollen
#

ure not lmao

willow oracle
#

My leg just hurts

#

A lot

jagged pollen
#

go to the hospital ;p

willow oracle
#

no

#

I'll be fine

jagged pollen
#

oh ok, gws 😄

willow oracle
#

I still wanna FUCKING DIE

willow oracle
fringe sigil
#

Rip maffle

sterile parrot
#

lol

fringe sigil
#

Oh yeah lemme

#

Fancy a code review?

sterile parrot
#

sure

fringe sigil
velvet crescent
#

Hi

jagged pollen
#

Hey

sterile parrot
#

could use the stream api for your getServer method

#

and generally children shouldn't be aware of their parent classes

#

isn't a big deal but still just mentioning it

fringe sigil
#

No

#

I don't like it 😦 stream stuff

sterile parrot
#

why not

fringe sigil
#

Childs?

#

I just don't like the syntax lol

#

As for the children?

sterile parrot
#

what's wrong with it lol

#

I like it 😛

fringe sigil
#

Which for example

#

Upstream and Downstream handlers?

sterile parrot
#

you are passing your main class instance to every manager etc

fringe sigil
#

Erm yes?

#

What do you recommend?

#

getInstance()

sterile parrot
#

no

fringe sigil
#

Ok

sterile parrot
#

children shouldn't have access to their parent

#

but that's really really deep

#

so don't worry about it

fringe sigil
#

Okay 😃

velvet crescent
#

Children should get the heck out BoomerTune

sterile parrot
#

many people in here are still children

fringe sigil
#

I kind of have a slightly urgent issue

#

wait wait

velvet crescent
#

@fallow crow Can you link me the plugin

kind bobcat
#

isnt that kinda leaking

elfin minnow
#

deleted

kind bobcat
#

k

#

I should be trusted

fallow crow
#

nope

velvet crescent
#

you should be banned

kind bobcat
#

^also that

#

but trusted

elfin minnow
#

nop

kind bobcat
#

y not

#

im helpfule

willow oracle
#

hi nerds

velvet crescent
#

450 xp away from tier 4 😄

willow oracle
#

I have so many fun ideas I lowkey wanna do, but none of them are suitable for small or medium sized servers

#

unless you got a fucking massive minigames network or smth half the shit would be useless

kind bobcat
#

o

#

nkce

boreal escarp
#

aNoU Maffie

kind bobcat
#

are you stealing my emotes nou

boreal escarp
kind bobcat
velvet crescent
boreal escarp
velvet crescent
kind bobcat
boreal escarp
kind bobcat
#

💩

#

o

#

do :shit:

boreal escarp
kind bobcat
velvet crescent
#

💩

#

:rpoop:

boreal escarp
kind bobcat
boreal escarp
#

Defo not playing with 🔥

kind bobcat
boreal escarp
velvet crescent
fallow crow
kind bobcat
#

this has become emoji chat

boreal escarp
kind bobcat
velvet crescent
#

I need xp

kind bobcat
#

same rainbowowo

#

rainbowowo

velvet crescent
kind bobcat
velvet crescent
#

What is going on with discord

kind bobcat
#

^

young temple
velvet crescent
#

Oof

sterile parrot
#

anyone else who uses no mouse whatsoever?

#

just their touchpad?

jagged pollen
#

impossible ;p

#

idk how people use that

sterile parrot
#

I do 😛

#

I don't need the mouse everything can be done using the touchpad

#

I prefer scrolling etc from a touchpad

jagged pollen
#

WUT

sterile parrot
#

I have a mouse in my bag wherever I go but I never use it as I always revert back to my touchpad anyway

jagged pollen
#

i cant

#

for anything im doing i use the mouse

velvet crescent
#

I don't have a touch pad so GWfroggerKrabsReee

boreal escarp
#

Lol @sterile parrot p.p

#

I only use the touchpad when I run out of batteries

sterile parrot
#

touchpad is nicer imo

boreal escarp
#

Ok, code using touchpad

velvet crescent
#

Easy gaby

#

Arrows ftw

boreal escarp
#

😉

pale grotto
#

💩

#

snag Notification SeeAbove 💩

sterile parrot
#

yeah I code using my touchpad

jagged pollen
#

how lol

#

if its possible it takes more time than using mouse

sterile parrot
#

it doesn't though

#

I bet I'm faster than you guys

jagged pollen
#

well then i think that cuz i dont like/use that

#

never meet someone uses that tho

sterile parrot
#

I mean gestures are really really nice

#

instead of alt tabbing I use my touchpad

jagged pollen
#

meh

sterile parrot
#

etc

jagged pollen
#

i got a mouse with 4 side buttons (for gaming) but too lazy to setup it to help me in coding and editing ;p

#

if i do it will be so useful

boreal escarp
#

Oh, that's why it take you AGES to finish smth smh @sterile parrot

jagged pollen
#

lol

boreal escarp
#

Gotta buy you a mouse and stick it on your hand

sterile parrot
#

nah that's just me being lazy

boreal escarp
#

lier

sterile parrot
#

lmao

#

well I mean I am going to look for a sort of agent/secretary soon

jagged pollen
#

lol

#

yea u need that

pale grotto
#

I don't think trusted means anything ngl

boreal escarp
#

I'm in.

#

I trust lemon for being lazy

#

Like for real.

sterile parrot
#

for real though

#

I could really use such a person

#

who just handles most stuff for me

#

because my biggest issue is that I don't have enough time nor do I want to spend time on discussing stuff, applying etc

#

I love programming a lot

#

it's my job

boreal escarp
#

owo

#

how tf do I make chrome to ask me if I want to close it or nah smh

sterile parrot
#

what?

boreal escarp
#

Like, a confirmation box when I press X

fringe sigil
#

When I record a video/audio on my phone it’s really weird

#

Like a static sound

boreal escarp
#

time to buy a new one

fringe sigil
#

But also buzzing/random beeping

#

It’s pretty creepy though

#

Like a Geiger counter noise or something

magic summit
#

God how I hate those debates about IDEs

#

Like who tf cares what IDE you use? When you can make good stuff with it, go for it.

boreal escarp
#

True.

pure bane
#

Pray for me

jagged pollen
#

thats sucks, be careful ;p

boreal escarp
#

O fac

muted fern
#

Indeed, stay safe fam

boreal escarp
#

Open source your plugins before it is too late bro

jagged pollen
#

is that all u care about :p

boreal escarp
#

No

#

I care about clip's legacy

jagged pollen
#

o

boreal escarp
jagged pollen
#

gn

young temple
#

Without Clip... who's gonna add support for arguments in DeluxeCommands*? sadthonk

jagged pollen
#

??

#

it supports "target"

young temple
#

Yeah but what if I wanted to make a /warp command

#

in DCMDS

pure bane
#

Rip

#

I’m in bed yolo

#

Told Niki to wake me up if we’re about to get sucked up by a tornado

#

I don’t got time to sit in the basement all night

fallow crow
#

fair enough

#

sleeping is good

#

and hope you’re safe

cyan ermine
boreal escarp
#

OwO

deep quartz
#

Gravity Falls ❤

pale grotto
#

Bro I'm higher than Australia on the map rn

pale grotto
#

austrialia isn't real

#

@muted fern isn't real.

jagged pollen
#

o

pale grotto
#

cube is on

#

im dead

#

):

#

ill save him the command

#

!kick @pale grotto

muted fern
#

Pls don't tag me unnecessary

#

It's really annoying

pale grotto
#

that was alot of typing

#

Cube, in my defense

#

I have gotten much better

muted fern
#

I'm actually serious though.

#

Just say my name if Ur meming me

#

No need for that tag

feral obsidian
#

funnycube

muted fern
#

Cool?

pale grotto
#

I'll save the argument. I'll just not say anything here lol

#

Clearly you have an issue with everything I do/say here

feral obsidian
#

you... pinged him... about Australia...

pale grotto
#

Oh yeah?

#

I just pinged you for

#

@feral obsidian nothing

feral obsidian
#

which is usually referred to as annoying

muted fern
#

Nothing to do with you just talking cole, just tagging me for no reason

#

Cause I'd rather keep tags for important things or if someone is replying to me

#

Makes it easier for me to see the message later on when imcl going through old messages

#

I'm going*

#

You're welcome to meme me if you want, just don't tag unless you're directly replying to me or its something important that needs my attention

#

Hope that clears it up

elfin minnow
#

cube is actually big bully

dark rapids
#

oof

#

he has a point

#

tags are fucking annoying for bs reasons

jagged pollen
#

no u tig

elfin minnow
#

yes u @jagged pollen

regal juniper
#

@fallow crow Any reason you left a review on PlaceholderAPI with something from the console?

  1. It's a warning, it doesn't mean anything
  2. If we added in an api-version, the plugin wouldn't work on 1.12.2 and lower
  3. There's no reason to report console things as a review.
velvet crescent
#

Esketit

regal juniper
#

Poor guy.

#

He spent 5 days figuring out how to add a permission node to someone?

#

Big sad.

jagged pollen
#

yea lol

#

when people cant spend 3 mins reading

regal juniper
#

What kind of stuff do you think we should have on the HelpChat wiki?

#

@muted fern this extends to you.

#

So we know what to start drafting up.

velvet crescent
#

Basic info

boreal escarp
#

Lol .... That review

velvet crescent
#

Oh damn

kind bobcat
#

whats up

#

||how can u not configure permissions||

muted fern
#

neat blue name frosty

kind bobcat
#

who me-?

#

or @velvet crescent eyesping

muted fern
#

I mean, i did say frosty

#

but sure

kind bobcat
#

no

#

u edited that

#

I swear there was no frosty before

#

wtf

muted fern
#

nope

boreal escarp
#

owo

#

Sup meancube?

muted fern
#

hello

kind bobcat
#

hi meancube

#

change ur name

boreal escarp
#

I want my permission for =ban back TohruREEE

kind bobcat
#

=ban

#

u dont have perms

#

try ban me

boreal escarp
split basalt
#

.

fringe sigil
#

@muted fern How does a KiteBoard and KiteBar giveaway sound?

twin dune
#

@elfin minnow

muted fern
#

done @twin dune

#

dm me details @fringe sigil

fringe sigil
#

I cant't 😥

kind bobcat
#

oof

muted fern
#

if accept my friend request you can Nial

kind bobcat
#

o

#

I have friends

muted fern
#

neat

kind bobcat
#

jk i dont

#

I say that to make myself feel better ☹

muted fern
#

go be friends with barry then

kind bobcat
#

=friend

#

=bemyfriend

honest thistleBOT
#

Friend added +

muted fern
#

ez

kind bobcat
#

o

#

i saw that 👀

muted fern
#

no idea what ur talking about

kind bobcat
#

can u make him playing with nite

muted fern
#

give me a sec

kind bobcat
#

k

#

=eval playing with nite

muted fern
#

e

#

z

kind bobcat
#

o

#

Im sleeping

#

👀

#

wait

#

am i sleeping with barry?

#

now he is watching helpchat

#

i

#

o

#

watching 👀

#

Look what im playing 👀

muted fern
#

ic

kind bobcat
#

With barry

#

now im playing games

fringe sigil
#

I have not got a friend request from you 🤔

#

I sent you one

fallow crow
#

wow my discord got hacked

#

how fun

muted fern
#

yeah, thats no fun

fringe sigil
#

Rip

fallow crow
#

so it happened like 40 mins

#

ago

#

i was on discord at the time

#

and i looked at my dms

#

and apparently i sent this to lots of pple

#

Luke Young Teh SorcererToday at 10:12
hey
.yo wassup my g hows it going
in the crib

sterile parrot
#

sometimes stuff makes no sense

#

my if statement just completely is broken

muted fern
#

yeah life does that

fringe sigil
#

Hm

muted fern
#

like usbs, how they are always the wrong side on the first attempt

sterile parrot
#

yeah

fringe sigil
#

I remember my discord server got like overtaken

#

I uploaded the discord bot to github, with the token

sterile parrot
#

you always have to try like 3 times for a damn usb to fit

muted fern
#

also @fallow crow invest in 2fa

sterile parrot
#

I use 2fa for almost everything

fallow crow
#

yep i've just done that

#

but i've came to a realisation

#

i think someone hacked my laptop instead

sterile parrot
#

disable your internet

muted fern
#

that would be a good start

fallow crow
#

probably

muted fern
#

then run offline scan

sterile parrot
#

you can lose so much money if you don't act fast

muted fern
#

might aswell burn the laptop whilst you're at it

fallow crow
#

fair enough

#

it's aight i got 0 pounds in my bank

#

kinda spent it all on a bike

#

yeah so the scan showed no threats

#

so im good, prob just a hacked discord

muted fern
#

that was way too quick

#

for a scan

fallow crow
#

well i run auto scan over night

muted fern
#

just delete system32 to be safe

fallow crow
#

Aight

sterile parrot
#

I mean what anti virus do yo uuse

#

you use

#

anti virusses can be pretty shitty

#

last time I had one I had to manually find it and get rid of it

fallow crow
#

Like bitdefender

#

But Ima fully maintain my laptop anyways

sterile parrot
#

shit aint making sense

#

it literally prints
NONE
Passed check

fringe sigil
#

What font is that Lemmo?

sterile parrot
#

default

plucky depot
#

Does spigot have a filter I can use somewhere so I can only search for plugins with source code? lol

pure quarry
#

Hey everyone!

sterile parrot
#

aha there we go

#

fixed that bullshit

#

@pure quarry heyo

pure quarry
#

Whatcha working on?

fallow crow
#

Ahh i just had the relief I wanted

#

turns out my brother went on my discord

fringe sigil
#

Lol

sterile parrot
#

ugh I hate this all

#

I literally have to analyze differences between 3 files to find a hex value I can turn into an id and then test if it works

kind bobcat
#

o

#

nice 👍

split basalt
boreal escarp
#

The struggle of being smart @sterile parrot

jagged pollen
#

lol

twin dune
#

Goo

boreal escarp
#

@dark rapids stop bumping your offer.

#

2nd advertisment.

dark rapids
#

how many years do I need to wait to make another

sterile parrot
#

read the pinned message

woven prairie
#
[14:38:58 WARN]: [Multiverse-Core] "Multiverse-Core v3.0.0-SNAPSHOT-b761" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [Rigby, fernferret, lithium3141, main--, dumptruckman].

This is new

honest thistleBOT
#

@dark rapids

dark rapids
#

ok don't tag me nerd

fringe sigil
#

Oh

magic summit
#

There are first 1.14.2 versions of paper 👌

#

I believe my server is the first and only 1.14.2 test server...

boreal escarp
#

o

velvet crescent
#

hi

muted fern
#

hi

boreal escarp
#

hey

velvet crescent
#

My phones screen is fucked

#

hoping that putting it in rice might help

#

doubt it will

boreal escarp
#

F

velvet crescent
#

massive F

boreal escarp
#

Make sure you cover it very well

velvet crescent
#

I did

#

I filled the whole container with rice

#

if it doesn't help, I'm hoping I can find a phone repair store near me

willow oracle
#

H o l y s h i t

#

Was talking to someone earlier apparently she smokes fuckin 25-30 cigarettes a day

#

Like I get why they smoke, but what the fuck that's a lot lmaop

velvet crescent
#

dang

willow oracle
#

Also that same girl she's fucking awesome tho

#

Too bad she already in love lmao

fringe sigil
#

oof

magic summit
velvet crescent
#

posibly

#

@boreal escarp How long do you reckon I should leave it in the rice?

boreal escarp
#

24h at least id say

velvet crescent
#

ugh

regal juniper
#

Dang, Tier 4 man

velvet crescent
#

Indeed

#

I'm a part of the cool kidz now

regal juniper
#

I wish I had that much time.

muted fern
#

<o/

regal juniper
#

Man shut up we all know you grind xp in your own channels

velvet crescent
#

Cube

#

would it be posible to change the later tier colors a bit?

muted fern
#

too complicated

#

also glare

velvet crescent
#

tier 7 atleast

muted fern
#

will read that dm one day

velvet crescent
#

cause it's ugly as hell

muted fern
#

=tier

honest thistleBOT
#
Your Current Level Tier

Let's see how far along you are:

Current Tier:

Tier IV

Contains Levels:

30 - 39

regal juniper
#

.>

#

Only taken you 6 days

muted fern
#

Salmon colour is great

velvet crescent
#

juck

#

when you get to tier 10 you're basically admin

jagged pollen
#

o

velvet crescent
#

It takes 6k to lvl up :c

jagged pollen
#

shoot 😛

magic summit
#

FC abusing his powers again xP

muted fern
#

i'd be first place in the leaderboard if i was

#

o... wait.

jagged pollen
#

lmao

velvet crescent
#

aBoo would be 3rd if clip wasn't an abuser ;9

jagged pollen
#

o

#

he isn't? Is he 😂

muted fern
#

gives me an idea

jagged pollen
#

o

muted fern
#

make clips @ everyone in his channel cost xp

jagged pollen
#

lol

#

Well he wont agree, he would if its here

muted fern
#

would need to disable his xpedit cmd

jagged pollen
#

yea nah

velvet crescent
#

do it

#

I dare ya

muted fern
#

Maybe later, ima go sleep

#

tis the 1am

jagged pollen
#

gn

muted fern
#

Night people, shall see you later

velvet crescent
#

gn papa

boreal escarp
#

why not just bad frosty smh

velvet crescent
#

wut

potent crown
#

@jagged pollen your name reminds me of Aladdins monkey

#

😛

velvet crescent
#

lmao

jagged pollen
#

aBooDyy , Aladdins monkey

#

hmmm, okay

#

:p

boreal escarp
#

O.o

elfin minnow
#

let me admin abuse

#

thank you

jagged pollen
#

In your dream while funnyboi is here lol

fringe sigil
#

94 people entered in the giveaway wow

jagged pollen
#

people want ur plogin

velvet crescent
#

Can we giveaway a copy of FrozenChests 😉

jagged pollen
#

isnt that free

#

:p

velvet crescent
#

=spigot frozen chests

honest thistleBOT
#
Unknown Resource!

I couldn't find a resource with the name or id of frozen chests

jagged pollen
#

o

velvet crescent
#

nope

willow oracle
#

hi

jagged pollen
#

hey

willow oracle
#

That moment you stop doing what you were doing to test just because you know its not gonna work and after a week you finally found out how much of an idiot you is

jagged pollen
#

lol

willow oracle
#

this is just shit I need to actually remember

#

now someone remind me to watch the document and not forget about its existence

#

LMAOOO

velvet crescent
#

nah, it'll be long forgotten tommorrow

twin dune
#

Is JavaScript a "Scripting" language?

twin dune
#

So yes, no?

boreal escarp
#

no (?)

elfin minnow
#

It is, however, if youre asking for dev role, it only goes for Skript lol

#

@twin dune SeeAbove

twin dune
#

Yay

elfin minnow
#

reee

#

when u have to take an online course for lifeguard certification
and its 9 lessons
thats roughly 8.5 hours

boreal escarp
#

um

#

how does this work lol

elfin minnow
boreal escarp
#

Like, you learn the theory or?

#

Aren't you too skinny for being a lifeguard? (no hate)

velvet crescent
#

he is

#

way too skiny

elfin minnow
#

Too skinny

#

tf

#

Its called being fit

#

and the lifeguard certi is to be hired

#

stupidd

jagged pollen
#

hmmm, too skiny doesn't mean being fit?

elfin minnow
#

im not skinny like a fucking stick

jagged pollen
#

Well then im 😛

elfin minnow
#

hUh

jagged pollen
#

and im not fit smh

#

but thats good totally not waste of time

twin dune
#

xp

boreal escarp
#

@elfin minnow fit =/= 50 kilos

#

again, not hate

fringe sigil
#

Why work out when you can code? 😎

boreal escarp
#

lol

cyan ermine
boreal escarp
#

The name lol xD

cyan ermine
#

😛

deep quartz
#

Hello everyone, welcome back to my laboratory, where safety is the number one priority. 😉

boreal escarp
#

Thumbs up for me!

fringe sigil
#

👍

pure bane
#

I’m calling osha

dusky sorrel
#

Why is the definition of a definition a definition?

tame mesa
#

hey anyone interested in moderating a discord server?
dm me if u are

pure bane
#

Do I get op

elfin minnow
#

yea

#

do we get op

muted fern
#

Clip can have op if I get op

pale grotto
#

hi cube

muted fern
#

o/

pale grotto
#

@regal juniper how are the CM discussions going along?

velvet crescent
#

Hi

#

My phone's screen is about to die

fallow crow
#

my life already died but i still use it

#

so i mean

pale grotto
#

Hi frosty

jagged pollen
#

Hey

#

rip Frosty

velvet crescent
#

The screen is legit going haywire rn

muted fern
#

doesnt sound too fun

velvet crescent
#

It doesn't

muted fern
pale grotto
#

is this

#

a game to you cube

muted fern
#

yes

#

a game of cubes

pale grotto
#

I want the kids, we're going to my sister's.

muted fern
#

o

boreal escarp
#

flappy cubes

regal juniper
#

@pale grotto what is CM

velvet crescent
#

Road to tier 5 begins

pale grotto
#

@regal juniper community managers

#

your eula discord

boreal escarp
#

O

regal juniper
#

What

#

I have no idea what you're talking about

boreal escarp
#

I think he meant Gian

kind bobcat
#

hi

fringe sigil
#

Who's gonna win this giveaway then

muted fern
#

¯_(ツ)_/¯

#

Clip for some reason is in it

fringe sigil
#

Lol he already has a copy 😂

sterile parrot
#

lol I purposely don’t participate in giveaways

woven prairie
#

Isn’t the cube also there

muted fern
#

I'm not in this one

#

😉

rocky escarp
#

I'm about to have a massive epeen

fallow crow
#

@sterile parrot did not know ur from Netherlands.

sterile parrot
#

yea I am

#

how did you know ;p

fallow crow
#

Ur screenshot

sterile parrot
#

oh yeah

fringe sigil
#

Look I am a normal guy, but I live with a server owner and I get screamed at everyday about plugins. Like I don't get it. I don't know how to code but y'all must be morons if you can't update a few plugins to the latest version. Please don't ban me I want answers. Regards Kieran

rocky escarp
#

lol

fallow crow
#

Wat is that on

fringe sigil
#

Spigot

velvet crescent
#

hi

jagged pollen
#

Hey

elfin minnow
#

=daily

honest thistleBOT
#
elfin minnow
#

Reeeee

muted fern
#

need a name for my game

#

cause not a massive fan of sky cube

velvet crescent
#

Give me the link

#

I wanna see how far it's gotten

regal juniper
#

=daily

honest thistleBOT
#
muted fern
#

this is sorta between the last version and where im at now

elfin minnow
#

@muted fern tbcf call it HelpChat: The Reee

muted fern
#

no

velvet crescent
#

cube

#

doesn't work thonking1

muted fern
#

give it time to load

#

takes a bit for some people

velvet crescent
#

doesn't find the site

willow oracle
#

woooow

#

im writing coooodes

#

for once in my fucking life

#

lmao

muted fern
honest thistleBOT
#
Online!

HelpChat Site is online and responding.

muted fern
#

its up and happy

willow oracle
#

tf that

muted fern
#

helpchat is us

willow oracle
#

A

#

I'm writing some guis rn

velvet crescent
#

the link above didn't work

willow oracle
#

Making it pageable or not depending on the amount of items

muted fern
#

worked fine for other people frost

velvet crescent
#

oh dang cube

muted fern
#

did you finally get it working?

#

lol

velvet crescent
#

I wish the perspective was a bit better tho

muted fern
#

whatcha mean

velvet crescent
#

It's hard to judge where they're coming from

#

also the colors are a bit too bright

muted fern
#

inb4 dark mode

velvet crescent
#

yes please

#

you should make a shop where you can customize your cube

#

and you collect coins in game

muted fern
#

oof

#

then i have to store data

#

thats scary

velvet crescent
#

Also a pause button would be nice

#

It's a challenge meaning you'll learn

muted fern
#

just dont wanna store data yet

#

rather have other things done first

velvet crescent
#

make a pause then

muted fern
#

working on a main menu atm

velvet crescent
#

and make the effect drops random