#off-topic
1 messages ยท Page 572 of 1
He has a better setup than me lol
Your eyes can't really tell the difference for 4k
If you've watched a lot of tech videos you'd know that 4k isn't the best.
So his GPU supports 4 monitors?
hopefully they aren't using displayport.
SLI ah.
Dual 980s
What does he use it for?
Work
As SLI is uncommon due to slowly getting unsupported.
Might help for work dependent on what "work' is.
His IRL job
Video editing or something to use SLI?
Yeah I get ya it's cool.
I'm thinking of doing a 3700x paired with a 2070s
I don't need a Ti
Ya
used guessing?
new
ah ez cop but you bought a cpu ain't it?
on sale ยฃ100 off
ah
I mean the ones I usually see are only 3 or 4 pounds.
ye i dont have any money left over ๐ฆ
can't wait to see the tax of my amazon order
can't wait to see the tax of my amazon order
i mean its not extra
but taxes are a big oof to the bank account
ah prob lower
atm likely going with a noctua
as my cpu cooler jumped back up $30 lmao
likely due to being after christmas.
I used to have same size monitors but I had to confine to work what I had in my room at college
I had to get a custom stand just to fit 2 monitors
@forest dirge SpigotMC username?
Olzie-12
wut
Added
Thanks
@mellow zinc what do you think the price is without tax
what specs
Just realized how cold it is outside
I'm in shorts and flip flops and it's 2ยฐC
150 in tax?
ooof
tax would bring it to around $2,800 usd.
if u convert ยฃ2000 to usd its close enough to $2600 ๐
=pl frozen join
JSON support, nice
Gj
json works in all versions right?
Frosty: All giveaways are rigged 
Are they not? The AI mocks us
Wut
what giveaway?
Songoda, the have more than discord for different things
In general
Not talking about the giveaway
Bri had a xbox/ps giveaway
Ye
atm relearning Maven for IJ
Oof have fun
I've already got most of it done.
took about 5 minutes to relearn
just need to switch my target folder.
I mean there ain't really that much to it
lizard cat and chicken?
yes
I choose cat
idk cat seems pretty fire
Cuz it sleeps 75% of it's life

