#minecraft

1 messages Β· Page 44 of 1

gray geode
#

You'd do it the same way? Just make the proxy and add the ips

#

Why are you under shared and not vps at that player count

twilit forum
#

What do you mean?
I didn't even understand

gray geode
#

How are you running a 500+ player server then?

twilit forum
#

I haven't

#

That's why i ask

drifting thistle
#

Just change the number to 500

twilit forum
#

that's the easy part

#

BUT

#

When my player reach 200, my 8GB Bungee crashed

gray geode
#

You're def doing something wrong

#

You only need like 512MB per 150 people or so.

#

It fluxuate.s

twilit forum
#

mm.. here's my bungee config.
I has 7 Bungee plugins running inside the bungee..
When i started the bungee, it start on 300MB+ of RAM.. And when it reached 200.. The RAM increased to 103% and then suddenly crashed

drifting thistle
#

Use Waterfall

twilit forum
#

I use waterfall already

drifting thistle
#

Oh lol

twilit forum
#

That's why i'm asking

#

I mean is there a way to seperate normal bungee for players to connect and bungee with plugins in it (not for players to connect) and run both of 'em at the same time without issue

drifting thistle
#

You mean use redis bungee?

#

or is it something else

twilit forum
#

redis bungee?

#

what is it? and what does it do?

drifting thistle
#

Instead like Bungeecord connecting servers together RedisBungee connects bungeecords together

#

To run multiple bungeecords at once

twilit forum
#

and can i limit players per bungee

#

?

#

and how the heck i suppose to install redisbungee?

#

and where do i have to install this redis?

gray geode
#

@drifting thistle he isn't on a vps

#

I don't see him being able to install redis

twilit forum
#

What's the requirements to install redis?

#

Only a VPS?

#

On how much GB of RAM?

gray geode
twilit forum
#

well i've watched a 10 minute video about redis and my head almost explode..
Can anyone guide me?

gray geode
#

It's not really something you can just pick up on, I think you should have someone look at your basic proxy that you have now. There's no reason that it should be crashing where it is now.

#

Try running it with 2GN

#

GB

twilit forum
#

2GN?

#

Why 2GB?

gray geode
#

256MB can hold 500 players (just checked) and you need to add 0.5MB for each player after that

#

8GB if oversizing the proxy and it can't work as strong

twilit forum
#

even with 7 plugin in it?

gray geode
#

Ram can be hurtful

#

When given too much

#

People think oh I need so much ram

twilit forum
#

Umm sir.. can we do private chat?

gray geode
#

I can friend you sure, but I can't talk via voice. I'm in the middle of the ocean and wifi isn't the strongest.

twilit forum
#

Yeah sure

slow imp
#

🌊 🏝

twilit forum
#

@slow imp can you help?

slow imp
#

0 bungee knowledges πŸ˜“

twilit forum
#

:v

twilit forum
#

hey did anyone here using hexacord?

severe drift
#

@glacial cargo

#

Please remove your message here

glacial cargo
#

Will do. But it won’t let me type in that channel so

severe drift
#

You must explain your services you offer

glacial cargo
#

I have no clue

severe drift
#

scroll up

#

it'll give you a format

drifting thistle
#

finally broke pex

#

was worried because everything has been working flawlessly

#
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 33.389 s
[INFO] Finished at: 2018-03-14T11:21:16-07:00
[INFO] Final Memory: 23M/279M
[INFO] ------------------------------------------------------------------------

suspicious

placid matrix
nimble spear
#

Minecraft mod expert pm me

lusty summit
#

Whats clips server ip again?

#

To test all the plugins he has designed and coded?

gray geode
lusty summit
#

❀

#

Guys is it aloud to talk about my own code ve?

#

dev.

#

Like talk on ideas about my own plugins here?

#

Just need a idea for a first plugin...

gray geode
lusty summit
#

Like a first release free plugin

#

Glare got any ideas xD

gray geode
#

Not really anything new, I'm currently working on a recode for one of my plugins, and I have to do a few updates for others

#

What were you interested in trying

lusty summit
#

Well I recently have learned the fundamentals of java

#

So like all the basics

#

Loops if statements etc

gray geode
#

Alright, that's code.

#

How about a simple addition calculator plugin?

lusty summit
#

Ovbs learning the fundamentals of java is better before starting on bukkit side of things

gray geode
#

Enter 2 digits, send player the output

lusty summit
#

So lets say player runs command /number

#

They enter 2 digits

#

Or?

gray geode
#

Well they do could /add 2 + 2

lusty summit
#

Ah πŸ˜›

gray geode
#

So get the args, check the numbers, add numbers together, send player output

lusty summit
#

Yup

#

Give me 2 mins Il try put it together

gray geode
#

Alrighty

lusty summit
#

Aight got code together just testing it now

gray geode
#

Alrighty

lusty summit
#

So I got it working

#

But the way it works is /add <number> <number>

#

It doesnt require + inbetween

gray geode
#

That's fine

#

Considering it is /add

lusty summit
#

It also reads a error when I just use /add

gray geode
#

You could do it now for subtract multiply and divide

lusty summit
#

How do i make it read a output to player if they dont enter 2 digits

gray geode
#

You need to check args length

lusty summit
#

Well numbers

gray geode
#

And return null or something if there isn't

#

If args length isn't 2

lusty summit
#

Np

gray geode
#

Return false

lusty summit
#

Thanks

gray geode
#

Also make sure they are numbers too

austere jacinth
#

ehehehe

lusty summit
#

Glare

#

