#off-topic
1 messages ยท Page 241 of 1
'''jeff'''
the thing that sux with the update is older versions won't be supported if uploaded on v1 api
We can just reupload them all?
like if you updates your expansion 10 times only the latest will be avail in v2 to start
Or do we have to change code inside the Expansion pluign?
as j didn't store the jars specific to the version
no u don't have to change anything and it only affects your older versions that you uploaded before v2 is released
only the latest version will be avail to start out on v2
if you want to upload the outdated version of your expansions u can though
and they will still list in numerical order
So we just reupload them all as V2 and then have them go from there.
Some of them haven't been updated in 200+ days
I think it'd be ok
it won't hurt either way, just won't be able to download versions older than the latest to start out. any new version after will populate the version history
I guess that'd be ok
I'm also switching the plugin functionality with the api
I'm not sure if I want to cache all the expansion data in the plugin
thanks clip โค ๐ ๐ฆ
did it work
it didnt when i reloaded the essentials and deluxe tags
and i restarted the server to see if that would help
and then it worked
so ๐
Would it be too much space Clip?
I honestly don't know
@quartz cypress df how u get it to work
I don't mind setting up my dedi as a CDN for you if that was needed.
I convert the json object from the site to a java object
@pure bane how u make DChat plug into EChat
it contains let's say 50 strings
with 50 chars or less
not actually 50 but let's say 50 to give cushion
not even close to 50
but it will get bigger every version update
3 new strings each update
Add in a link players can click to visit the version history
and allow them to download via there
on the website
nah I can do it all in game
what j was thinking is maybe only store the latest version info
That would work. Like I said, if you need a CDN, I can set one of my servers up for you so you don't have to sorry about bandwidth / space.
and request the version history when needed in game directly from the site instead of cache it
Mhmm I like that
Oml the picture repeates like 6 times on the main page.
You need to pageify it
Is the website used that much? I mean that'd work tho
idk
Next to the name make it a 50x50 or whatever
id like to add a system to allow users to register
And for Author, allow the name to be clickable and list all the expansions a user has under extendedclip.com/user/clip
etc
and then assign a trusted tag to them
then anyone can upload expansions but it would state if it is a trusted upload or untrusted
or maybe have to enable untrusted expansions in the config
to fetch info for them
I can setup so a few people could moderate them as well
yeah probably
<form id="Form1" action="_r.php" method="post">
<div style="width:535px;" align="right">
<label>Username: </label><input type="text" id="user" name="user"><br>
<i>Must be at least 6 characters</i>
<br><br>
<label>Email: </label><input type="text" id="email" name="email"><br>
<i>Used in case of forgotten password</i>
<br><br>
<label>Confirm Email: </label><input type="text" id="emailconf" name="emailconf"><br><br>
<label>Password: </label><input type="password" id="pass" name="pass"><br>
<i>Must be at least 6 characters</i><br>
<div style="margin:5px;"></div>
<label>Confirm Password: </label><input type="password" id="conf" name="conf"><br>
<i>Case sensitive</i>
<br><br>
<div class="g-recaptcha" data-sitekey=""></div><br>
<div class="button">
<a href="#" onClick="Validate();return false;"><span>Register</span></a>
</div>
</div>
</form>```
You could make them varify with Capatcha too
I also like to use this little script to validate stuff
<script>
function isEmail(email) {
var regex = /^([a-zA-Z0-9_.+-])+\@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
return regex.test(email);
}
function validUser(username){
var regex = /^[a-zA-Z0-9_.+-]+$/;
return regex.test(username);
}
function Validate(){
var flgIsValid = false;
var e = "";
if($('#fn').val() == ""){
e = e + "\nPlease Enter First Name";
}
if($('#ln').val() == ""){
e = e + "\nPlease Enter Last Name";
}
if($('#user').val() == ""){
e = e + "\nPlease Enter Username";
}
if(validUser($('#user').val()) == false){
e = e + "\nUsername cannot have special characters or spaces";
}
if($('#email').val() == ""){
e = e + "\nPlease Enter Email";
}
if(isEmail($('#email').val()) == false){
e = e + "\nPlease Enter a Valid Email";
}
if($('#emailconf').val() == ""){
e = e + "\nPlease Enter Confirmation Email";
}
if($('#email').val() != $('#emailconf').val()){
e = e + "\nEmails do not match"
}
if($('#pass').val() == ""){
e = e + "\nPlease Enter Password";
}
if($('#pass').val().length < 6){
e = e + "\nPassword must be at least 6 characters";
}
if($('#conf').val() == ""){
e = e + "\nPlease Enter Confirmation Password";
}
if($('#pass').val() != $('#conf').val()){
e = e + "\nPasswords do not match"
}
if(e == ""){
flgIsValid = true;
}
if(flgIsValid){
$('#Form1').submit();
}else{
alert("There are the following issues:" + e);
}
}
</script>```
do you think that is a good idea
The accounts? Ya
with trusted and untrusted
well yeah
if($response->success == "1") {
$sql = "SELECT Address FROM Tab_BannedIP WHERE Address='" . $address . "'";
$result = $conn->query($sql) or die ('Something has gone wrong, try again later4');
if($result->num_rows > 0){
header("location:register.php?e=4");
exit();
}
$sql = "SELECT UserName FROM Tab_Reg WHERE UserName='" . $user . "'";
$result = $conn->query($sql) or die ('Something has gone wrong, try again later3');
if($result->num_rows > 0){
header("location:register.php?e=1");
exit();
}
$sql = "SELECT Email FROM Tab_Reg WHERE Email='" . $email . "'";
$result = $conn->query($sql) or die ('Something has gone wrong, try again later2');
if($result->num_rows > 0){
header("location:register.php?e=2");
exit();
}
$verified = bin2hex(random_bytes(64));
$sql = "INSERT INTO Tab_Reg (id, Email, UserName, T, Verified, Address, ForcePass)
VALUES (NULL, '".$email."', '".$user."','".$pass."','".$verified."', '".$address."', 1)";
$conn->query($sql);```
And boom if you setup the MySQL DB
It'll handle that
Of course you'd have to modify my register code to fit your needs
But that's a basic signup
id just use django api for creating and managing the users
Ahh ok
it already stores in db, has permissions, etc
You could add total downloads feature to expansions
To get how many times it's been downloaded?
A small little feature
just a counter per dl request
Yup
Well then you could add in serverIDs that generate when they install PlaceholderAPI
So you can't abuse downloads
or I could limit requests on the site
How'd that stop people from abusing?
only allow x requests every x mins
That could be iffy
or I can just moderate and compare to bstats
That'd work. I just learned about the custom charts you can make on that
and started using those which is hella awesome
shows in real time how many servers use your expansion already
so if only 2 servers use it and it has 10k downloads something is up
Ya I average around 100 servers using my plugin right now
Idk how many are using the Expansion
Ya Im not surprised
Im just happy to hit 100
That's a huge mile stone for me
That and Im 6 downloads from hitting 5K
idk about the blue lines
hold on
I got an idea
what about allowing ratings for expansions as well
you could rate 1 time per expansion per server
but also change your rating
ill make it fool proof tho
ill require the expansion be running to rate
what if you could rate from in game o.O
that way u can't rate expansions you don't or haven't used
that's what I mean
from in game
would send rating to the site if you meet conditions to rate
then server would store your eating with up that sent the request
ofc ips wouldn't be shared
just used as an identifier for your server
How about require them to have it for more than X minutes?
Or do what bStats did and generate ServerIDs on startup
well then if have to track that info server side
or use bstats server id
and disallow rating if bstats is disabled
Is it too much work to track server ID
well I don't like it because they could essentially change it
ip would be better since you aren't gonna be able to constantly change your ip the server runs on
the I'd thing could be abused
I've had issues with that
For my server listing
I had to hide null IPs because the IP that some hosts give users arent public IPs so their different on the outside than inside the node cluster.
Idk if that made sense ^
Am I og now? https://namemc.com/profile/TestPlugins.1
yes
danke
LOl
that's far from og
or semi
if you want og peep mine https://namemc.com/profile/Truce.1
The most OG username is currently available
https://namemc.com/name/1337_H4X0RZ
How u going
@pure bane @muted fern can I get a special shoutout from the coolest dudes ever
Still waiting for that one time when u said u would join voice
Parts
and trusted/ untrusted expansions
clip
wat
wb
clip stop coming online when I say your name.
sucks I gotta work tomorrow night
rip :/
so tired of work
๐
work sucks
yes
What if it's the block game work?
@quartz zephyr
lol
I think it's kinda cool
hi noobs
Hello Internet! And welcome to Behind The Meme
oic
lol
@muted fern you're a babe
Why are there no decent enchant plugins D:
make one
Lol that guy @pure bane
Not like it says '''Since we have grown 1000+ members any messages breaking our rules will be removed without warning and you will be kicked or banned.'''
Eek
ew
Basically we make premium sites
like
I just got $150 for a simple ass youtuber's site
and i'll finish it in under 10 hours total
8 hours of which will be done making the admin panel for him to upload files to be displayed on a page of the site
oh, can't say, NDAs
super legit business ;3
like, actually legit, we gonna register an llc in a few weeks
called roar development
we have a twitter handle, @RoarDevelopment
no logo yet, thats gonna be bought with the 150 we made
brb
back
so thats what I do now @elfin minnow
you can't sell plugins over 19.99 USD on spigot?
yes but you need permission
lol
Scrub, it will be pretty hard to make a plugin worth that much
ik
you never know
do you guys recommend i anyway
?
#Room1 ๐
i cannot get any youtube video to play and its making me want to suicide myself.
okay turns out that my speakers just shot themselves and caused some weird problem that stopped any video from playing. i just disabled them and enabled them again and now everything is good.
It seems a fourth has left us... what is happening this year??? https://www.spigotmc.org/threads/another-member-lost-in-our-community.256523/
Damn.. a close friend as well ...
People die everyday B
You never know I might be gone tomorrow
If I died who would take over my plugins
Not me.
Fuck it just let my plugins die with me
...
If I die you motherfukers better make a rip clip plugin
;-;
What would it do though? @pure bane
randomly place my head all over your server with a sign next to it that says rip clip, one of the greatest to ever live
cringes
Shortninja, ChefJava, Frash23, and now Proxymist?
There was someone else
I never heard about it.
After shortninja
Pretty sure that was ChefJava
pretty close to shortninja
No
It wasn't
Trust me on this, I remember viewing the thread
so srsly
@eternal apex iirc, there was RogueRage too
Yes, I think that was the person I was talking about
@elfin minnow extension list?
ABP /\ Grammarly /\ Steam Inv Helper
abp?
AdBlockPlus
right just remove them all then restart chrome
uh no actually
@elfin minnow Remove steam inv helper
Im appealing my main accounts ban
gg
and providing proof
that my versions folder and err thing
is clean of hacks
and wot not
Boi, where the https at
Just setup my new chair
@willow yacht I got https on my shit :3 https://i.mxs.sx/8wapw.png
Good boy. Also, answer ur dms
which ones
@elfin minnow whered u get a cert from and why
Geez
yeah
Lol
How do I setup the auto responder now? Or do I need to donate more than $10 for it
On another note, does anyone fluently another language besides:
English, Chinese, French, Dutch, Japanese, Swedish, Hungarian, Romanian, or Slovak ?
I got the auto response bt w:D
Ugh I need to think of what to put for the auto rewsponer
I'm American. I can barely speak fluent English. Let's go public schools.
put a little message saying Glare's Auto Message and some basic info
@regal juniper
Lol
Anyone on here know how to advertise thier server well?
Serverpackt
last night of work
wym b
work tonite then off for. a week
gg
holy shit
only 8
hi
48 an hour? Where do you work? LOL
overtime pay @regal juniper
Ahh
Vroom Vroom
One big ass truck
gonna take me like half hour to do
for one shipment?
clip = truck driver. confirmed
Like I think it'd be cool to drive
do you drive the full truck then?
No just half size
I drive forklift
spoonlift
doing stuff
Weedssxs
kk
why u delete the msgs? xD
/clap
ill look
Just google "LetsEncrypt Ubuntu"
wots dat
Going back to my work now.
have fun
do you have your letsencrypt setup to auto renew when expires
Me?
whoever
"finally" why wasn't it before?
nah it was supposed to but wasn't
cuz the script wasn't restarting nginx
after it renewed
FYI your support page via your website is broken.
ya ik
Did you want to try using the bot yet?
how
You can either add it here or I can give you a test server to try on.
Go to #335627263175294989
getting ready to leave work
since I'm getting off early I am going to go home and get on the computer
who's on
me
hi
yo
what u guys doin
Building for a server.
remaking prisoncells
Interesting
Coding custom tools for Blockworks
sup arcaniax
sup noobs
hi
Ey
honestly last person i expected to run into here
Well i am a Developer so yeah
thats true
Do i know you though ? XD
"Developer" as in the Plugin Developer, or Config Developer
Skript or Java?
config developer xD
i think ive ran into you on builders refuge before
Mitch, java
Piggy, there are strange people out there who think Skript is Plugin Development.
other than that i just know you due to gobrush and builders utilities
Nothing that interesting on my spigot though
Ah i see
Glad you know some of my plugins
There's people who have never coded anything and call themselves developers
well i build, only reason i know them lmao
Or some call themselves coders for some reason
Don't you know head database too then?
Helps with heads for building
didnt know that was yours actually
It is
nice, yeah i use that too
Sweet
hire me
How much per hour ?
over 9000
No
You're worth like 0,001 an hour xD
he taught me lots!!
Jkjk
rookcraft is the server
0.001 is more than nothing
rooktube is the guy
SHH
True
same thing
nah
one is mineplex the other is an idiot
But 1000 hours for a dollar is nothing
Lilabell got a portfolio ?
I don't even call myself a developer
That preview is hot
I vouch for Lillabele.
just a person haha
A dad*
o
nothing like steak n shake at 4am
So, how is DeluxeDaughter and EzSonPro
get me something clip
this is bad.. very bad
Can u get me some fries
lol
Well funny i don't need a builder myself so no need for vouching :p I've got people in blockworks that could do things for me if I really needed a builder :p
pfft, there all busy with the current comp on BR lmao
I'm starving
Was just vouching cause i can.
Fair enough
anyways be back soon
Its only a 24h contest
ssshh
ur famous
Or some do
Nah
Too be fair being "known" in minecraft isn't that big of an achievement
sure it is
Well for now i suppose
if you join hypixel and people recognize you then you are Minecraft famous
XD
haha
Cause that's what everyone really wants
we have a hypixel admin on here ๐
XD
who
AgentK
he ain't shit
lol
He's head network dev for hypixel
If you join Memeplex and people do recognize you, you need to quit life.
he said deluxemenus was a good plugin
<@&232375781114773505> get hypixel in here
No offense to hypixel but i wouldn't wanna work for them
Blockworks is a lot more relaxed
I wouldn't want to work for any server
@pure bane Did u know manacube uses deluxemenus? Which is a decently sized server
aside from you
Are you a server tho ?
Servers*
You're a person afaik xD
Arcaniax, are you blind, it clearly says it in his name funny "server" cube
serious sphere
Good point
UnfunnyBox
I just can't picture myself letting a 15 year old try to tell me what to do
Unfunny isn't even a word tho
wait a second... @pure bane did u get glare to name the bot "mag" cuz magazine | clip
even if they are paying me
clip, shut up and eat ur steak
It's just fun in blockworks because i have a paid position i can work whenever i want how long i want on what i want and still get paid for it fairly well
I got a bacon cheeseburger meal and chicken strips
Well eat it.
As dinner i hope ?
@willow yacht letting a 15 year old try to tell me what to do
4 am dinner
@muted fern Thats exactly why I said it lol.
Haha
same spot still?
I'm still waiting on these slow asses
2 other people were in front of me
Crazy people
now just 1
Hungry*
Maybye the rest of the coders on the eastern seaboard is there.
Lol
Hungry @ebon storm
it's Saturday nite
yes
hungary
hungry
so most likely drunk people getting food after leaving the bar
Hungry
angery
Who says u need to tag everyone to get this chat moving?
Lol
me
inb4 @everyone
Drinking and driving. ๐ค
no one talks to me
@pure bane
@pure bane Get tagged.
@pure bane
@pure bane plugin broke PlZ fix
@pure bane hi lets not forget @rugged slate
Or?
Yes.
would anyone besides that one person use it
i mean what
Lol
spoilers much
i saw dat
@pure bane
No TIME
minecraft:iron_barding + minecraft:clock
I wouldn't use it most likely, cuz idk what it would be used for
Mitch. Would you use it if Aikar made it?
Hahaha
XD
Very very funny..
Very very funnycube..*
ha.
No.
?
Understandable, have a nice day.
No.
?
Understandable, have a nice day.
No.
?
waited 20 mins and they ducked my order up
Understandable, have a nice day.
?
No.
good chat
we should do it again some time
had to go inside n get my shit fixed smh
Understandable, have a nice day.
?
sue them
tell em whos boss
No.
?
like damn fam it's 4am barely any customers and u still ducking up
damn ducks
Understandable, have a nice day.
good chat
we should do it again some time
No.
?
my ass hungry af
Understandable, have a nice day.
good chat
we should do it again some time
No.
?
Meme
memes
Understandable, have a nice day.
good chat
we should do it again some time
No.
?
Understandable, have a nice day.
good chat
we should do it again some time
No.
?
Understandable, have a good day.
good chat
we should do it again some time
Sure
k
?
good chat
we should do it again some time
?
good chat
we should do it again some time
Ok
?
?
?
?
?
?
?
@eternal apex stop spamming.
?
Sorry I'll translate, Oi pig stop spamming
o ok
smoking and then I'll hop on
clip..... Are those tiny feet I'm seeing?
o_o
ok
did u see my weed
ye
second time i've seen ur good stuff
erm
damnit
no
fuck crap i'm not gay I swear
mhmm
clip just wondering
@fallow crow Want some $9 water?
is there another chat that we cant see just for trusted and admins?
@cold tendon there's quite a few
Don't you remember yesterday @fallow crow
what are they about?
two*
XD
yuop
can you see my nsfw channel
want to join it
ill make a perm
kk
thanks
I don't ๐ฆ
u do bby
Ty
@willow yacht Just let me know if u want in
Might as well, but i'll probs leave within a few mins xD
Perms Granted
Im just gonna enjoy this screen https://i.mhdv.co/32467d788f.png
Lol
Is the channel actually filled with NSFW stuff
There should be a way to escape the nsfw room
Lol
Without asking for perms to be removed.
Isn't there a cmd with Dyno like .iamnot nsfw or something
@eternal apex There is an idea for ya, add a cmd to Gary to easily leave the nsfw chat.
Anywho, back to trying to learn how to use multiple maven modules cuz apparently im dumb
@muted fern can I get access? :3
@muted fern Remove mi perms pl0x.
done
ty
want me to make ?joinnsfw and ?leavensfw @muted fern for gary?
Yes plz piggy
Doesn't Dyno have a thing to do that
that would ruin everything I've worked for over the last year being in spigot
Why would I do that?
People have ยฏ_(ใ)_/ยฏ
Well, if you change you're mind, I'm happy to attempt to make those commands
Make it so the bot can manage perms, but put it at the lowest thing
so then it can't really manage any perms.
lawl
mitch if u wanna figure it out for me
Nty.
it uses this, https://qeled.github.io/discordie/
Why not discord js,.?...
xD
Lol
It is a JS bot, smh.
discordie uses DiscordJS i think
--
magic
millions / sec
it keeps //undo for u even if u log off
shit it actually looks so cool
Well rip
I hope you have a backup
yeah ez
Ah nice
Fawe is pretty nice indeed i use it to place down blocks with my custom tools
I found the edge of this strange cube
And also hook it into the gmask and undo
Fawe used to be a lot more buggy but it's pretty stable now
Pretty cool effect
I needa try duplicate it
lol
da phuc is that
4 other failures ?
ez 12mil w/e
fawe has memory leaks
restart the server after ur sure everything is gone unless u want to have high ram usage till the next restart
@elfin minnow my shit is better, cuz I have i.mxs.sx insetad of mxs.sx/i/ :3 https://i.mxs.sx/vhi1u.png
-not caring-
go thru my ss
idrc
I'll protect it l8r
or rn, by setting up chmod shit
@wanton horizon
@wanton horizon try now feggit
@fallow crow Its not as special, you use ShareX.
@willow yacht so does tig
Neither of you are as special as me... sooooo
And? Windows 10 can do what I do aswell..
cuz im not gay
I used to have my own lil batch script that I wrote so meh
batch, what a meme
but sharex lets me do shit like this
Litterally just did the chmod?
like a few min ago
why would I already have written a 403 page
what about https://i.mhdv.co/123.png
lazy
can you blur, pixelate, draw, highlight, put text, etc on ur's? https://i.mxs.sx/013k3.png
Thats why I switched to sharex
Why would I want to do that?
So you can do this
when I get back next weekend I have to setup an email server with an online gui thingy.. shouldn't take too long xD
With online gui thingy?
Yes
such as roundcube
but roundcube is kinda ugly, so I'ma try to find something else
Assuming this is for your "development team"?
Yeah
Why not just use NameCheap's email hosting...
We want a contact email, billing email for the paypal acct, a domains email for the cloudflare and namecheap/godaddy acct, and personal for me and the other dude
and we don't wanna pay for it, or we'd use gsuite
What is it with people and wanting to use that ad filled cancer?
gsuite?
Yes... Gmail is filled with ads.
sucks for them?
You really are deluded, but w/e
ikr ;3
where the ads at https://i.mxs.sx/1ivr8.png
I'll even disable adblockplus and reload
still no ads https://i.mxs.sx/w5usk.png
U mean these minimal things here? https://i.mxs.sx/iwb9o.png
You enjoy paying that $420/y for ads when you could just as easilly pay $30/y for no ads
Thats gonna cost ya more than $30 a year
nope?
it's an email server..
can grab a mid level ovh ssd vps
for like
$7/month
or a top level ssd one, for 14/month
No, thats the entire price rounded down.
NameCheap only charges per year.
Initial hosting is $10.
With $3 for every email.
Or
I can put it on the vps that we use for hosting the websites
and save cuz using a vps for dual purpose
xD
You mean the vps hosting the website for a server, and a development team?
Amazing.
prolly gonna grab a decent one from digitalocean
meh, they have nice vps
for like 4x as much'
then we'll grab a cloud RAM one from ovh, we're not sure yet xD
RAM one, why not SSD?
better cpu
So why isn't it called CPU one?
and cloud ram 3 has more storage than ssd 3
cuz it uses a HDD..
so?
smh.
we're evntually gonna own our hardware and colocate
hf with that
ikr ๐
already landed a $150 deal for a personal site
and a $250 deal is in the works for a guy who wants a site for his hosting company
and we've been going at it for a week
so if you don't think we'll be able to own our own hardware, then idk why u doubt me so much
You are acting like you are the next PiedPiper
hell yeah
I have a deal in the works with a lady who has $ from what her husband does, but she wants to make her own furniture company
and we're gonna charge her thousands to advertise, market, and help her get her company off the ground
and she's highly interested
this lady said, and I quote "Maybe god put you in my path so that we could do this"
Adwords, youtube, the works
Does she know that?
we might even contract an advertisment group if we can't do it ourselves
You realise those sorta people cost thousands...
Are you even a registered business?
Will be in 2 weeks
LLC?
and who is doing that?
me, my dad(cuz im too young to register myself) and the other dude i'm doing this with
but he's in canada, and canada dosen't have llcs
Who is the LLC gonna be under.