@velvet crescent please check dm
Hmm topic was supposed to change back after >1k diff
I thought you said 5k
I remember you mentioning 5k difference.
@frank barn you should contact the right dev for support and not me.
@frank pasture I hate people who think I will support old plugins I don't maintain.
fixed it @primal pecan
It's only suppose to show the countdown < 1000 and only show
< 101
@velvet crescent Giveaway was not rigged -.-
congrats to frog
Im only giving it to him because he cried over it.
I didnt even read it.
Ah.
Its coming out of my wallet.
I told him "No staff allowed" and when his name got picked he threw this big fit.
lol
did you tell him before or after the giveaway?
should make a custom bot that prevents staff for other future giveaways if it's one of those types.
Did you have a nice Christmas?
If we just gave it to frog it would have looked completely rigged so I had to just give out two.
@Override
public void onCommand(Member sender, MessageChannel chan, Message message, String[] args) {
message.delete().complete();
TextChannel channel = chan.getJDA().getTextChannelById(Long.parseLong(args[1]));
Message msg = channel.retrieveMessageById(Long.parseLong(args[2])).complete();
int count = 0;
MessageReaction reaction = null;
for (MessageReaction r : msg.getReactions()) {
if (r.getCount() < count) continue;
count = r.getCount();
reaction = r;
}
List<User> users = reaction.retrieveUsers().complete();
int index = (int)(Math.random()*users.size());
PrivateChannel privateChannel = sender.getUser().openPrivateChannel().complete();
privateChannel.sendMessage(users.get(index).getName() + "#" + users.get(index).getDiscriminator()).complete();
}
This is the command I used to draw the name xD. Made it just for the occasion.
the blocking operations in that code is insane
The what?
Didn't know Queue was even a thing.
if you need the value, it's supplied in the queue
sendMessage("blah").queue(m -> m.addReaction(blah).queue());
I haven't really dug into that.
I don't think I really want to either.
I hate working with completable futures.
Brianna just made something simple for that occasion prob.
Not my style at all, its why I ditched Discord4J when they moved to that reactor crap.
The bot welcomes people to my discord server and does like 4 commands, I have no interest in going back to it.
VoidRealms is it some type of server?
Yeah?
Ah was just wondering, couldn't figure out if it was some type of modded server or what not.
In other news, my new Garmin Venu watch just for fitness came in tonight, so will go for a 2 mile walk tomorrow slowly toward recovery.
Im really itchy dude.
use good practices, only use complete when necessary. Read up on RestActions in the wiki
Anyone good with RegEx ^(?=.[0-9])(?=.[a-zA-Z])([a-zA-Z0-9]+)$ trying to make it minimum 3 letters
and allowing only letters & numbers
give me a sec.
you did it wrong but gimme a second.
@naive agate will give you a correct regex after I make a test module for me
^[a-zA-Z0-9_.-]{3}$ should work
funny why do you have your halloween profile picture on?
^[a-zA-Z0-9_.-]{3,}$ is to set it to min 3 and not limit to 3 @naive agate
also remove _.- if u dont want _- either
its not @trim raft smh
confetti/fireworks for and of year smh
@muted fern I am trying to allow A-Z & 0-9 but it requires atleast 1 letter
o
and minimum 3
idk looks like it in still mode
Imma try 16 for now
well here's no limit
^[a-zA-Z0-9]+{3,}$
if you want 16 for limit of text
add a 16 after the 3,
so it'd say:
^[a-zA-Z0-9]+{3,16}$
I just tested this on a console:
oops
that's only 2 characters not three brb
@naive agate try this:
^[A-Za-z0-9]{3,}$
?
you can use A-Z + numbers.
you can use caps/non-caps + numbers together and it works fine.
what site are you using.
and what's with the /
in front.
I'm using plain java
and mine works fine
that
its JS btw
the A
^[A-Za-z0-9]{3,16}$
Okay
you didn't mention that before so lol
I've got everything almost that you need.
I just need to add a length.
but can you put your list below @naive agate ?
Ye sec
doing it
got it nvm
check('username').matches(/^(?=.[0-9])(?=.[a-zA-Z])([a-zA-Z0-9]+)$/).isLength({ min: 3, max: 16 }),
I good
ew
nothing just a bit long but if it works it works.
I've got my own just doesn't do the length built in.
show me that does that shorter?
busy adding length regex.
mk
No length built into the regex.
^[A-Za-z0-9]*(?:_[A-Za-z0-9])*$
So was it shorter and still working for ya?
wut
;p
ieu
@naive agate Im keeping that
@untold hearth keeping what?
That gif @naive agate
The fact that the sea lanturn is 4x4 concerns me how big that structure is in #showcase
oh
My finally got my EDU benefits from github
gg
what does that mean?
is it personal or is just a bunch of videos you watch, take a test, then you're an "expert"?
It's a questionnaire.
I could likely apply as a campus advisor if I do start helping my old school for one of their CS class.
@primal pecan Quit being dum
@regal juniper wym being dum.
;o
where did I put that?
He's watching me program
Yeah, you wouldnt have to if you just JOINED US
But noooooooooo
Kyle never joins us
D;
Mhmm
Yikes
12:31am tired as hell and sick as hell.
I also have a doctors appointment at 10am, and likely wanna wake up at 8am and go for a walk.
hopefully by tomorrow there's a answer for #development else it's time to go to java docs and research.
Where did the memes channel go? :(
https://cdn.discordapp.com/attachments/498199825544642561/659998019864756245/Screenshot_2.png
https://cdn.discordapp.com/attachments/498199825544642561/659998244553621524/Screenshot_3.png
https://cdn.discordapp.com/attachments/498199825544642561/659998531649536010/Screenshot_4.png
https://cdn.discordapp.com/attachments/498199825544642561/660001623182934026/DRE_GIF.gif
How do I get access to that?
Access to what
Meme channel
Idk bruv
It should be a public right for every civilian of this nation, what type of discrimination is this?
yes.
ok.
Blame discord
Or is that a discord thing
Didn't crash for me?
Didn't crash for me
Oh no
Someone sent the thanos snap gif
@fallow crow go into your settings and disable Link Preview under Text & Images
Try that
But I want that on lol
@pallid raptor Please use a valid budget, you may find the channels guideliness in the pinned message of the channel
But yea itโs probably he Thanos snap exploit
https://devforum.roblox.com/t/48k-yr-salaried-scripter-position-open/417297?u=themeganplays
Imagine MC paying this
Full-time Salaried Scripter Needed: Looking for an experienced, self starting and passionate scripter to come onto a ready to release project. This position is a full-time position for a game that is nearing release in the next 2-4 weeks. Dreamland Studios About Us Weโre D...
trying to make a skript joke
xD
oh man
I was about to ask for help with my file sorting issue but I have no idea where to start ๐
I didn't code any of this html/php
lol
@woven prairie https://www.patreon.com/sonicether
mineman dev makes 50k per month
ez 612,000 a year
yeah nothing major
just announce a 'release setback" statement every now and then
become a millionaire in no time
Kek
To be fair, I'd expect the guy making one of the most widely used addons to one of the most popular features of one of the most popular MC clients to be making serious bank
๐ I donโt count that
How they making that much
Magic
welp time to move to roblox
kek
Woke up to being tagged
๐
@velvet crescent ?
The like on meh plugin
Ah 
Adding join/quit commands, as well as switching over to a model system rn 
Cool!
@muted fern When did barry last take drugs?
y
This music is high base
ยฏ_(ใ)_/ยฏ
It sounds like a wanker's search history haha
Well its not mine
its a random internet radio
๐
If i ever get my station back up and running will you use it?
Idk
Frozen join still got github? @velvet crescent?
The old one no, the new one yes
What is a model?
Nice though
Not according to Piggy & Lemmo
haha
I'm joking i honestly have no preference

But people dont like it because its basically a single ton but doesnt do what a singleton is meant to do
manage its own creation and destuction
because the plugin manager does that
What should I use instead of that then..
Dependency Injection?
private FrozenJoin plugin;
public ClassName(FrozenJoin plugin) {
this.plugin - plugin;
}
//
ClassName cn = new ClassName(this);```
Frosty
I won a giveaway 2 days ago, but I was sick and unable to come request it.
Is there any way to still get the stuff ?
Message Plajer
Sick on Christmas, poor you.
Since he was the host of that giveaway
Yeah actually I didnt feel to great yesterday
Delete project button
The Delete project button is now available via Project Settings -> Info. Feel free to set up sandbox projects, play with them, and delete them as appropriate.
FINALLY, @primal pecan @sterile parrot
finally
Took forever but finally here now
For what
Delete button
@fringe sigil what are you on about
there's nothing wrong with a static instance getter for spigot plugins
Ok yes
Thank you, changed back cause I was getting annoyed by having to define plugin
keep in mind this only applies to plugins
as they're already singletons
don't ever use that pattern for your main class outside of spigot plugins
A singleton manages its own creation right
But thats not a singleton just a static getter anyway
Im not hating I used this in some of my active projects still
I'm not sure if a singleton manages it's own creation
Well activley used but dicontinued
I've never heard of that
point is though, javaplugins are already singletons, you're not doing any harm with a static getter
think of it as a utility adding onto an existing singleton, not creating a new singleton
Oh maybe not
that blue is aweful
Please god no
what
use the first design but make the blue a little bit light
Its javas default swing theme
there's no excuse not to use the first, when you've already got it made, and all it needs is a font colour change
Yes to actually use that theme Id need to export the synth with my program which I'm not doing
Probably not even licensed to
So Id use the default black and green/black and white theme most likely
Anyone need a plugin made? free, os, nothing too complicated, preferably a utility, not a game altering plugin
hello pig
hi
how's it going
so, if i'm understanding
you want me to create a hello kitty plugin
but with a pig
not a kitty
and it's going good
nah was just saying hello
o
:))
wut
@proper fable
ah
This fucking assholes ye
F.A.A.H
Waiting for him to go extinct
nice.
a random spawn plugin
maybe ask Clip if he can put it on his Spigot.
no
or ask to put on FC's.
no
or you just trying to get ideas for three resources?
you do have two auth enabled correcto?
join messages plugin
like two auth enabled etc?
Gaby no..
that's simple as hell.
kyle, I've got over 2k posts on spigot, and 1k positive reactions
I meet the req
and yes, 2fa
Scoreboard plugin.
Make a clear chat plugin 
Nothing too hard nothing too simple.
too complicated, and good ones already exist
make the fly plugin then remove it xd
why more scoreboard plugins
you can't just remove it.
planes?
:))
@azure egret give Pig a idea.
I was going to give you a idea for a simple plugin but you don't have autosell.
A item based booster instead of just commands utilizing NBT.
Chat emojis and gifs
Yea send 500 messages a sec to make a gif ๐
not even a bad idea
wonder what "fps" mc could handle
might be able to do like 7 max
-1
eek
Nothing better than sending 400 k messages to console in 10sec
stick man?
it wouldn't be like that frosty
just grab a lot of black and white squares.
no
you're overcomplicating it
packets aren't required
I can make this without even touching bukkit
Yea, but I'm saying like if you'd want to use something else than chat messages
o
\โฌ \โฌ
black slash?
\:emoji:
Have fun Piggy, you should finish reviewing my request first tho ๐
ah never used it
eta 1 week frosty lol
Ah
low priority
It's gonna get denied but still
fyi
most things can be pinpointed to "lack of solid obliging code"
lack of oop obliging code
@eternal apex make a scoreboard plugin
nah
repeated code
A nice free open sourced one
he said nah
^
quickboard is good, I think it's os
too "many"
Make a custom OS spigot ๐
also radar would get mad sorta
soonโข๏ธ
radar = Niall
oof
I usually just use my Scoreboard Lib I made.
im gonna make my own server implementation
I mean I'm changing a lot of things on it Piggy, so expect some things to change :p
that trans compiles to bukkit, nukkit, bungee, velocity, and sponge
and ofc my own server
like i've already got that with my framework to some extent
it's just rather limited atm
goal is to provide full functionality, for literally everything documented in the protocol
which also inversely means no nms
I'd be remaking that
๐ซ
what's the face for?
all the functionality in nms would still be present, but via a proper api
What kind of a server piggy 
java
I thought it was calculator..
common misconception
No I meant about the scoreboards
There are enough scoreboard, free as well
Use InfoBoard or QuickBoard or something charlie
Best scoreboard there is is KiteBoard 
back in 2016-2017.
\โฌ
TrashBoard hot plugin Frosty.
\โฌ
FrozenBoard
Fuck no
Sounds cool actually
Would freeze 24/7
Lol
k thanks i'm using that
you could likely make it bigger tho
I forgot the size of lines a chat is.
and the exact width in emojis
looks so much better in notepad @eternal apex
"script" 
Isn't this one nicer https://paste.helpch.at/hiluhusoya
feel free to convert it
thanks
Iโll prob push for making a bunch of nice free plugins when Iโm home later
Imagine, jk nah I have some ideas in text file that have been there for ages
Itโs not scoreboard tho
Yeah thats the sad thing
I have a load of ideas and ill probably never get round to them ๐ฅ
Same ๐๐
That hand is a bit quick for waving
Is it just me or is IPhone apps not organized alphabetically
in your Cellular settings*
Do you think a couple of people could help me
I sprayed my shoes earlier so hopefully they last well in the rain
Cuz they are suade and never had a pair before
@eternal apex https://paste.helpch.at/azowahapaf
you're awesome
ye
Youโre gonna make a scoreboard animation thing?
yep
Dang I'll make some more later
that's what i'm doing chaz
Woah
scoreboard animations
Add a dank API, cuz people could use it for minigames
Like it appears for the winner
you can use & codes
ah okay gucci
Iโve been thinking about doing recodes on my plugins, utilising FeluxLib and instead of shading it, have them download it beside them but idk
Then it would mean only 1 โpluginโ is heavy file size, rest would be light (e.g. for mysql stuff)
@final grove whatโs your opinion on the AirPods pro?
Oh
They are finally in stock, and idk whether to upgrade or not
I'm still unsure
I have series 2 rn, and they are like ยฃ249 in UK
so $300 in US
pretty hefty, but idk
The reason I got them was bc I had to have my airpods volume at like max to be able to hear the music
when in school etc
Ye I usually turn mine up loud, but the sound bleeds
but with the pros I barley gotta make them up
more bass?
I haven't tested a song with bass yet
oh
I'm buying airpod pros today
@eternal apex https://paste.helpch.at/evitucegod
thanks
ugh unsure for name, OneUseItem or FeluxItems / FeluxVouchers
I'm fucking crying watching drlupo's reaction to getting a $1,000,000 donation from twitch
It's not Object Oriented tho right
no
Like java
only thing you need to know in lua is a bit of syntax, and tables
So compared to java it is a breeze
Cause it took me like a year to get comfortable with java
it's not a compiled language
it's interpreted
python, js
except it's better than both of those imo
How come
I know nothing about other programming languages since I got 'recently' into programming in general
Annoying to get a image but atm my songs are getting synced to my watch
But does Lua have variables and methods and such? or what
What is it that it doesn't have that java does?
well, static types
Not that I ever used the static keyword pretty much lol
I'm not talking about the static keyword
in java, you generally declare a type before your variable, unless you're using var's type inference
like
String str = "blah";
you don't do that in lua
you do
str = "blah"
ah I see
the former is called static typing, the latter is called dynamic typing (or duck typing)
But I mean going from java to Lua should be a lot easier than it was to go from nothing to java
maybe
@eternal apex
added ur shit back
Cause I mean a lot of concepts that applied to java apply to other languages such as Lua, no?
wb tig
thanks babe
the noob is back 
wb tiggy boy
what is lua used for?
Oh, that's great
hmm
Is it not ideal to use it to make a simple 2d top view videogame?
you could try, it'd be a fun project
maybe start a bit smaller though, learn the syntax
it's quite different from java
Yeah of course
and in case you were thinking of it, I won't be able to provide support
I haven't used lua for a long time
I know haha
I mean I didnt expect you to
But I am looking for a language to learn which is "good for making videogames" and worth learning
c++
c
both languages worth learning
learn c first, learn c++ next, then go back to c
lua isn't really a game language
@elfin minnow you should ask FC if he can move @final grove's xp to @elfin minnow
or you moving it the other way around due to that nitro having 3 months or whatever it is?
Is C hard to learn?
lel
But I think that going from java to C shouldn't be too tough right?
no double xp sadly tho @elfin minnow xd
unless you ask FC for like a role of mine till yours expires.
the syntax is similar, but that's about it klyser
"Nitro" Booster you'd likely be the second person with it prob
what did you do wrong pig?
lol
:f:
Dang this nerd got his account back

@frank pasture e bird account of Tig is back.
Juck gradle Piggy
Gradle is good wym.
my deploy script utilises every thread on my cpu, to the point where my pc visually lags, yet it still takes like 2 mins to execute
How far are you with the plugin Piggy?
are you going to center the animation?
that aint my job
on the largest size of chat.
animation creator can do that
Font Info Enumeration: http://pastebin.com/9Be2DF2z
Method to send: http://pastebin.com/BADd6K43
Many just recommend using a...
make one
eh
omg it fucking works
your scheduler?
well yeah you are sending a whole chat of messages ain't ya?
ye
maybe make a gif or video and put it below.
will in a sec once i fix spacing
Once you're finished DM me it so I can see or ping me, I'm out for today/tommorrow morning
Got like 3 min before I gotta go so :p
do the squares look different without the texture pack?
i don't have an rp on
Damn
and you decided to go with the white stickman over the black one?
Now colour it
or extend it to the full size of chat (height wise)
Did you base it off a list type system per animation?
guessing fps is delay in scheduler?
ya
Very nice ๐
Guessing that would lag the hell out of the server if it were a larger gif
good thing is though
this will compile for nukkit, bungee, sponge, bukkit, and velocity
without me doing anything fancy
class Animation extends BaseAnimation {
private String name;
private List<String> lines;
private int fps;
private boolean repeat;
public Animation(String name) {
super(name);
}
public Animation play() {
// create Scheduler()
// update animation
// check if it repeats
return this;
}
}
Just a little something I would base it off unless I made a custom object per line with it's own settings.
BaseAnimation is just a file system with the base object.
i'll push in a sec
I'm about to head out for lunch so maybe will do a pull request later.
potentially
Guessing you use your framework?
yep
I'll have to look into it probably but still will likely do a pull request.
Also do you know a place to make a server correctly as soon as you assemble your plugin with gradle?
At the moment I have to click run for a java application and do /stop each time.
I use intellij's run configuration as action plugin, then I have my servers binded to ctrl + 1 - 5
1.12 - 1.15 + bungee
ah may just need a bind system.
I have my clean task binded to my lower side mouse button, and build to the higher side mouse button
what about the stop does it just terminate the java application for one of the key binds?
I use dcevm, so I don't need to stop
will need to look into "dcevm".
I just hotswap any changes I make
I know there's a plugin for hotswaps but isn't there some issues with it?
not many
I'll favorite it and will check back later.
Might make 2 'voucher' plugins
One free, one paid
Free one having decent features but no "active" support
ye, one will be basic and then a proper one
Not too basic tho
free one called OneUseItem (cough you prob know why)
and then FeluxVouchers which is a continuation of rv but paid
Make it FeluxItems then tho
ye can work, I need to prefix my other plugins soon
FeluxPouches, FeluxTools, FeluxTags
Which one of you two nerds had a spawners idea. Was it u or kyle
wasn't me
nerd
I might start requiring FeluxLib
so I can minimise file size for my plugins which depend on it
Well that's an extra plugin then tho..
ye, but 1 extra plugin for all my stuff
meaning small file size for every plugin minus lib
People ain't gonn aliek thta
Good Morningggg โค๏ธ
How big is feluxlib?
i think for people that have all ur plugins - like me, then itll be better. but for ppl who only have 1 of ur plugins, i think they wouldnt like it
ye exactly, cuz the command system felux plugins use is integrated into the lib
It's 6pm ere and I'm off to somewhere
its 5pm here and i woke up 2 hours ago
Cheeky will be at 3 am when I'm wasted
i actually cant tell
What's the context
deluxechat plugin
video
Idk if he means my vid is long and boring
or the guide / wiki is
I think he's saying the docs are boring
i think hes saying the wiki is bad
cuz at start he said i make it easier to use
Speaking of the wiki, that needs to be finished in 2020
New config and update checker in VP are done. Today we're working on commands 
poggers
Glare got any clue if we can use gifs on hc wiki
Yikes, on mobile rn
Google the software name
wiki.helpch.at @regal juniper
it was like ยฃ300, wanted to cop
Yes you can use gifs
Thought it was fucking.bomb
thats isis.today
You just link them from Imgur iirc
Ye its MD
I forgot they moved to GitBook also
Shoot, that's another thing I have to do is write the wiki for VP
We'll get there slow and steady.
Gitbook? Isnt it bad, esp that you have to pay for dark theme?
paying for dark theme lul
Literally all their dark theme is
You don't really need a dark theme for a wiki though
Unless you want people to use it

Matt use Vuepress and looks pretty good
Yeah I used to use Vuepress for that
I just moved away cause I didn't want to host it
Github pages?
I mean yeah that's possible
Vuepress basically generate the html code which can be used anywhere
Charlie, on my banner thing, click the different links, those are different pages on the website. You see how fast those load?
It doesn't even like flash the page or anything, it straight up just shows it
It's a feature of Nuxt
Boutta write my first kotlin class boys
I should use that for bans.io
if I make it a thing
items:
# This is the items identifier, it needs to be unique.
example:
# This is the core settings for your item, e.g.
# the name, lore and material type.
item:
name: "&aExample Item"
lore:
- '&7Right click to redeem!'
type: PAPER
data: 0
# These are the settings for this item, such as
# the commands to run and limit per voucher.
settings:
commands:
- 'asa addmultiplier %player% 3.0 1h'
limit: 1
# These define the areas where this item cannot
# be redeemed, useful for PvP areas for example.
blacklist:
worlds:
- 'some_bad_world'
regions:
- 'some_bad_region'```
time to make this bad boy a thing
@CommandAlias("vp")
class CommandSetCounter : BaseCommand() {
@Description("{@@descriptions.set-counter}")
fun execute(issuer: CommandIssuer, amount : Int) {
if (amount <= 0) {
return;
}
// Set the votes needed to the command
// Send message saying counter was updated
}
}```


