#off-topic
1 messages · Page 411 of 1

xD
What cube said ^
damn 1.6.4 looks weird compared to 1.7+
papi loaded in 1.6.4 but my plugin did not lol
Oof I should test my plugins on other versions
hm, i think i dont have 1.6.4 it says 1.7.2 when i try joining
stupid download site lied to me
how am i supposed to get spigot 1.6.4
build tools
build and older build tools with build tools
thats not how this works
ofc it is
sure sure
found a github repo with 1.6.4-1.7.10, guess ill try that
weird flex whoever made it but ok
it has cauldron 1.6.4? what even is that
oh wait cauldron was like pre-sponge wasnt it?
well placeholderapi seems to work on 1.6.4 but my plugin throws a yaml config error which makes no sense lol
not like anyones gonna use 1.6.4
oof u cant click screenshots in 1.6.4
Juck
xD
Rippo gonna be imactive for a month now
wut
inactive*
What does tier 1-9 mean
=tier
bstats outage id assume
¯_(ツ)_/¯

oof why was development moved
popular request
got 3 plugins to finish but I'm too lazy
o



jesus papi updates spam
yeah each commit
update coming very soon
one day
90% of dyno is disabled lol
with lvl 10 and up
@velvet crescent #chat-reaction
join the cool squad
that was meant to be #chat-settings
paint is great
Can you change the opacity of the text?
I mean does that look good enough?
u have orange on orange
owo
@muted fern how u get #announcements to have the cool thing
did yall get
.... verified?
no
can you tell us
search for it
I believe it's either the dev license or magic
dev license probably
no
Cole
now it is just.... confusing.
you have to buy it
yes
👏 stop 👏 pinging 👏 me 👏
i dont have access to pin your messages @muted fern
👏 no 👏
burn it
why
I mean I legit can't make it any better since this program is legit trash
can't even reselect the thing you're working on
that'd be nice ye
Pong
Ping
Beer?
bong
this exist https://img.aboodyy.net/19.05.05_14-14.png smh
Nice plugin @cyan ermine
yeah i was testing
Does anyone know how to make a signature such like this? https://www.spigotmc.org/threads/dynamicsigns-paid.46842/
With the hyperlinks etc
Image?
oof you see clip and cube the first comments lel
Also, spigot use BB Codes
How do I use it? xd
Gaby
Let's say I have 2 different join messages, what should be the permission for it?
idk, pluginname.[id]
Doesnt the messages have an id ..?
gonna make it so people can change what permission they want it to be, so like 1 is default and the other is staff
one:
join: '...'
two:
join: '...'```
That's markdown.
not gonna make it like that
Then idk.
what, you need perms to join
ull have to add priority too i guess
do I need tho? since there's only two, can just have 1 permission and if they don't have the permission they have the default one automatically
so when u have more than one permission it gives u the one that has the highest priority
never messed with priorities but will look into it
or it will just give u the first one it meet
Organised enough?
sorry but no
what should I change then?
u can do something like```yml
messages:
default:
message:
name:
message:
permission:
priority: # if ull add this
I need to figure out how to add priority first
loop over the format and check which one has the highest ?
aBoo no clue what you mean, that'd just be the way to check it
how do I add a priority tho?
add that option in the config, and check which format has the highest priority in code?
I thought I was gonna have to spend days trying to make a decent functional GUI lib
I was wrong
30 minutes, and it works fine
noice 😄
me irl
@jagged pollen Better ?

Now that I have a functional GUIlib I need a use for it
Someone suggest me a gui-based plugin to make
cough DM with args cough

make an args addon for DM
wow
Anything but custom guis LOL
get the heck out
much better but i how about this
special:
join:
message: msg
permission:
quit:
message: msg
permission:
?
ugh sure
^
what are you trying to do?
Its better tho
suicide Nite
Lmao
oh i see
that's what I'm trying to do