Player target = Bukkit.getServer().getPlayer(args[1]);
if(target == null) {
player.sendMessage(ChatColor.RED + "Please make sure to enter 2 numbers!");

    return true;
#

Would that work to check for 2 numbers?

gray geode
#

Oh God

#

Markdown

#

Lol lol

austere jacinth
#

@gray geode look at my link xD

gray geode
#

Why are you getting the player

#

And why is it srgs

lusty summit
#

Idk

gray geode
#

Args

lusty summit
#

I just noticed lol

gray geode
#

Are you doing it in onCommand

austere jacinth
#

-3-

lusty summit
#

Yes its using onCommand

gray geode
#
public void onCommand(CommandSender sender, String[] args) {
if (args.length != 2) {
Return false;
}
Int answer = math add args0 and args 1;
Sender.sendmessage(int to string answer);
}```
#

I'm on mobile but like ya

#

That's how you do it

lusty summit
#

How do you do that?

#

Like the box around code?

#

xD

#

On discord...

#

Is it <text>

#

Nope wrong one

#

xD

gray geode
#

End with ```

lusty summit
#
        
        Player player = (Player) sender;
        
    if(cmd.getName().equalsIgnoreCase("add")) {
        String num1 = args[0];
        String num2 = args[1];

        int a = Integer.valueOf(num1);
        int b = Integer.valueOf(num2);

        int result = a + b;

        player.sendMessage(ChatColor.GREEN + "Result > " + result);
    }
    
    Player target = Bukkit.getServer().getPlayer(args[0]);
    if(target == null) {
        player.sendMessage(ChatColor.RED + "Please make sure to enter 2 numbers!");
        
    }
    return true;
    }
}```
#

That is what I did for adding

#

Ovbs I want it to read a message if they dont enter 2 numbers after /add

#

And just do /add

gray geode
#

Why are you targeting

#

Just sender.sendmessage

#

Who the hell is going to add if it's not a player

#

Lol

lusty summit
#

So remove Player target line

gray geode
#

You just player.sendmessage

#

Since you casted player to sender

#

Ya

lusty summit
#

And remove target from == null

#

And just have null?

gray geode
#

Ya

#

What

#

Remove everything reblow a layer sen message

#

And above return true

lusty summit
#

I didnt understand your 2nd message then xD

#

πŸ˜›

gray geode
#

Getting in shower I'll boot up my laptop if you haven't gotten it when I'm back

gray geode
#

@lusty summit you get it?

lusty summit
#

Nah xD

#

All about learning πŸ˜›

gray geode
#

Okay here's the game plan

#

I'm going to go get some cupcakes

lusty summit
#

xD

gray geode
#

And then go back to my room

#

And then I'll boot up my surface

#

I'm on a cruise atm

lusty summit
#

Fair enough

#

I hope its nice ❀

#

xD

gray geode
#

It's very relaxing

lusty summit
#

xD

#

Good

#

    public void onEnable() {

    }

    public void onDisable() {

    }

    public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
        
        Player player = (Player) sender;
        
    if(cmd.getName().equalsIgnoreCase("add")) {
        String num1 = args[0];
        String num2 = args[1];

        int a = Integer.valueOf(num1);
        int b = Integer.valueOf(num2);

        int result = a + b;

        player.sendMessage(ChatColor.GREEN + "Result > " + ChatColor.RED + result);
        return true;
    }
    if (args[0] == null) {
        player.sendMessage(ChatColor.RED + "Please enter 2 numbers!");
        return true;
    }
    return true;
    }
}
#

Thats what I am doing

#

So /add 2 2 works and outputs 4

#

Or what ever numbers I put

#

But if I do just /add it reads the red error xD

#

I thought because String num1 which = args[0

#

[0]

#

Its empty so it should read the bottom message should it not?

#

Or does Player player = (Player) sender; need to be above if (args etc

#

Nah that aint it xD

gray geode
#

Oh my all one class

#

You need to check args first

lusty summit
#

Oh xD

#

if (args.length == 0) {

#

Would that also work the same way

#

As args[0] = null

#

It would wouldnt it?

gray geode
#

Put the command in it's own class to start it's better to keep it organized

lusty summit
#

I know but I am just staying simple for now as I aint really creating a plugin which has many things it can do xD

#

Im just making it so it adds 2 numbers but if no 2 numbers are given it reads a message

gray geode
#

I had to settle for cookies since they were out of cupckaes

lusty summit
#

xD

#

So how do I check for args again?

#

Is that all I need for my code ^ to work?

gray geode
#

Wtf my laptop never charged

#

Smh

lusty summit
#

xD

gray geode
#

Just do

#

If (args.length != 2)

#

Return false

#

At the top

#

Of the on command

lusty summit
#

Reading errors xD

#

Or wrong place

#

Is just under there?

gray geode
#

Dear God

#

Under the on command

lusty summit
#

Ye

#

I just moved it there

gray geode
#

I so called that in my head

lusty summit
#

Yeah

gray geode
#

I knew you'd do that

#

I lol

#

It's all good

lusty summit
#

Cause nothing can return if its above booleanxD

gray geode
#

We all start somewhere

lusty summit
#

πŸ˜›

#

I understand bits but then my head goes blank at times

#

xD

#

Its quite simple in a way its like python but with different comments for same meanings

gray geode
#

No semicolons

lusty summit
#

And that one xD

#

So I put it under

#

But now the Player player = command sender

#

Is coming up with a error xD

#

Nvm forgot a curly bracket

#

Or whatever you call it xD

gray geode
#

Mhmm

#

My fucking cookie melted into my pizza

#

I'm mad

lusty summit
#

xD

#

So now if I do /add

#

it reads /add

#

Literally xD

#

If I do /add 2 it reads /add

#

But if I do /add 2 2 it reads the result

gray geode
#

Good

#

Right

#

Say print instead of read btw

#

You confusing me

lusty summit
#

Np

#

xD

#

So whats missing then?

#

Is else {
}

#

Nah it aint is it...

#

xD

#

Oh god I feel like a noob without any roles xD

#

So whats missing now then to get a error message to display

#

Well to print xD

slow imp
gray geode
#

Done.

#

One sec @lusty summit

slow imp
#

Glare power

lusty summit
#

No problem @gray geode

gray geode
#

I had to toss the cookie pizza

lusty summit
#

xD

#

I might started tossing //text in my code

#

So I can learn and remember what part does what

#

Good way of learning what code does what too

#

Start*

gray geode
#
    @Override
    public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
        if (sender instanceof Player) {
            Player player = (Player) sender;

            if (args.length != 2) {
                player.sendMessage("Sorry, you must use 2 numbers!");
                return false;
            }

            int answer = (Integer.parseInt(args[0] + args[1]));

            player.sendMessage("Your result is " + answer);

        }
        return true;
    }```
