#off-topic

1 messages ยท Page 241 of 1

pure bane
#

3 of them

#
text
quartz cypress
#

'3 dawd 3

#

wot

regal juniper
#

Hmm

#

I kinda like that, we could darken the background

quartz cypress
#

'''jeff'''

pure bane
#

the thing that sux with the update is older versions won't be supported if uploaded on v1 api

regal juniper
#

We can just reupload them all?

pure bane
#

like if you updates your expansion 10 times only the latest will be avail in v2 to start

regal juniper
#

Or do we have to change code inside the Expansion pluign?

pure bane
#

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

regal juniper
#

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

pure bane
#

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

regal juniper
#

I guess that'd be ok

pure bane
#

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

quartz cypress
#

thanks clip โค ๐Ÿ† ๐Ÿ’ฆ

pure bane
#

did it work

quartz cypress
#

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 ๐Ÿ˜„

regal juniper
#

Would it be too much space Clip?

pure bane
#

I honestly don't know

elfin minnow
#

@quartz cypress df how u get it to work

regal juniper
#

I don't mind setting up my dedi as a CDN for you if that was needed.

quartz cypress
#

well clip is like the main boi

#

so

#

ofc he got it working

pure bane
#

I convert the json object from the site to a java object

elfin minnow
#

@pure bane how u make DChat plug into EChat

pure bane
#

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

regal juniper
#

Add in a link players can click to visit the version history

#

and allow them to download via there

#

on the website

pure bane
#

nah I can do it all in game

#

what j was thinking is maybe only store the latest version info

regal juniper
#

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.

pure bane
#

and request the version history when needed in game directly from the site instead of cache it

regal juniper
#

Mhmm I like that

#

Oml the picture repeates like 6 times on the main page.

#

You need to pageify it

pure bane
#

yeah

#

what about logo upload

#

for the web end

regal juniper
#

Is the website used that much? I mean that'd work tho

pure bane
#

idk

regal juniper
#

Next to the name make it a 50x50 or whatever

pure bane
#

id like to add a system to allow users to register

regal juniper
#

etc

pure bane
#

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

regal juniper
#

Do you want email confirmation for accounts?

#

On register

pure bane
#

yeah probably