@mellow wedge (sorry for pong) How does this look?
documented
ye
i'm not done yet fam
instead of having one special perm
you have whatever perm you want
so instead of just Messages.default and Messages.special
you could do Messages.whateverthefuck
and if it's empty in the config, just set it to the default
if you uploaded the config instead of screenshotting it I could show you...
Okay you didn't understand the doccumentaion good enough, the default and special are just so you know which message is what and are totally random
# First Join Message - <player> Stands for player name! (This will also display their rank!)
# This message will be displayed when a player joins the server for the first time!
first_join_message: '&bWelcome &f<player> to the server!'
# Here are the different Join/Quit messages
Messages:
default:
join:
# If the player does not have the special permission, their Join Message will be this
message: '&8[&a+&8] &b<player>'
quit:
# If the player does not have the special permission, their Quit Message will be this
message: '&8[&c-&8] &b<player>'
special:
join:
# If the player has the permission stated above, their Join Message will be this
message: '&8[&6+&8] &bStaff &f<player> &bhas joined!'
# This is the permission that the player requires in order to use the special Join Message
permission: 'FrozenJoin.SpecialJoin'
quit:
# If the player has the permission stated above, their Join Message will be this
message: '&8[&4-&8] &bStaff &f<player> &bhas left!'
# This is the permission that the player requires in order to use the special Join Message
permission: 'FrozenJoin.SpecialQuit'
wat
oof
this is, and can be random
Please use a paste service to share configs, errors, code and long logs.
• HelpChat Paste
ffs
and the permissions would be Frozenjoin.whatever
or Frozenjoin.whatever.join
and you use the permission to also get the config path
basically, you could make as many different join and quit messages as you want
I don't actually know how to do that tho 
You'd have to check the perms the player has
and if it meets the format
so maybe like
Frozenjoin.message
so if (p.hasPermission("blablabla")){
and then read the rest of it to see where to go in the config
Frozenjoin.message.whatever.join
and no, you don't wanna do hasPermission
because then it wouldn't be modular
what should I use then?
check their perms
and see if one of them starts with Frozenjoin.message
and if it does, check the rest to see where to go in the config
ye but how can you make the "path" customizable
for (player perms)
if perm.startsWith("Frozenjoin.message.")
perm = perm.replaceAll("Frozenjoin.message.", "")
then your perm is equal to whatever.join
or "whatever.quit"
make sense?
then you do the join message for that person
getConfig().getString("Messages."+perm);
if it's null then you just go to default
hi
yea the default looked good Frosty
I changed it nonetheless :p
both look good tbh
Can someone link me to something that would explain how to set priorities
im sure that i have does sucha thing but i dont remember where
and thats so annoying
Please find it if you'd be kind enough
@velvet crescent
that might work
not tested
also, I didn't do anything with the msg, that's on you
Problem is I still can't test it, cause of that shitty error which i don't know how to fix
showing us the error doesn't help
Bukkit.broadcastMessage(Utils.chat(plugin.getConfig().getString("first_join_message").replace("<player>", p.getDisplayName())));
Please use a paste service to share configs, errors, code and long logs.
• HelpChat Paste
bruf
G O O G L E
wut ? lol
I mean that's what it says 
Second solution is to set source level of your project to 1.8, then your compiler will not complain about default methods in interfaces.
don’t switch back to 7
ye I didn't
oof
How is everyone doing today?
Oof, #SaveFrosty
Not bad, how about u Jumbo 😄
Nice to hear, I'm fine
Great 😃
noone
@mild wraith What do you mean with "partnered"? You mean like this discord is working together with another one?
It's not partnered
^
?
yikes
buying a verification license allows for the announcement icon?
i mean
dev license
yeah was referring to discord partnership
thought the announcements logo was more towards the partner side perks
Since the dev license is meant for game developers and such but others can buy it.
they charge the same price google play does
kinda
they both are "stores"
for google play it's for an account to put apps onto the google play store
for discord it's to put stuff onto their store i assume
"Create store pages in your server
Publish news directly to your players
Run Alpha and Beta tests for your game"
don't forget to break the loop after getting the message @velvet crescent
@mellow wedge What's this? PermissionAttachmentInfo
no idea
...
ah yes gucci
i saw @velvet crescent

that's my friend's twitch sub emote lol
oof
Okay so @mellow wedge I've been going to bed by 10pm each night and up at 5:30AM, so last night when I tried to stay up till midnight, I was so tired.
Last semester, midnight was early.
i don't do school
It's crazy how you can get your body on a schedule.
Ahh yeah, you're a full time streamer, forgot.
and i haven't worked this week due to procedure, so i just keep staying up later and later
ya, pro streamer 😂
yeet
link pl0x
should be on my profile
same name tho
sadly if I get tacos it would be taco bell...
@velvet crescent
I'm making a gui-based maintenance mode plugin
Well I already mostly made it
To test my new gui lib
oo
Might put it on spigot might not
Like it doesn't have anything unique
All it does is literally have a gui to enable/disable maintenance mode instead of a command
so /maintenance opens a gui, where you can enable or disable maintenance mode, depending on if its enabled already
If you enable it you get a new GUI where you select either "no reason" or "choose reason" and with the second one you type the reason into chat
and that's it
xd
@fringe sigil for the right amount of money, you can do it 😉
@mellow wedge can i get an example for this %server_countdown_<SimpleDateFormat>_<actualdateandtimebasedonsdfspecified>% (sorry for ping, but in a hurry)
Is it allowed to send discord links
nope
DM advertising is against discord TOS if I'm not mistaken
(without the persons agreement ofc)
aBoo, can I get a link :p
I got like 10 people sending me
I just block em
and tell them that it's not okay to do that
dm @honest thistle @zenith mauve
Sometimes messaging barry takes extra long
or you can spam tigma
nice enough?
currently only 2 different messages since I didn't figure cj's suggestion out yet
basically so you could have unlimited messages + the "group" names would be whatever you want
I'll add it, make the page look neet, and then figure out that
Niall, gonna add a hidden join/quit permission
wow
just joined a server called fishymc in rms
asked if they have unique features
said yes
I asked which and they told me to play and find. I said I wouldn't have asked if I was going to do that so they called me rude
Like jesus christ, just tell me what
lol
And this is not the first time I joined
I joined an alt, got the same answer. Why can't they answer the damn question
@pure bane check your dms
ok the real clip
i cant fucking change it because i changed it too often
10/10
lol
bro i seriously need to remove of this, i cant get banned lol
Why does it give me this when I try to register an event
what about onions???
ya
lol
U know impersonation is a bananable offense here. Rule 16.3
im trying to change it
Going to have to ban you.
🔨
ok so im gonna just stay quiet until discord lets me change it back, if we can avoid banning rq thatd' be super nice
Going to banana you
oo
TempleMC
clip that one prison server you played
PING?
I wanna make an all-in main plugin and publish it
Ranks, permissions, punishments, anything really
well, anything all servers need ofc
@jade oasis what’s the ip
ooh
sup
i saw someone very clearly fly hacking and they said they got like 2k ping nad thats why it looked like they were hacking
i call bullshit
@patent root I'm sure you can do that with crazy crates and a vouches plugin, or crates reloaded.
They replaced the shower now you have to lean back 45° to get any water
So low pressure
Rip
Idk why but i never wanted to publish plugins with just one single feature but didn't have time to make something bigger
oof
Hm, does anyone know an API that tracks the Fortnite event leaderboards?
Like I wanna get info about world cup qualifiers from a specific person
Lol
Ye @plush mortar
It's just called persist iirc
It's cause you kazy5
Lazy
lol
o lol
From a scale of 1 to 10, whats your favorite color of the alphabet?
Rip clip
/papi parse me %placeholder%
@pure bane how u change the background 2 blue bruh
he went to bed
Spigot has a Style chooser if you are a donator.
or a 3rd party extension for themes
o ok thanks bro
mine is darker orange
@regal juniper Will update the rest of my plugins now
well its only 1 other plugin lol
@plush mortar nice updates bro
❤
can you make getting items into the crates easier
ye at least badbones can update his plugins unlike @pure bane
atm that is planned but not being worked on atm
id use crazycrates if it worked on 1.12.2, the superior version
i just use cratesplus
lol
@pale grotto can you believe badbones wont even support 1.4.7 for vouchers that i PAID for?
1.4.7
to old
hah
you're too old
@plush mortar you did the correct hitng hah
😄
hi
Hey
hey
hi
hi
oi @velvet crescent =banner when ur alive
xD
lol
yes hes mad at u @pale grotto
@pale grotto
@kind bobcat
why ping me @kind bobcat
@kind bobcat
Don't tag the cube.
(totally wasn't a setup)
@kind bobcat
Don't tag the cube.
you had to pay the price for it
until he bans you
hi
Good morning
owo
so @muted fern
@mellow wedge
Don't tag the cube.
@mellow wedge
Don't tag the cube.
if i keep switching channels he'll always get the ping
@mellow wedge
Don't tag the cube.
Don’t tag me
@pure bane
I need that too

hi.
he sleeping
Why was I pinged
I believe i pinged you @velvet crescent
Why tho
to tell u about the banner cmd
How can I select the color?
Jucky
testplugins is still 13.2

Lol
Funnycube am I aloud to use Barry generated banners on my resource pages
Will give Barry credit
Yeah, dont have to give barry credit, but im sure he'll appreciate it
holy cow mcm takes forever to approve my resource
how the hell do they take this long AND still approve somebody illegally selling a plugin
also, does anybody have a count on how many times I've mentioned that somebody illegally sold my plugin?
Lol really?
@mellow wedge you here ?
do you know how to code a bot
``let Success = 0
message.guild.members.forEach( member =>{
if(member.user.bot) return;
let embed = new Discord.RichEmbed()
.setThumbnail(message.guild.iconURL)
.addField("To:", member, true)
.setColor("#5b070b")
.addField("Message:", ags);
member.send(embed)
Success++
message.delete();
message.channel.send("Broadcast sent to "+Success+" **Members**")
});
}
});``
how to make this unembed
@eternal apex
don’t use an embed lol??
@eternal apex how can you just reedit it
so it wont send an embeded message
please i need it badly
well currently you’re creating an embed and sending it
the whole embed part
so i will just crashed out the embed word ?
i just dont want it to send message through embed
``(node:7936) UnhandledPromiseRejectionWarning: TypeError: Discord is not a constructor
at message.guild.members.forEach.member (C:\Users\acer\Desktop\Bot\index.js:68:11)
at Map.forEach (<anonymous>)
at Client.client.on (C:\Users\acer\Desktop\Bot\index.js:66:27)
at Client.emit (events.js:182:13)
at MessageCreateHandler.handle (C:\Users\acer\Desktop\Bot\node_modules\discord.js\src\client\websocket\packets\handlers\MessageCreate.js:9:34)
at WebSocketPacketManager.handle (C:\Users\acer\Desktop\Bot\node_modules\discord.js\src\client\websocket\packets\WebSocketPacketManager.js:103:65)
at WebSocketConnection.onPacket (C:\Users\acer\Desktop\Bot\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:333:35)
at WebSocketConnection.onMessage (C:\Users\acer\Desktop\Bot\node_modules\discord.js\src\client\websocket\WebSocketConnection.js:296:17)
at WebSocket.onMessage (C:\Users\acer\Desktop\Bot\node_modules\ws\lib\event-target.js:120:16)
at WebSocket.emit (events.js:182:13)
(node:7936) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:7936) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
``
@eternal apex i got this error when i remove the embedded text
`` let Success = 0
message.guild.members.forEach( member =>{
if(member.user.bot) return;
let embed = new Discord.RichEmbed()
.setThumbnail(message.guild.iconURL)
.addField("To:", member, true)
.setColor("#5b070b")
.addField("Message:", ags);
member.send(embed)
Success++
message.delete();
message.channel.send("Broadcast sent to "+Success+" **Members**")
});
}
});``
can you re edit this text ?
Please use a paste service to share configs, errors, code and long logs.
• HelpChat Paste
please @fallow crow
@mellow wedge can you dm me ?
i needed it right now badly
also, you can use ``` for code blocks
i cant send picture
ok I go get coffee, piggy take over
how to send pic
=faq imgur
You won't be able to upload images here directly to avoid spam, so please use https://imgur.com/ to upload images/screenshots.
i cant explain it but ill send the pic
look at the difference
ok
embedded message wont show this
why do i keep speaking
i dont know where to remove on config
i sure piggypiglet do
i go get coffee, bye
embedded message wont show join button and etc
so, remove the embed, and change the contents of the send message to member + “ “ + ags
@eternal apex i really dont understand coding lol but can you just edit this text
let Success = 0
message.guild.members.forEach( member =>{
if(member.user.bot) return;
let embed = new Discord.RichEmbed()
.setThumbnail(message.guild.iconURL)
.addField("To:", member, true)
.setColor("#5b070b")
.addField("Message:", ags);
member.send(embed)
Success++
message.delete();
message.channel.send("Broadcast sent to "+Success+" **Members**")
});
}
});
so it wont send embeded messages
No, I won’t do it for you, and I highly doubt anyone else will either
I’ve told you what to do
oof i dont know what to do i really need it right now badly
I’m not gonna do it for you
Remove the code from “let” to the semi colon
then, in the member.send bit, change embed to the thing I said earlier
I can’t help any further, I’m on phone
that’s not what I said to do at all
i really don't know what to do 😦 my brother will kill me
nite, I’d say that’s a tad too advanced for this user
@eternal apex hey ples

remove code from the keyword let, to the semi colon. Then, inside the member.send() parentheses, put the member + “ “ + ags
In the meantime, I strongly recommend you thoroughly read this article, as it’ll help you immensely in situations like this in the future. http://rurounijones.github.io/blog/2009/03/17/how-to-ask-for-help-on-irc/
How to ask for help properly on IRC so that you get responses faster. Also relevant to forums and mailing lists
I need much more xp
I gotta add pageable gui's to my guilib
Otherwise I'm going to run into issues for a future plugin I'm considering making
And I need to make a storage lib that allows me to simply add support for any db to that lib and then you can just use it
Somewhat easy to use, but idk how I would
Wut where
the one by “Will”
when was it sent?
yesterday
can't find it
what is happening
5th from bottom to top
what does this do?
paginated guis
search developer java
paginated guis?
Guis with pages
@regal ravine can you be more specific or what
idk what you mean
I feel like UltraPermissions is good, but I'm pretty sure it literally pulls everything into ram, so for bigger servers, with a shitton of unique users, it can really quite eat performance
this is something you can't fix with plain file storage, but if you are getting performance issues you should use sql anyway
just run the server with 128 gigs of ram ||/s||
xd
Yeah add more ram to the server
With -Xmx flag
I have 2GB server but It's now 32 because I use -Xmx32G
waiting for the /s
Hero
People have no chill in #562177724802662431
Dropping 1's with no reviews or reason exdee
=daily
@elfin minnow
You already claimed your daily reward for today!
boof
What's tigma
tigma nuts 
Fugggg
@onyx tapir why you being a bully 
u suc
see
I'm considering for my next plugin only adding support for mongodb and file storage
I cba making a system that creates/updates tables
PATREON https://www.patreon.com/dreadcraftstation ●HELLO GUYS ↓ IN THIS VIDEO, YOU WILL SEE HOW TO MAKE DIORAMA BATTLE OF SHIPS FROM EPOXY RESIN I TRY TO MAK...
wtf
@elfin minnow that simply shows how ratings can be fabricated and abused
Hi
hi
go back to sleep
ban frosty
indeed
yes
mhm
I agree
si
Absolutely
I concur
Should happen
Without a doubt
For sure
I wasn't sleeping tho
O was getting education unlike you two
lmao
I*
Urerite
agreed
education = required, required = force, you work at school
force work
= slavery
school = slavery
lol
I wanna make my own stats server too
Stats for my plugins, which sends all ranges of information which I can define in the plugin
But idk how
nor do I care
@muted fern

Seriously, stop tagging him.
tag clip
Just don't tag either of them.
Ik p.p
take a gun, ratatatata problem solved
Wish I could .. mf
Lit. CMI is updated for the new PAPI update
👏
Any changes in expansion methods? Wanna make an expansion
what papi update
Juat see commits on github and see if there are breaking changes xd
o
Poisoned walnut?
Does anyone know a good ticket system bot for discord? I am using Tickety but it is often down :#
@boreal escarp ?
@mellow wedge ?
above
didn't you have one
Oh, no cj
wups
I have one for FAQ
ohhhh ye
@boreal escarp i am the one advertising here not you
🏃
thats the link btw ^
incase you wanted it
live server count when?
dlb api
the api for dbl in python is so trash
litteraly their docs have an example that doesnt even support pytohn 3
lol read this comment and it's replies this dude 'Zeke' I can't stop laughing lmfao
``
Stancematic Media
6 months ago (edited)
i need the names of the two cute girls at 0:13
Edit* asking for a friend.``
https://www.youtube.com/watch?v=b6NCaD9LjrI
The Official Video of Xillions - Somebody Like Me (Mark With a K RMX) Video by ROTATE (https://www.facebook.com/RotateMedia?...) Follow Mark With a K On Face...
😂
=banner fake 👑
naisu
go into the clips pings @young temple
=banner fake <crown emoji>
your missing half the fun
gonna hang this on my wall
=banner Yall Slo
you cant lol
why not
cuz it use a font and you will literally see <:name:id>
nou
=banner 
@kind bobcat
o
f a i l
sooo
your gonna be banned



wtf is that nite
no why
get on, I need some help
im actulaly leaving right now
wow
more useless then useless
whats ur problem
are you not opening mc :c
its open