lusty summit
#

Oh so it has to before the result code?

#

The send message...

#

It worked

#

With this code

#

import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
import net.md_5.bungee.api.ChatColor;

public class Calculator extends JavaPlugin {

    public void onEnable() {

    }

    public void onDisable() {

    }

    public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
       
        Player player = (Player) sender;
        
        if(args.length != 2) {
            player.sendMessage(ChatColor.RED + "Please enter 2 numbers!");
            return true;            
        }
        
    if(cmd.getName().equalsIgnoreCase("add")) {
        String num1 = args[0];
        String num2 = args[1];

        int a = Integer.valueOf(num1);
        int b = Integer.valueOf(num2);

        int result = a + b;

        player.sendMessage(ChatColor.GREEN + "Result > " + ChatColor.RED + result);
        return true;
    }
    return true;
    }
}
#

Yay it worked ❀

#

First plugin

#

Now I could add subtract multiply etc

gray geode
#

Use bukkit chat color import

#

Not md5

lusty summit
#

True...

#

xD

gray geode
#
    @Override
    public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
        if (sender instanceof Player) {
            Player player = (Player) sender;
            if (args.length != 2) {
                player.sendMessage("Sorry, you must use 2 numbers!");
                return false;
            }
            try {
                int answer = (Integer.parseInt(args[0] + args[1]));
                player.sendMessage("Your result is " + answer);
            } catch (NumberFormatException e) {
                player.sendMessage("Please make sure both inputs are numbers!");
            }
        }
        return true;
    }```
#

That should handle if one of the inputs isn't an integer.

slow imp
gray geode
#

Ya, I mean we didn't start with code lol

slow imp
#

I'm just saying 🀷

lusty summit
#

Works Glare

#

Used this ```package me.callatic.calculator;

import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;

public class Calculator extends JavaPlugin {

public void onEnable() {

}

public void onDisable() {

}

public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
           
if(cmd.getName().equalsIgnoreCase("add")) {
    if (sender instanceof Player) {
        Player player = (Player) sender;
        if (args.length != 2) {
            player.sendMessage(ChatColor.RED + "Sorry, you must use 2 numbers!");
            return true;
        }
        try {
            int answer = (Integer.parseInt(args[0] + args[1]));
            player.sendMessage(ChatColor.GREEN + "Your result is " + ChatColor.RED + answer);
        } catch (NumberFormatException e) {
            player.sendMessage(ChatColor.RED + "Please make sure both inputs are numbers!");
        }
    }
}
return true;
}

}```

#

You messed up tho

#

I had to change return false under command "add" to true

#

Because it was reading /add in chat with the Sorry you must use 2 numbers

gray geode
#

Add

lusty summit
#

Now it doesnt tho

gray geode
#

I don't use return true and false

#

But ya

#

Glad it works

lusty summit
#

❀

#

my target of a first plugin is a chestsell plugin

#

Like main plugin for my server πŸ˜›

gray geode
#

Now I'm hooked on making a calculator plugin lol

lusty summit
#

Xd

#

@gray geode How do you subtract?

#

int answer = (Integer.parseInt(args[0] - args[1]));

#

Like that?

#

I know * is divide

gray geode
#
  • is multiply
#
    public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
        if (args.length != 2) {
            sender.sendMessage(ChatColor.RED + "Sorry, you must use 2 numbers!");
            return true;
        }
        int answer, arg1, arg2;
        switch (cmd.getName()) {
            case "add":
                arg1 = Integer.parseInt(args[0]);
                arg2 = Integer.parseInt(args[1]);
                answer = arg1 + arg2;
                sender.sendMessage("Result: " + answer);
            case "subtract":
                arg1 = Integer.parseInt(args[0]);
                arg2 = Integer.parseInt(args[1]);
                answer = arg1 - arg2;
                sender.sendMessage("Result: " + answer);
            case "multiply":
                arg1 = Integer.parseInt(args[0]);
                arg2 = Integer.parseInt(args[1]);
                answer = arg1 * arg2;
                sender.sendMessage("Result: " + answer);
            case "divide":
                arg1 = Integer.parseInt(args[0]);
                arg2 = Integer.parseInt(args[1]);
                answer = arg1 / arg2;
                sender.sendMessage("Result: " + answer);
        }

        return true;
    }```
#

That should handle all the commands

#

Don't hold me to it tho

#

Actually

lusty summit
#

If you think about it tho

#

That code will display all outputs with one command

#

No matter what command

#

Nvm got it working

#

I added return true; under each one

gray geode
drifting thistle
#

@lusty summit You didn't break it.

#

add break; after finishing a check case

drifting thistle
#

Ok

#

PermissionsEx web dashboard. I'm currently racking my brain over how to do credentials. I currently just have it where people that can login to the pex dashboard have to have a username and password defined in a config. I don't like this. Having the plaintext password out for any other staff isn't good enough. SO I'm thinking about how to do authentication. Should I add a register section on the dashboard, and when you register, it goes into a queue, and someone with the permission.dbadmin perm can review the pending accounts and approve them, and choose what sections they have access to? Or should I make it so that accounts are created in game only by the server operator, or what. What do you guys think would be a safe but simple way to do dashboard credentials?

lapis shadow
#

Make it where the config is sent to the site by command and the response is the url to view it

#

Click url, make changes, then on save it is sent back to the server

drifting thistle
#

hm

#

I liek

drifting thistle
#

The issue with that is that it should probably need a permission to do the command in the first place

#