regal juniper
#
    <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>```
pure bane
#

do you think that is a good idea

regal juniper
#

The accounts? Ya

pure bane
#

with trusted and untrusted

regal juniper
#

Ya I like that too

#

But I'd still require accounts for everyone

pure bane
#

well yeah

regal juniper
#
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

pure bane
#

id just use django api for creating and managing the users

regal juniper
#

Ahh ok

pure bane
#

it already stores in db, has permissions, etc

regal juniper
#

You could add total downloads feature to expansions

#

To get how many times it's been downloaded?

#

A small little feature

pure bane
#

just a counter per dl request

regal juniper
#

Yup

pure bane
#

then a sort by downloads

#

sort is screwed up rn anyways

regal juniper
#

Well then you could add in serverIDs that generate when they install PlaceholderAPI

#

So you can't abuse downloads

pure bane
#

or I could limit requests on the site

regal juniper
#

How'd that stop people from abusing?

pure bane
#

only allow x requests every x mins

regal juniper
#

That could be iffy

pure bane
#

or I can just moderate and compare to bstats

regal juniper
#

That'd work. I just learned about the custom charts you can make on that

#

and started using those which is hella awesome

pure bane
#

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

regal juniper
#

Ya I average around 100 servers using my plugin right now

#

Idk how many are using the Expansion

pure bane
#

I wonder if I will hit 10k

regal juniper
#

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

pure bane
#

that up there is a milestone for me

#

still think it's crazy

regal juniper
#

Thoughts?

pure bane
#

idk about the blue lines

regal juniper
#

The colors can easily be changed

pure bane
#

hold on

#

I got an idea

#

what about allowing ratings for expansions as well

#

you could rate 1 time per expansion per server

regal juniper
#

Ya but make them sign up first

#

Or that

#

Ya that'd work

pure bane
#

but also change your rating

#

ill make it fool proof tho

#

ill require the expansion be running to rate

wanton horizon
#

what if you could rate from in game o.O

pure bane
#

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

regal juniper
#

How about require them to have it for more than X minutes?

#

Or do what bStats did and generate ServerIDs on startup

pure bane
#

well then if have to track that info server side

#

or use bstats server id

#

and disallow rating if bstats is disabled

regal juniper
#

Is it too much work to track server ID

pure bane
#

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

regal juniper
#

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 ^

daring basalt
timid rose
#

yes

daring basalt
#

danke

vale juniper
#

LOl

#

that's far from og

#

or semi

pearl wyvern
#

M8

#

im i og

timid rose
untold hearth
#

Tell me what yall think about Cole Slaw!

timid rose
#

Trash

#

Wait, do you mean the food?

muted fern
#

@pure bane

#

Where u at

pure bane
#

work

#

just got here

muted fern
#

How u going

pale grotto
#

@pure bane @muted fern can I get a special shoutout from the coolest dudes ever

muted fern
#

Still waiting for that one time when u said u would join voice

pure bane
#

Cole world

#

one day

#

did u read my chats bout papi

#

should we add the ratings

muted fern
#

Parts

pure bane
#

and trusted/ untrusted expansions

late zinc
#

clip

pure bane
#

wat

muted fern
#

wb

wanton horizon
#

clip stop coming online when I say your name.

pure bane
#

sucks I gotta work tomorrow night

wanton horizon
#

rip :/

pure bane
#

so tired of work

muted fern
#

๐Ÿ‘€

daring basalt
#

work sucks

pure bane
#

yes

woven prairie
#

What if it's the block game work?

muted fern
eternal apex
#

Anyone see that enjin is making/made their own cryptocurrency?

woven prairie
#

lol

eternal apex
#

I think it's kinda cool

willow yacht
#

hi noobs

woven prairie
#

Hello Internet! And welcome to Behind The Meme

ebon storm
#

Remember

#

Memes are kiii-ii-ngs!

ember bane
#

If anyone plays factions please vote on this ๐Ÿ˜›

woven prairie
#

oic

pure bane
#

what's up with this

#

so rude and I didn't do anything

#

lol

woven prairie
#

lol

quartz zephyr
#

@muted fern you're a babe

woven prairie
#

Why are there no decent enchant plugins D:

ebon storm
#

make one

woven prairie
#

lel

#

Can make an API

#

O

elfin minnow
#

I don't even remember making the first account

muted fern
#

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.'''

fallow crow
#

Eek

#

ew

#

Basically we make premium sites

#

like

#

I just got $150 for a simple ass youtuber's site

elfin minnow
#

lmaoaoaao

#

who

fallow crow
#

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

elfin minnow
#

hh

#

gg

late zinc
#

you can't sell plugins over 19.99 USD on spigot?

wanton horizon
#

yes but you need permission

late zinc
#

oh

#

so if you get perms you can sell over 19.99

elfin minnow
#

lol

eternal apex
#

Scrub, it will be pretty hard to make a plugin worth that much

late zinc
#

ik

elfin minnow
#

you never know

late zinc
#

do you guys recommend i anyway

elfin minnow
#

?

daring basalt
#

#Room1 ๐Ÿ˜„

quasi fable
#

i cannot get any youtube video to play and its making me want to suicide myself.

quasi fable
#

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.

willow yacht
woven prairie
#

Damn.. a close friend as well ...

pure bane
#

People die everyday B

#

You never know I might be gone tomorrow

#

If I died who would take over my plugins

willow yacht
#

Not me.

pure bane
#

Fuck it just let my plugins die with me

woven prairie
#

...

pure bane
#

If I die you motherfukers better make a rip clip plugin

willow yacht
#

;-;

muted fern
#

What would it do though? @pure bane

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

late zinc
#

i will world edit

#

my whole terrian with your head

willow yacht
#

cringes

eternal apex
#

@willow yacht 5, not 4

#

There was this other guy, but I can't remember his name

willow yacht
#

Shortninja, ChefJava, Frash23, and now Proxymist?

eternal apex
#

There was someone else

willow yacht
#

I never heard about it.

eternal apex
#

After shortninja

willow yacht
#

Pretty sure that was ChefJava

eternal apex
#

pretty close to shortninja

#

No

#

It wasn't

#

Trust me on this, I remember viewing the thread

willow yacht
#

welp

#

but srsly...

#

So many in such a short period of time..

pure bane
#

so srsly

hollow pawn
#

@eternal apex iirc, there was RogueRage too

eternal apex
#

Yes, I think that was the person I was talking about

elfin minnow
#

bro

#

why is my chrome all brok

#

Its sayin im from Ukraine

eternal apex
#

@elfin minnow extension list?

elfin minnow
#

ABP /\ Grammarly /\ Steam Inv Helper

eternal apex
#

abp?

willow yacht
#

AdBlockPlus

eternal apex
#

right just remove them all then restart chrome

#

uh no actually

#

@elfin minnow Remove steam inv helper

elfin minnow
#

Im appealing my main accounts ban

#

gg

#

and providing proof

#

that my versions folder and err thing

#

is clean of hacks

#

and wot not

elfin minnow
#

tfw you wrote 163 word ban appeal and you didn't know

willow yacht
#

Boi, where the https at

elfin minnow
#

Just setup my new chair

fallow crow
willow yacht
#

Good boy. Also, answer ur dms

fallow crow
#

which ones

fallow crow
#

@elfin minnow whered u get a cert from and why

regal juniper
#

Ya cloudflare works too

#

I have them cover my subdomains

fallow crow
#

i have like

#

27 domains on cloudflare

#

on the free plans

#

xD

regal juniper
#

Geez

fallow crow
#

yeah

regal juniper
#

Wow I like these Spigot Styles

#

I got a lot of them since I donated some money

fallow crow
#

o

#

ugh, fr tho, I gotta code this site

#

bbl

#

the dude paid a rush fee xD

regal juniper
#

Lol

#

How do I setup the auto responder now? Or do I need to donate more than $10 for it

fallow crow
#

wym?

#

oh

#

that

#

i have no clue

#

@woven prairie

#

he's spigot staff

#

he'll know

regal juniper
#

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

quasi fable
#

I'm American. I can barely speak fluent English. Let's go public schools.

willow yacht
#

Lel

#

Hi Jared ^-^

elfin minnow
#

put a little message saying Glare's Auto Message and some basic info

#

@regal juniper

woven prairie
#

Lol

fallow crow
#

Anyone on here know how to advertise thier server well?

normal turtle
#

Serverpackt

pure bane
#

last night of work

elfin minnow
#

wym b

pure bane
#

work tonite then off for. a week

elfin minnow
#

gg

pure bane
#

double time today as well

#

I'll take 48 dollars an hour

wanton horizon
#

holy shit

elfin minnow
#

Damn

#

How many hours

pure bane
#

only 8

muted fern
#

hi

regal juniper
#

48 an hour? Where do you work? LOL

wanton horizon
#

overtime pay @regal juniper

regal juniper
#

Ahh

pure bane
#

the bad thing is I'm only here because we have 1 expedited shipment going out

muted fern
#

Vroom Vroom

elfin minnow
#

One big ass truck

pure bane
#

gonna take me like half hour to do

elfin minnow
#

for one shipment?

wanton horizon
#

clip = truck driver. confirmed

regal juniper
#

Bro if you're a truck driver that's fucking awesome.

#

Well in my mind.

muted fern
#

Clip if ur bored join invite only

#

cough

regal juniper
#

Like I think it'd be cool to drive

elfin minnow
#

Drive

#

a truck

#

with a nuke inside of it

#

and get pulled over?

regal juniper
#

git pull over

#

Haha, kill me.

pure bane
#

I don't drive semi

#

I am shipping and receiving clerk at my work

wanton horizon
#

do you drive the full truck then?

regal juniper
#

No just half size

pure bane
#

I drive forklift

muted fern
#

spoonlift

daring basalt
#

-_-

#

move me back @muted fern !!!

muted fern
#

doing stuff

elfin minnow
#

Weedssxs

daring basalt
#

-.-

#

We know

#

๐Ÿ˜ƒ

regal juniper
#

kk

daring basalt
#

why u delete the msgs? xD

elfin minnow
#

Uhh

#

I lost the key

#

for my SSL

#

but I have the certs

regal juniper
#

/clap

elfin minnow
#

Is they anything to do?

#

or

#

have to use a non trusted cert

regal juniper
#

Erm

#

I gave you a link awhile back

#

for free SSL stuff

elfin minnow
#

ill look

regal juniper
#

Just google "LetsEncrypt Ubuntu"

elfin minnow
#

wots dat

regal juniper
#

sigh

#

Google

elfin minnow
#

wots google /shrug

#

kappa

regal juniper
#

Going back to my work now.

elfin minnow
#

have fun

pure bane
#

do you have your letsencrypt setup to auto renew when expires

regal juniper
#

Me?

pure bane
#

whoever

regal juniper
#

I have my own certs but i have setup autorenew before on Ubuntu.

#

Why?

pure bane
#

just wondering

#

mine finally renews automatically

regal juniper
#

"finally" why wasn't it before?

pure bane
#

nah it was supposed to but wasn't

#

cuz the script wasn't restarting nginx

#

after it renewed

regal juniper
#

FYI your support page via your website is broken.

pure bane
#

ya ik

regal juniper
#

Did you want to try using the bot yet?

pure bane
#

how

regal juniper
#

You can either add it here or I can give you a test server to try on.

pure bane
#

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

eternal apex
#

me
hi

muted fern
#

yo

pure bane
#

what u guys doin

muted fern
#

Building for a server.

eternal apex
#

remaking prisoncells

fallow crow
#

Interesting

tender thorn
#

Coding custom tools for Blockworks

stone notch
#

sup arcaniax

willow yacht
#

sup noobs

eternal apex
#

hi

tender thorn
#

Ey

stone notch
#

honestly last person i expected to run into here

tender thorn
#

Well i am a Developer so yeah

stone notch
#

thats true

tender thorn
#

Do i know you though ? XD

willow yacht
#

"Developer" as in the Plugin Developer, or Config Developer

tender thorn
#

Not to be rude

#

Plugin Developer

willow yacht
#

Skript or Java?

eternal apex
#

config developer xD

stone notch
#

i think ive ran into you on builders refuge before

eternal apex
#

Mitch, java

tender thorn
#

Well mostly relating to 3D generation tools

#

And obviously java

willow yacht
#

Piggy, there are strange people out there who think Skript is Plugin Development.

stone notch
#

other than that i just know you due to gobrush and builders utilities

tender thorn
#

Nothing that interesting on my spigot though

#

Ah i see

#

Glad you know some of my plugins

eternal apex
#

There's people who have never coded anything and call themselves developers

stone notch
#

well i build, only reason i know them lmao

tender thorn
#

Or some call themselves coders for some reason

#

Don't you know head database too then?

#

Helps with heads for building

stone notch
#

didnt know that was yours actually

tender thorn
#

It is

stone notch
#

nice, yeah i use that too

fallow crow
#

I code in Skript

#

im a good dev

tender thorn
#

Sweet

fallow crow
#

hire me

tender thorn
#

How much per hour ?

fallow crow
#

8

#

$

eternal apex
#

over 9000

tender thorn
#

No

fallow crow
#

Yes.

#

do not question me!!

#

im the best skript DEV!!

#

my brother is rookcraft

tender thorn
#

You're worth like 0,001 an hour xD

fallow crow
#

he taught me lots!!

eternal apex
#

smh

#

rookcraft

tender thorn
#

Jkjk

eternal apex
#

rookcraft is the server

stone notch
#

0.001 is more than nothing

eternal apex
#

rooktube is the guy

fallow crow
#

SHH

tender thorn
#

True

fallow crow
#

same thing

eternal apex
#

nah

fallow crow
#

hes crap like his server

#

so yes

eternal apex
#

one is mineplex the other is an idiot

tender thorn
#

But 1000 hours for a dollar is nothing

fallow crow
#

imgoing toapply for staff on his server

#

ez

tender thorn
#

Lilabell got a portfolio ?

stone notch
#

mostly up to date

pure bane
#

I don't even call myself a developer

wanton horizon
#

That preview is hot

muted fern
#

I vouch for Lillabele.

eternal apex
#

lillabele ur a guy right tho?

#

even though the name

tender thorn
#

What are you then clip ?

#

A god ?

pure bane
#

just a person haha

muted fern
#

A dad*

pure bane
fallow crow
#

o

pure bane
#

nothing like steak n shake at 4am

fallow crow
#

wow clip

#

how could u

willow yacht
#

So, how is DeluxeDaughter and EzSonPro

muted fern
#

get me something clip

fallow crow
#

this is bad.. very bad

wanton horizon
#

Can u get me some fries

pure bane
#

lol

tender thorn
#

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

stone notch
#

pfft, there all busy with the current comp on BR lmao

pure bane
#

I'm starving

muted fern
#

Was just vouching cause i can.

tender thorn
#

Fair enough

stone notch
#

anyways be back soon

tender thorn
#

Its only a 24h contest

stone notch
#

ssshh

tender thorn
#

Cya

#

Good to know that people know me ^^

pure bane
#

ur famous

tender thorn
#

Or some do

#

Nah

#

Too be fair being "known" in minecraft isn't that big of an achievement

pure bane
#

sure it is

tender thorn
#

Well for now i suppose

pure bane
#

if you join hypixel and people recognize you then you are Minecraft famous

muted fern
#

XD

pure bane
#

haha

tender thorn
#

Cause that's what everyone really wants

muted fern
#

we have a hypixel admin on here ๐Ÿ˜‰

tender thorn
#

XD

pure bane
#

who

muted fern
#

AgentK

pure bane
#

he ain't shit

muted fern
#

lol

eternal apex
#

He's head network dev for hypixel

willow yacht
#

If you join Memeplex and people do recognize you, you need to quit life.

pure bane
#

he said deluxemenus was a good plugin

wanton horizon
#

<@&232375781114773505> get hypixel in here

tender thorn
#

No offense to hypixel but i wouldn't wanna work for them

#

Blockworks is a lot more relaxed

pure bane
#

I wouldn't want to work for any server

eternal apex
#

@pure bane Did u know manacube uses deluxemenus? Which is a decently sized server

muted fern
#

clip did u forget u work for me?

#

lol

pure bane
#

aside from you

tender thorn
#

Are you a server tho ?

muted fern
#

Servers*

tender thorn
#

You're a person afaik xD

muted fern
#

Maybe

#

Some people think im a bot.

willow yacht
#

Arcaniax, are you blind, it clearly says it in his name funny "server" cube

muted fern
#

So

#

Who knows

eternal apex
#

serious sphere

tender thorn
#

Good point

wanton horizon
#

UnfunnyBox

pure bane
#

I just can't picture myself letting a 15 year old try to tell me what to do

willow yacht
#

Unfunny isn't even a word tho

eternal apex
#

wait a second... @pure bane did u get glare to name the bot "mag" cuz magazine | clip

pure bane
#

even if they are paying me

willow yacht
#

clip, shut up and eat ur steak

tender thorn
#

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

pure bane
#

I got a bacon cheeseburger meal and chicken strips

willow yacht
#

Well eat it.

tender thorn
#

As dinner i hope ?

muted fern
#

@willow yacht letting a 15 year old try to tell me what to do

eternal apex
#

4 am dinner

pure bane
willow yacht
#

@muted fern Thats exactly why I said it lol.

tender thorn
#

Haha

muted fern
#

same spot still?

pure bane
#

I'm still waiting on these slow asses

muted fern
#

Who else is there at 4am

#

lol

pure bane
#

2 other people were in front of me

tender thorn
#

Crazy people

pure bane
#

now just 1

wanton horizon
#

Hungry*

willow yacht
#

Maybye the rest of the coders on the eastern seaboard is there.

woven prairie
#

Lol

muted fern
#

Hungry @ebon storm

pure bane
#

it's Saturday nite

ebon storm
#

yes

eternal apex
#

hungary

ebon storm
#

hungry

pure bane
#

so most likely drunk people getting food after leaving the bar

wanton horizon
#

Hungry

eternal apex
#

angery

muted fern
#

Who says u need to tag everyone to get this chat moving?

woven prairie
#

Lol

pure bane
#

me

eternal apex
#

inb4 @everyone

wanton horizon
#

Drinking and driving. ๐Ÿค”

pure bane
#

no one talks to me

muted fern
#

Everyone tag clip then.

#

@pure bane hey.

eternal apex
#

@pure bane

willow yacht
#

@pure bane Get tagged.

ebon storm
#

@pure bane

wanton horizon
#

@pure bane plugin broke PlZ fix

woven prairie
#

@pure bane hi lets not forget @rugged slate

pure bane
#

hey look in help chat

#

should I make a mysql expansion

#

or....

wanton horizon
#

Or?

willow yacht
#

Yes.

pure bane
#

would anyone besides that one person use it

muted fern
#

i mean what

woven prairie
#

Lol

stone notch
#

spoilers much

ebon storm
#

i saw dat

kindred sedgeBOT
#

@pure bane

woven prairie
#

No TIME

wanton horizon
#

Memes

#

๐Ÿ•’

woven prairie
#

minecraft:iron_barding + minecraft:clock

willow yacht
#

I wouldn't use it most likely, cuz idk what it would be used for

woven prairie
#

Mitch. Would you use it if Aikar made it?

willow yacht
#

Hahaha

woven prairie
#

XD

willow yacht
#

Very very funny..

woven prairie
#

Very very funnycube..*

muted fern
#

ha.

eternal apex
#

ok

#

gary is playing testplugins now

wanton horizon
#

No.

eternal apex
#

?

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

good chat

#

we should do it again some time

wanton horizon
#

No.

eternal apex
#

?

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

good chat

#

we should do it again some time

wanton horizon
#

No.

eternal apex
#

?

pure bane
#

waited 20 mins and they ducked my order up

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

?

wanton horizon
#

No.

eternal apex
#

good chat
we should do it again some time

pure bane
#

had to go inside n get my shit fixed smh

wanton horizon
#

Understandable, have a nice day.

pure bane
#

thanks

#

u2

eternal apex
#

?

stone notch
#

sue them

muted fern
#

tell em whos boss

wanton horizon
#

No.

eternal apex
#

?

pure bane
#

like damn fam it's 4am barely any customers and u still ducking up

muted fern
#

damn ducks

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

No.

eternal apex
#

?

pure bane
#

my ass hungry af

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

No.

eternal apex
#

?

woven prairie
#

Meme

eternal apex
#

memes

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

No.

eternal apex
#

?

wanton horizon
#

Understandable, have a nice day.

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

No.

eternal apex
#

?

wanton horizon
#

Understandable, have a good day.

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

Sure

eternal apex
#

k

wanton horizon
#

?

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

?

eternal apex
#

good chat
we should do it again some time

wanton horizon
#

Ok

eternal apex
#

?

wanton horizon
#

?

eternal apex
#

?

wanton horizon
#

?

eternal apex
#

?

wanton horizon
#

?

eternal apex
#

?

wanton horizon
#

@eternal apex stop spamming.

eternal apex
#

?

wanton horizon
#

Sorry I'll translate, Oi pig stop spamming

eternal apex
#

o ok

pure bane
#

smoking and then I'll hop on

eternal apex
fallow crow
#

o_o

pure bane
#

nike

#

size 11

eternal apex
#

ok

pure bane
#

did u see my weed

eternal apex
#

ye

pure bane
#

it's pretty

#

and tasty

eternal apex
#

second time i've seen ur good stuff

#

erm

#

damnit

#

no

#

fuck crap i'm not gay I swear

pure bane
#

mhmm

cold tendon
#

clip just wondering

woven prairie
#

@fallow crow Want some $9 water?

cold tendon
#

is there another chat that we cant see just for trusted and admins?

fallow crow
#

@woven prairie Sure

#

but I can get it $1 in Walmart

#

๐Ÿ˜‰

eternal apex
#

@cold tendon there's quite a few

woven prairie
#

Don't you remember yesterday @fallow crow

cold tendon
#

what are they about?

fallow crow
#

@woven prairie I do

#

That's why I mentioned $1 walmart

#

lol

woven prairie
#

Oh lol

#

One is a meme free zone

#

@cold tendon

eternal apex
#

two*

cold tendon
#

XD

pure bane
#

diamond

#

@cold tendon

cold tendon
#

yuop

pure bane
#

can you see my nsfw channel

cold tendon
#

yup

#

nope

pure bane
#

want to join it

muted fern
#

ill make a perm

pure bane
#

I did

#

NSFW role has access to it

muted fern
#

kk

cold tendon
#

not just access but also read perm

#

and i dont have the role

pure bane
#

there

#

now u do

cold tendon
#

thanks

woven prairie
#

I don't ๐Ÿ˜ฆ

muted fern
#

u do bby

woven prairie
#

Ty

willow yacht
#

I kinda wanna see it, but I really don't.

#

(The channnel)

woven prairie
#

You're welcome

muted fern
#

@willow yacht Just let me know if u want in

willow yacht
#

Might as well, but i'll probs leave within a few mins xD

muted fern
#

Perms Granted

willow yacht
woven prairie
#

Lol

willow yacht
#

Is the channel actually filled with NSFW stuff

woven prairie
#

No

#

Besides the one I sent ^^^

muted fern
#

It will be soon

#

when clips done with it

willow yacht
#

There should be a way to escape the nsfw room

woven prairie
#

Lol

willow yacht
#

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

timid rose
#

@muted fern can I get access? :3

muted fern
#

Done

#

You have be warned

willow yacht
#

@muted fern Remove mi perms pl0x.

muted fern
#

done

willow yacht
#

ty

eternal apex
#

want me to make ?joinnsfw and ?leavensfw @muted fern for gary?

willow yacht
#

Yes plz piggy

muted fern
#

but then gary needs to be able to manage perms

#

then if u go rouge u can manage perms

willow yacht
#

Doesn't Dyno have a thing to do that

eternal apex
#

that would ruin everything I've worked for over the last year being in spigot

#

Why would I do that?

muted fern
#

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

eternal apex
#

Well, if you change you're mind, I'm happy to attempt to make those commands

willow yacht
#

Make it so the bot can manage perms, but put it at the lowest thing

#

so then it can't really manage any perms.

muted fern
#

tru

#

mk pig

eternal apex
#

ok

#

i'll try figure out how todo it

willow yacht
#

lawl

eternal apex
#

mitch if u wanna figure it out for me

willow yacht
#

Nty.

eternal apex
willow yacht
#

Why not discord js,.?...

eternal apex
#

I didn't make the bot

#

just edited it to make it actually work

willow yacht
#

o

#

oic

eternal apex
#

oink

#

?

willow yacht
#

xD

woven prairie
#

Lol

willow yacht
#

It is a JS bot, smh.

eternal apex
#

wait lol

#

it says discord.js

#

yet it uses discordie

willow yacht
#

discordie uses DiscordJS i think

pure bane
#

--

muted fern
#

Just used fast Async WorldEdit for the first time

#

and holy shit is it good

eternal apex
#

it is

#

amazing

muted fern
#

magic

eternal apex
#

millions / sec

muted fern
#

Might of broken the whole testplugins spawn

#

kappa

eternal apex
#

it keeps //undo for u even if u log off

muted fern
#

well

#

i kinda set the whole map to bedrock

fallow crow
#

o

#

gg

eternal apex
#

shit it actually looks so cool

muted fern
#

@stone notch lol

eternal apex
muted fern
eternal apex
tender thorn
#

Well rip

muted fern
#

XD

#

looks nice tbh

tender thorn
#

I hope you have a backup

muted fern
#

yeah ez

tender thorn
#

Ah nice

#

Fawe is pretty nice indeed i use it to place down blocks with my custom tools

eternal apex
#

I found the edge of this strange cube

tender thorn
#

And also hook it into the gmask and undo

#

Fawe used to be a lot more buggy but it's pretty stable now

eternal apex
tender thorn
#

Pretty cool effect

eternal apex
#

I needa try duplicate it

muted fern
fallow crow
#

lol

ebon storm
#

da phuc is that

muted fern
#

testplugins spawn v5

#

Bedrock eddition

tender thorn
#

4 other failures ?

muted fern
#

no

#

4 other versions

eternal apex
#

aaaannndd it's gone

muted fern
#

ez 12mil w/e

eternal apex
#

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

stone notch
#

spawns lit as

#

very confused how you managed to fuck it up that badly

fallow crow
wanton horizon
#

@fallow crow *unprotected

fallow crow
#

-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

willow yacht
#

@fallow crow Its not as special, you use ShareX.

fallow crow
#

@willow yacht so does tig

willow yacht
#

Neither of you are as special as me... sooooo

fallow crow
#

u run linux tho

#

so

#

gay

#

I only run linux on servers

willow yacht
#

And? Windows 10 can do what I do aswell..

fallow crow
#

cuz im not gay

willow yacht
#

Windows 10 has a linux backend with the terminal etc....

#

soooo

fallow crow
#

I used to have my own lil batch script that I wrote so meh

willow yacht
#

batch, what a meme

fallow crow
#

but sharex lets me do shit like this

willow yacht
#

Yours is gei.

fallow crow
#

Litterally just did the chmod?

#

like a few min ago

#

why would I already have written a 403 page

willow yacht
fallow crow
#

lazy

willow yacht
#

My point exactly.

#

Considering thats all of 40 lines of code.

fallow crow
#

Thats why I switched to sharex

willow yacht
#

Why would I want to do that?

fallow crow
#

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

willow yacht
#

With online gui thingy?

fallow crow
#

Yes

#

such as roundcube

#

but roundcube is kinda ugly, so I'ma try to find something else

willow yacht
#

Assuming this is for your "development team"?

fallow crow
#

Yeah

willow yacht
#

Why not just use NameCheap's email hosting...

fallow crow
#

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

willow yacht
#

What is it with people and wanting to use that ad filled cancer?

fallow crow
#

gsuite?

willow yacht
#

Yes... Gmail is filled with ads.

fallow crow
#

I have adblockplus

#

I don't notice

willow yacht
#

and?

#

What about the poor people that don't...

fallow crow
#

sucks for them?

willow yacht
#

You really are deluded, but w/e

fallow crow
#

ikr ;3

#

I'll even disable adblockplus and reload

willow yacht
#

You enjoy paying that $420/y for ads when you could just as easilly pay $30/y for no ads

fallow crow
#

wym?

#

we're not gonna use gsuite?

#

I'm getting a vps for the mail server..

willow yacht
#

Thats gonna cost ya more than $30 a year

fallow crow
#

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

willow yacht
#

$7/month * 12 > $30/y

#

GSuite is $35/m
NameCheap is $2/m

fallow crow
#

per email acct

#

$2/email

willow yacht
#

No, thats the entire price rounded down.

#

NameCheap only charges per year.

#

Initial hosting is $10.
With $3 for every email.

fallow crow
#

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

willow yacht
#

You mean the vps hosting the website for a server, and a development team?

fallow crow
#

nono

#

we're getting our own

#

for roar dev

willow yacht
#

Amazing.

fallow crow
#

prolly gonna grab a decent one from digitalocean

willow yacht
#

DigitalOcean, lel

#

Rip your budget.

fallow crow
#

meh, they have nice vps

willow yacht
#

for like 4x as much'

fallow crow
#

then we'll grab a cloud RAM one from ovh, we're not sure yet xD

willow yacht
#

RAM one, why not SSD?

fallow crow
#

better cpu

willow yacht
#

So why isn't it called CPU one?

fallow crow
#

and cloud ram 3 has more storage than ssd 3

willow yacht
#

cuz it uses a HDD..

fallow crow
#

so?

willow yacht
#

smh.

fallow crow
#

we're evntually gonna own our hardware and colocate

willow yacht
#

hf with that

fallow crow
#

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

willow yacht
#

You are acting like you are the next PiedPiper

fallow crow
#

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

willow yacht
#

"Advertise"

#

What are you gonna advertise on?

fallow crow
#

this lady said, and I quote "Maybe god put you in my path so that we could do this"

#

Adwords, youtube, the works

willow yacht
#

Does she know that?

fallow crow
#

we might even contract an advertisment group if we can't do it ourselves

willow yacht
#

You realise those sorta people cost thousands...

fallow crow
#

Yup

#

so we bill her 15% more then pay the advertisement groups

willow yacht
#

Are you even a registered business?

fallow crow
#

Will be in 2 weeks

willow yacht
#

LLC?

fallow crow
#

yup

#

50/50

willow yacht
#

and who is doing that?

fallow crow
#

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

willow yacht
#

Who is the LLC gonna be under.

fallow crow
#

so I'll register it

#

me, and the other dude