and all the lazy peeps are gunna not be able to use the dashbord to give them selves that perm

#

because they cant access the dashboard without it

#

small group of people

#

but id like to make pex simple and to the point

#

no its good

#

if a better idea comes up later ill fix it

#

Thanks clip

lapis shadow
#

Honestly don't need such a system for perms

drifting thistle
#

hm

drifting thistle
#

There is luck perms

#

Which integrate editor stuff

empty gust
#

Also, @serene lotus idk if you know or not, but the progress bar on TP ain't working properly

gray geode
#

?

drifting thistle
#

How i decided to do the credentials for the pex dashboard

slow imp
#

@placid viper sorry for mention but can you help me with the random number js placeholder? It's possible to add a message output with the generated number inside? like &a&lWin: $200

cedar bramble
#
return Math.floor(random) + "&a&lWin: $200";
``` try this
#

not sure 100% it will work but the "+" in return should work as i know ..

slow imp
#

i mean, if it generate the number 21023, will be Win: $21023

cedar bramble
#

ooh yea

#
return "&a&lWin: $" + Math.floor(random);
slow imp
#

i'll try tommorow, thanks πŸ˜„

cedar bramble
#

np πŸ˜„

slow imp
#

java and js are still new things for me πŸ˜…

cedar bramble
#

js was also new thing form me too 😊

#

all u have to do is learn..... its not difficult
but idk about java πŸ˜›

slow imp
#

wait πŸ€”

#

i'm pretty sure, the placeholder will not work anymore

cedar bramble
#

why?

slow imp
#

i use it like that
[console] eco give %player_name% %javascript_randomintbetween_100,2000%

#

and the output will be Win: $### i think

cedar bramble
#

lol no

slow imp
#

hehe

cedar bramble
#

its possibe

#

i think

#

hmmm

severe drift
#
int Gaby = 0;
if(Gaby == 1) {
    printf("Gaby already has intelligence");
}
else {
    Gaby += 1;
    printf("Gaby given intelligence");
}
slow imp
#

😁

severe drift
#

The summary of this help chat to new comers

#

🀣 🀣 🀣 🀣 🀣

slow imp
#

hopefully nathan will find a way 🀷🏽

severe drift
#

🀣 πŸ‘Œ

cold swan
#

Would I be allowed to post the thread for an account I'm selling?

cedar bramble
#

no

cloud crane
#

anyone interested in some sort of partnership?

gray geode
#

Like a boyfriend or girlfriend?

cloud crane
#

hahah lol no

cedar bramble
#

lol

drifting thistle
#

guys

#

question

#

Does it make sense to have more than one admin on the server?

#

So i have the following staff ranks on my server:

Helper
Mod
Admin
Head Admin
Operator
Co-Owner
And Owner

My friend is telling me that I can't make more than one person admin, because that's how admin works.

Is this really true? Like is this a thing?

severe drift
#

no

#

It's how you want it to work

cedar bramble
#

Mod + helper is the same thing

drifting thistle
#

Oh

#

Ok thanks

cedar bramble
#

and admin + co-owner + head admin almost the same

drifting thistle
#

ok

severe drift
#

don't have a head admin is my advice

drifting thistle
#

huh? why?

cedar bramble
#

so pick which one u want (name u want) and open a server

#

agree with lewis

drifting thistle
#

ok

#

My server is already running

severe drift
#

There's not really a permission difference

#

if there was it would just be more effort

cedar bramble
#

BTW thats my opinion

drifting thistle
#

Ok I see

cedar bramble
#

some people like to get 1000 rank for staff

severe drift
#

Are you using LuckPerms πŸ™ƒ

cedar bramble
#

and some like to get 2-3 ranks for staff

drifting thistle
#

no, permissionsex

severe drift
#

boo

drifting thistle
#

lol wat

cedar bramble
#

?

drifting thistle
#

why

severe drift
#

I personally prefer luckperms

cedar bramble
#

m2 😊

drifting thistle
#

ooo

#

I may install it

#

but I've already configured permissionsex

severe drift
#

you can migrate permissionsex groups to it

cedar bramble
#

Yea

severe drift
#

no effort required

drifting thistle
#

OWAH

#

WOAH

cedar bramble
#

with one command πŸ˜„

severe drift
#

Make sure you have no grouped permissions tho
e.g. world,world_nether:

#

make them separate if you do migrate

cedar bramble
#

make sure to get a backup before u do that πŸ˜„

#

just to be in the safe side 😊

severe drift
#

definitely keep your pex files

#

yea

empty gust
#

Yo, what does the server use for the items laying around stuff?

#

Like the gold bars that are on the ground at spawn?

slow imp
#

holographic displays

#

or if you want something like on tp, armor stand tools

severe drift
#

astools is the best πŸ‘Œ

drifting thistle
#

RAWR

drifting thistle
#

hey, does anyone here know free vpns that work with minecraft?

#

because multicraft knows my IP, and makes me OP even if I deop and remove permissionsex

gray geode
#

I didn't know it did stuff like that

drifting thistle
#

Yeah...

austere jacinth
#

18 good ban reasons

slow imp
#

@drifting thistle are you sure you use multicraft? :))

empty gust
#

@drifting thistle I believe you messed around with permissions in the Multicraft panel

buoyant haven
#

@DoctorDisco#9437 "You've been banned by the ban hammer", There's your first one.

slow imp
#

:c

drifting thistle
#

@empty gust and @slow imp its multicraft, and extra VM set it for me

#

lol

severe drift
#

Hello humans

cedar bramble
#

Hey lewis 😁

empty gust
#

Hey πŸ‘»

cedar bramble
#

Hellooo Ahmad πŸ‘‹

#

How are u mate

placid matrix
scenic lava
#

t

severe drift
#

t

sacred vector
#

t

grizzled dew
#

still untouched :}

lapis shadow
#

That my base

#

And it's unclaimed

lucid carbon
#

Just dropping in to say Woo! New DeluxeMenus update ;D

slow imp
#

😁

lucid carbon
#

xD I spent so much time on making my menus, glad to see the plugin's being updated

lapis shadow
#

Well now you won't lose all that work if u screw up

#

@lucid carbon

lucid carbon
#

xD Well, it was a pretty brutal way to learn your config set up real quick

#

πŸ˜‰ But I learned it, these whipper snappers won't know how we used to tred up snow both ways to use DM.

lapis shadow
#

Lol

#

Now that you have it figured out it isn't so bad is it

lucid carbon
#

It really isn't, you did a fantastic job with the plugin clip

lapis shadow
#

Thanks zeffy

slow imp
spiral frost
#

πŸ‘

austere jacinth
#

@buoyant haven already got my banhammer

#

And I'm good on the 18 reasons

#

Working on my new plugin

#

DiscoEmotes

slow imp
drifting thistle
#

Me pinging to testplugin

#

600ms

#

Oh god

#

no

drifting thistle
#

For fuck sakes

gray geode
#

Lmao

empty gust
#

I was willing to do the kits one for free as a personal challenge but the guy never accepted my request....

severe drift
#

Need some1 to build tactical nuke ** U N P A I D **

cedar bramble
severe drift
#

K done thx

#

Hopefully people will look past the fact that it is ** U N P A I D **

alpine oxide
#

@severe drift I don't recommend a tactical nuke... Would cause to many innocent casualties....

severe drift
#

My mom lives on mars

slow imp
#

Why do you hate ur mom, lol

severe drift
#

Meh

dire spade
#

Hey @lapis shadow is there a way to add Deluxe Menus as a depend for my plugin guis?

#

cuz ChestCommands currently throw errors

marble widget
#

does anyone have a sb server with askyblock and have lag issues with creating an island or making a welcome warp or resetting an island or is it just me lol

drifting thistle
#

Idk how aSkyblock handles stuff

#

But all of the world generation takes decent amount of calculation

marble widget
#

i mean i had before 60+ and it worked fine but this year it seems to lag for me with only 10-30 players and not sure why it would i even have fawe to handle resetting and making islands faster.

drifting thistle
#

Did you do a timing

marble widget
drifting thistle
#

Might give me the timing link instead damn it

drifting thistle
cedar bramble
slow imp
#

or shouldn't be a link?

gray geode
#

I think he forgot to convert them to stringd

#

That's still the permission object

slow imp
#

oh 😁

marble widget
drifting thistle
#

The warp sign

#

WTF

marble widget
#

what lol

drifting thistle
#

Ukm

#

It is the reason of lagging

marble widget
#

yeah its the same when i create and island or reset an island and i already have fast aysnc world edit to handle it faster but idk

#

what does chunk.i/o mean maybe its a hard drive issue idk

placid viper
#

Oopsies, I'll fix that as soon as I can @slow imp

slow imp
#

πŸ˜„

placid viper
slow imp
#

πŸ‘πŸ½

placid viper
#

@slow imp new version uploaded to PAPI ecloud :^)

slow imp
#

:3

lapis shadow
#

I can't wait until ecloud pushes are handled by jenkins

gray geode
#

Wdym

#

Oh when the ecloud auto updates from Jenkins?

#

Expansions, that is.

lapis shadow
#

meaning we commit - > jenkins builds - > jenkins handles making the update to ecloud without us doing a thing

gray geode
#

Yup

lapis shadow
#

soon

#

its coming

gray geode
#

Mhmm πŸ˜›

lapis shadow
#

when that day comes

#

im gonna update every single expansion

gray geode
#

Lol

lapis shadow
#

same day

sacred vector
#

Every expansion has a typo

lapis shadow
#

Lol

slow imp
#

Hi, do anyone have some configs ideas? I have some free time and .. πŸ˜„

drifting thistle
#

@slow imp Make a configuration loader that load assembly files as a plugin config

slow imp
#

Aamm .... ? :))

#

freez

severe drift
#

Can ya boys gimme gimme the explanation of what rcon is for a minecraft server

slow imp
forest coral
#

Any VPS SSD hosting page that you recommend?

drifting thistle
#

@forest coral SoYouStart

alpine oxide
severe drift
#

What if I used Linux but without a GUI to run a minecraft spigot server?

#

So just a console

drifting thistle
#

@severe drift Then you won't need rcon?

#

Linux Server doesn't have a gui

severe drift
#

It can have one

#

I don't think I would need rcon? Idk because I'd be hosting all the mc server folders on the Linux server

#

I'm new to it

#

Yuk

drifting thistle
#

@severe drift Lol, I use pterodactyl

#

I host the panel in another VPS

#

And setup the docker in the main VPS

#

Use that panel to control the VPS

shy robin
#

linux does have a gui

gray geode
#

^

modest copper
#

^

#

well, some

#

some come with one

#

some are cli and u can install a gui

rocky lodge
#

I always use ovh dedicateds.

wary willow
#

Config and menu files are now checked before being loaded to prevent wipes when you make a mistake.
and then Clip ascended for completing his good deeds

lapis shadow
#

Me best dm update ever

drifting thistle
#

^

#

Fuck

#

Finally haha

drifting thistle
#

Is there a file transfer software faster than FileZilla?

#

My server files size is more than 70 GB.

I have 100 mbps internet speed, so i need a software that can transfer my server files faster

drifting thistle
#

@drifting thistle

#

Please tell me you know how to zip stuff

drifting thistle
#

@drifting thistle I do

drifting thistle
#

Delete all of the log files and purge some if necessary :v

thin seal
#

@lapis shadow bro

#

is there placeholderapi factionsuuid faction relation colors?

sinful ravine
#

Go to #bot-commands and see with ’?papi p FactionsUUID’

pallid widget
#

@thin seal factionsuuid supports that on its own

thin seal
#

ye

#

but

#

u cant format the tab

#

so i cant give people ranks in tab

pallid widget
#

you can if you use our built in name tags...

drifting thistle
#

I have a semi vanilla server running on a intel i7 4790k. 32 GB RAM Total, and I'm using 20 GB RAM.

I want to start factions, but If i make a hub, will players leave?

quick sand
#

no

#

what has a hub to do with that?

drifting thistle
#

@quick sand check PM

severe drift
#

@sudden bay

drifting thistle
past sphinx
#

@drifting thistle uninstall java again. then add a envoirmental variable

#

install Java 8

drifting thistle
#

how i add a envoirmental variable

#

i install that java

past sphinx
#

watch a video

drifting thistle
#

i pick a variable

#

but i lose

#

can you help me?

severe drift
#

Guys

drifting thistle
#

I only need a variable and she is on Painel de Controle\Sistema e SeguranΓ§a\Sistema

#

and advanced settings

#

envoirmental variable, Path

drifting thistle
dire spade
#

@lapis shadow is there like an api for DeluxeMenus to add it to my gui plugin?

gray geode
#

You can try using the jar itself @dire spade

dire spade
#

not sure how i would do that.

gray geode
#

Add the jar to your deoendencies

dire spade
#

ok

slow imp
#

This plugin is really cool:D

cedar bramble
#

Lol yea i got it once

#

In my 1st server ....

slow imp
#

πŸ’¦

alpine oxide
#

@slow imp Prodigy Gadget?

slow imp
#

No, Trails

severe drift
#

is that supertrails?

gray geode
#

Yes

slow imp
#

Yea, the πŸ¦‹ wings

alpine oxide
#

I personally use Prodigy Gadget.

#

The new treasure-boxes are nice

slow imp
#

gimme 15$ πŸ˜„

empty gust
#

gives $15

#

Gaby examines money, finds out it's forged

wet oasis
#

o

empty gust
#

o

drifting thistle
#

I personally use ProCosmectics.

half oxide
#

Hi

#

i have a problem

#

anyone here?

#

hello?

#

@lapis shadow , i have a problem. i'm using luckperms and i bought ezrankspro. my luckperms connected to the same mysql database (my server is bungeecord). so default group is global. i used ezrankspro in skyblock, players can't rankup because defailt group is global (plugin can't take default group)

#

sorry i'm not very good at english

drifting thistle
#

Do other permissions work when you use global ?

buoyant haven
lapis shadow
#

It uses perm nodes to detect groups not actual groups

slow imp
#

That moment when your test server is death and you have to use server.pro to finish your work πŸ˜’

gray bough
#

xD

slow imp
#

no lmao

cedar bramble
#

free server 😊

slow imp
#

10$ for 100 credits

#

never

cedar bramble
#

lol yea

slow imp
#

10 plugins is enough atm

drifting thistle
#

Just localhost lol

slow imp
#

i don't have a good enough pc for that πŸ˜‰

buoyant haven
#

specs?

slow imp
#

i5-4820 4gb ram

#

is a laptop

#

a "decent" one

buoyant haven
#

can u upgrade the ram?

slow imp
#

i can't even play fornite but is better than previous pc

#

i think

buoyant haven
#

open it up when u have the time and see if u can

#

if u can, I highly suggest upgrading to 8+gb

slow imp
#

ik ..

#

the processor i good imo

#

but i don't have enough ram

drifting thistle
#

FactionsMob I believe

drifting thistle
#

@drifting thistle Delete or get the heck out of here lol @lapis shadow

slow imp
#

where's glare :c

alpine oxide
#

Good question

gray geode
#

Banned.

alpine oxide
severe drift
#

what happened?

#

did some scumbag try to advertise

near plaza
#

Yea lol

#

Someone tried advertising Free VBucks

severe drift
#

something like that i'm guessing

alpine oxide
#

yeah.....

#

Just posted the link

#

nothing more

severe drift
#

oh wow

#

probably a script

alpine oxide
#

just posted the link twice...

#

Nothing more

severe drift
#

k

#

in other news

#

the drowned mob needs to be nerfed

warm flume
#

where do i test plugins

#

?

#

i wanna test animated names

#

hello

alpine oxide
unborn axle
#

@slow imp hi

slow imp
#

Soiei, ce plm cauti aici? :)) @unborn axle

unborn axle
#

Cautam o perms de la deluxe chat

slow imp
#

nu, nu poti

unborn axle
#

Nup? 😦

#

K, ms

slow imp
#

Tu zici de permisiune per tooltip ?

unborn axle
#

gen

uneven cape
#

Whatcha guys speaking?

slow imp
#

Russian

uneven cape
#

Portuguese?

#

Ahhh okay

unborn axle
#

sa ii scot perms (grupei) sa vada name tooltip

slow imp
#

let's move to pm misu

unborn axle
#

K

uneven cape
#

Sorry xD

unborn axle
#

It`s ok

slow imp
#

No, mb

unborn axle
#

xD

severe drift
#

how many likes for trusted rank

alpine oxide
#

no likes. You get selected for it

severe drift
#

that's good then

#

because my twitter account has no likes

alpine oxide
#

My twitter also has no likes πŸ˜›

shy robin
#

XD

#

100% free no virus no download no oassword nos urvey

#

no hax

#

9999999999 vbux

shy robin
gray geode
#

I like to go on there and upload memes

river comet
#

@placid viper

clear sage
severe drift
#

what did he do

alpine oxide
slow imp
#

?

alpine oxide
#

Look the graphics @slow imp

slow imp
#

are you sure that aren't buildings?

alpine oxide
#

I build that myself πŸ˜›

slow imp
#

πŸ˜›

#

oh, april fool, oops πŸ˜„

alpine oxide
#

It looks like on a old computer that can't handle the "detailed" graphics

slow imp
#

:))

#

default mc =/= detailed graphics

severe drift
#

wow

#

the graphics are so realistic now

alpine oxide
#

yup

#

Newest snapshot btw

slow imp
#

oo

alpine oxide
slow imp
#

wtf

severe drift
#

amazing

alpine oxide
#

I don't know what they try to emulate....

#

The graphics of a old computer from the 90s?

quick sand
#

DOS graphics

#

they even said it's compatible with DOS!

alpine oxide
#

well... rip Jasper

buoyant haven
#

@severe drift from my understanding, he dmca'd a fork of factionsuuid

quick sand
#

yes

severe drift
#

woooow

#

what's the point anyway

buoyant haven
#

the guy who forked it posted it on spigot for free and it had more features than the original plugin

#

I guess he got jealous

slow imp
#

true

#

πŸ˜„

cerulean mauve
#

@buoyant haven isn't it odd since factionsuuid is a fork of MassiveCore's Facitons plugin?

severe drift
#

I'd be grateful if someone continued a plugin for me

cerulean mauve
#

same for EssentialsX

slow imp
#

@cerulean mauve true πŸ˜„

buoyant haven
#

I think it's extremely selfish on trents part if all there is to the story is what I've heard

cerulean mauve
#

if it's released under GPL3, anyone can distribute as long as the distribution complies with GPL3 license, right?

#

correct me if i'm wrong

#

i'm not an expert on GPL.

buoyant haven
#

I'd assume so, but ianal

#

I don't really know anything about any of the licenses

slow imp
#

SavageFactions is still an addon for fuuid or can be use w/o fuuid ?

buoyant haven
#

without

slow imp
#

ez pz

#

i mean, they allow us to compile the "original" plugin

#

so they have no logic imo

buoyant haven
slow imp
#

i still like SF more than Fuuid

severe drift
#

I don't like wolverness

#

You know the guy who created the DCMA bukkit thing

buoyant haven
#

I guess it's a similar case

drifting thistle
#

Any good builders out in the world?

#

Rip vk2

junior orbit
drifting thistle
#

whats server ip i forgot lol

slow imp
severe drift
#

No

empty gust
severe drift
#

indeed

tough mountain
#

@severe drift I won the claim

#

what he said was false when he dmcaed me @slow imp , so once april 13th comes I can post again

severe drift
#

niiice

empty gust
#

yes

placid matrix
gray geode
#

Would be a lot cooler if it was a nice render. That's the only thing I don't like about your team is the ender doesn't catch my eye

#

Other than that it's quality stuff

drifting thistle
#

Generally, most builders hide the flaws of their build with the render, if the build looks good even without the render you have a quality builder, specially since your servers members are going to see that build in its vanilla glory, no rendering going on for the players.

#

And while its not always the case, its an important part of it.

twilit forum
#

Hey do anyone know what happened to Hypixel couple of days ago?

#

I heard that every player become admins

unique zodiac
#

Probably for april fools, another server did everyone as owner

slow imp
#

1st april

twilit forum
#

GOD DAMNIT

#

F*ck You HyPixel.. You got me good -_-

#

how to use that rate my server with garry??

slow imp
#

read the pins

twilit forum
#

:v thanks :v

gray geode
#

You just fill out the format

twilit forum
#

Haven't noticed that one :3

slow imp
twilit forum
#

dang it :3

#

Thanks :3

cloud crane
#

guys i used worldguard to set safezone and warzone regions.. they dnt display on /f map, what can i do to fix this?

slow imp
cloud crane
#

@slow imp ive already set the safezone and warzone but claiming for warzone and safezone is done in chunks which doesnt fit my spawn

slow imp
#

🀷🏽

#

just claim as many chunks as you need

#

it doesn't matter if it's bigger than your spawn

cloud crane
#

yeah but around my spawn is a warzone which i want people to pvp in..

#

doesnt safezone automatically disable pvp?

#

oh god this is wrong room

slow imp
#

πŸ˜„

slow imp
bitter prism
#

It looks good but I the Asymmetry

slow imp
#

i've tryied to make it as close possible to AU flag :C

bitter prism
#

ok

alpine oxide
#

@slow imp Is that a group-prefix or a tag?

slow imp
#

tag πŸ˜„

cedar bramble
#

I like the &k: in the tag... πŸ‘

slow imp
#

:3

alpine oxide
#

@slow imp Are there other countries?

cedar bramble
#

And both aren't bad.. 😊

slow imp
#

Atm only 15 i think

alpine oxide
#

"only" πŸ˜‚

cedar bramble
#

Lmao

slow imp
alpine oxide
#

Now I wonder what the blurry ones are πŸ€”

cedar bramble
#

If the countries are 15 then how many tags do u have πŸ˜›

slow imp
#

31 actually

cedar bramble
#

Not bad

slow imp
#

21 countries and other 10 tags

#

i plan to make one with each country (or even with how many i can πŸ˜„ )

cedar bramble
#

I think mine were 35 πŸ˜› 😊

slow imp
cedar bramble
#

Lol

alpine oxide
#

I hope you make switzerland (swiss) :3

bitter prism
#

Gaby you got england?

slow imp
#

not yet πŸ˜„

bitter prism
#

Damn

slow imp
alpine oxide
#

Wohoo

slow imp
#

Where tf is GB ?

bitter prism
#

not gb .

#

England

slow imp
#

same, i can't find it

slow imp
#

oh lol

#

so it's a diff betweean gb and england ?

bitter prism
#

GB is England, Scotland, Ireland and wales

#

UK is England, Scotland, N. Ireland and wales

#

England is England

slow imp
#

I'm not that good at geography actually πŸ˜…

bitter prism
#

I only know because I live in london

slow imp
#

lmao

bitter prism
#

wtf is that

#

(Not trying to be rude at your work)

cedar bramble
#

Lol

slow imp
#

i can't apply a red striketrought effect :c

cedar bramble
#

Not only one Letter red.. maybe 2 or 3.. i think

bitter prism
#

πŸ‡¬πŸ‡§

slow imp
#

f M L

#

ok

cedar bramble
#

Isnt that the British flag

#

?

bitter prism
#

Great Britain*

cedar bramble
#

Idk mate πŸ˜…

cedar bramble
#

Who study geography here lol 😊

slow imp
#

We 🀣

bitter prism
#

Me

cedar bramble
#

Then thats the reason why .. πŸ˜›

slow imp
#

You are still too young boo πŸ˜‚

bitter prism
#

I just started

cedar bramble
#

Shut up πŸ˜›

slow imp
#

We are forced to study ..

#

How old are you Jolly ?

bitter prism
slow imp
#

oh πŸ˜…

#

I was like How old are you? 12?

#

Pls don't tell me that you code plugins, P L S

cedar bramble
#

Lmfao

bitter prism
#

I code plugins

cedar bramble
#

Gaby u shouldn't be old to know how to code 😊

bitter prism
#

I started when I were 7

slow imp
#

wew

cedar bramble
#

Great

slow imp
#

that's nice

cedar bramble
#

Yea

slow imp
#

@cedar bramble i mean, i'm 16 and i know 0 java

#

isn't a bad thing lol

cedar bramble
#

Also yea lol

slow imp
#

any public plugin @bitter prism ?

cedar bramble
#

Some people are 100000 and don't know what does code means and some are 5 and know everything about coding πŸ˜›

slow imp
#

ikr

bitter prism
#

Im making a public guns plugin

slow imp
#

over 70% of ppl older than 50 doesn't know how to use a pc

#

πŸ˜‰

bitter prism
#

And a MySQL intergrated punish system

slow imp
#

Great

cedar bramble
#

Yeaaa lol

bitter prism
#

For publix

#

then I have bigger stuff for private

#

Btw dont be Ageist or judge people by their age.

cedar bramble
#

Agree with u

slow imp
#

I don't do this lmao

bitter prism
#

Inference.

cedar bramble
#

I wont say yes but almost yes lol

slow imp
#

But tbh, over half of 11 - 12 years old kids are ..

cedar bramble
#

Jk btw gaby πŸ˜› πŸ˜‚

#

Also agree with u πŸ˜‚ πŸ˜‚

bitter prism
#

Should I make a re-write of spigot or a documentation for NMS?

bitter prism
#

@lapis shadow , sorry to bother you but can you opensource your plugins if you havent done so already?

#

or create documentation.

lapis shadow
#

Y

bitter prism
#

I wanted to look at how you did you some stuff.

heavy rapids
#

Is decompiling it against the rules? @lapis shadow

bitter prism
#

Well you kinda decompile when you use it as a library

stable remnant
#

yo

drifting thistle
#

Yo

stable remnant
#

anybody know how to check if a server is leaking something

#

my computer slows down quite a bit after a while of having my servers open

#

this is a recent thing

#

started around 2 weeks ago

drifting thistle
#

It suppose to...

stable remnant
#

I'm running all servers right now after a reboot and it's running perfectly

#

Up until 2 weeks ago, I could run the computer for months on end no issues

drifting thistle
#

Your server need to use the hardware resources

stable remnant
#

Yes... I know how servers work

#

I can shut all the servers down, and it will still run slowly until a reboot

#

which is why I feel something is leaking, but not entirely sure what or how

drifting thistle
#

Rip your computer then

#

Check your cpu.

stable remnant
#

What do you mean "check your cpu"

#

as in usage?

drifting thistle
#

To see if there is a hardware issue

#

Running a server in your computer continuously for a while...

stable remnant
#

ye it'll cause strain

drifting thistle
#

^

stable remnant
#

how do you recommend I check the CPU

drifting thistle
#

Try to do some benchmark and see.

stable remnant
#

hmmk

#

will do probably tomorrow

#

for now, testing my new Oculus Rift πŸ˜„

drifting thistle
#

You should find a host not hosting the server on your computer

stable remnant
#

ya... but that's espensive

drifting thistle
#

It just 100 - 150$ how expensive is that except you are Asian like me

#

Of course that is the minimal price for a network

#

Else about 30$ and you get a decent server.

#

@stable remnant I think you should find a host anyway

#

They will handle any hardware issue for you

buoyant haven
#

@stable remnant run a timings for 10+ minutes, then give us the link. Make sure you're using the best flags for your server jar aswell, https://mcflags.emc.gs if you're using paper, optimal configuration for paper is also on that link.

drifting thistle
#

@buoyant haven The computer is slow

#

Not his server :D

buoyant haven
#

his server could be causing it though

#

also cj, when your computer goes slow, open up task manager and tell me the percentages for gpu, ram, cpu and disk

drifting thistle
#

@buoyant haven Idk, I told him that prob his server is causing it

#

He said the problem just happened recently

buoyant haven
#

Yeah so he's probs installed something to do it

#

like a shitty plugin that causes memory leaks

drifting thistle
#

Recently = 2 months ago...

buoyant haven
#
cj89898 - Today at 11:02 AM
anybody know how to check if a server is leaking something
my computer slows down quite a bit after a while of having my servers open
this is a recent thing
started around 2 weeks ago```
#

ahh yep

#

2 months ago

#

seems about right

drifting thistle
#

Tfw he said 2 months ago to me

stable remnant
#

I never said anything about 2 months

#

@buoyant haven I'm running a combination of modded and non-modded

#

Can't run timings on modded

#

The CPU, GPU, and RAM usage is all normal

buoyant haven
#

can u install plugins?

stable remnant
#

I use Opis to check statistics for modded servers

#

And nothing is out of the ordinary

buoyant haven
#

ok

stable remnant
#

All servers are in fact running at/near 20 TPS

#

Glad I fixed that issue at least xD

buoyant haven
#

but ur pc is still slow?

stable remnant
#

Right now it's not since I restarted, but before the restart, yes

#

Right now I'm testing running all but 1 server

#

I was thinking it could possibly be the leak, but not sure

buoyant haven
#

the server software itself might have a leak, not any of the mods, would β€œopis” pick that up?

stable remnant
#

Well it's java

#

Directly executed from a .bat