#general

1 messages ยท Page 123 of 1

latent tendon
#

and before i did the reinstall i never had any 403's

#

so idk what is causing it

white berry
#

I had similar issues when I did ProxMox, double check you properly setup the default gateway and IP details

#

After a fresh install on my part and ensuring all those were setup properly it worked fine

latent tendon
#

@white berry well

#

the issue is

#

i never changed anything in the settings/config

#

it just died after a reinstall

#

when i enter http://<ip-addr> it goes normal as it should (showing default nginx page)

#

but whenever i do http://<ip-addr>/<directory-here> it displays the 403

white berry
#

Hmm, not sure then sorry

#

Doesn't sound like it's an NGINX problem if that's the case

drowsy quest
#

Make sure the files belong to the www-data user or have world readable permissions

#

@latent tendon

potent prawn
#

Have you checked the error log?

white berry
#

Also, you're using http with NGINX? Shouldn't you be using https?

potent prawn
#

Only if it's configured

drowsy quest
#

nginx is just a web server

#

It supports HTTPS and you should configure it so it redirects to HTTPS, but it's not required

white berry
#

Gotcha

hybrid loom
#

it's also kind of a reverse-proxy Brain xP

white berry
#

I use Caddy for my reverse-proxy

#

Super easy and has feature for CloudFlare for DynDNS

drowsy quest
#

nginx is more than just a reverse proxy

#

It's a full blown webserver

white berry
#

Yea for sure, it's nice

#

I'll just stick to LAMP and Caddy ๐Ÿ˜›

drowsy quest
#

Why?

#

Apache can reverse proxy and use HTTPS

latent tendon
#

i got rid of the 403

#

but now it downloads the file when i click on them

#

instead of reading it

#
    listen 80 default_server;
    listen [::]:80 default_server;

    server_name _;

    root /var/www/html;
    index index.nginx-debian.html;
    
    access_log  /var/log/nginx/localhost.access.log;

    location / {
        try_files $uri $uri/ =404;
        autoindex on;
    }
    
    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
    }
}
#

config i have rn

white berry
#

Just easier to setup and run a Caddy container that does all my proxies for me

#

One place to edit rather than configuring each server to my liking

drowsy quest
#

Each server?

#

You also know that you can use virtual hosts with apache, right?

white berry
#

I did not actually, does it have DynDNS too?

#

Still learning a lot of the networking lol

drowsy quest
#

Not sure what you mean with that

#

I mean I know what DynDNS is, but what does that have to do with DynDNS?

#

And btw anything that calls itself a decent webserver offers virtual hosts

white berry
#

Well I need DynDNS for my IP address, I can't get it static with my ISP

drowsy quest
#

Sure

#

But I don't see the connection between DynDNS and a reverse proxy/webserver

white berry
#

Oh no I was just saying it was a nice feature that Caddy had

#

Caddy has the reverse proxy and DynDNS which works great for my needs

drowsy quest
#

What does it have?

#

Does it support DynDNS domains?

white berry
#

Yea

drowsy quest
#

Does it update the dns entry for you?

white berry
#

Yep

drowsy quest
#

Thank you

white berry
#

Sorry not very familiar with the terminology yet ๐Ÿ˜›

#

If I'm understanding it correctly, you're asking if it will update my IP when my ISP changes at CloudFlare correct?

drowsy quest
#

I mean every server that supports DNS names, supports DynDNS names

#

And yes

white berry
#

Gotcha

#

DNS is essentially just another name for IP right?

drowsy quest
#

No

#

It's like a phone book

white berry
#

Ah, so it directs a name to the IP?

drowsy quest
#

Correct

white berry
#

Aaaah OK

#

That makes more sense

drowsy quest
#

And btw, I think apache has a DynDNS module

#

And even if not, there's half a million easy ways to do just that

white berry
#

Interesting ok

drowsy quest
#

I mean it's linux

white berry
#

Suppose you could just make a script to do that too couldn't you?

drowsy quest
#

I can completely and irreversibly wipe the hard drive if I want to

#

You don't need to

#

There are plenty readily available for you

white berry
#

Right

drowsy quest
#

Wanna bet that Cloudflare provides a script for you

#

Or a simple to follow tutorial

#

And in general you want to avoid the layers of proxies as much as possible

white berry
#

May I ask why?

drowsy quest
#

It just unnecessarily eats away resources and increases latency for no good reason

white berry
#

So Apache is essentially a proxy too right?

drowsy quest
#

Yes

#

And it also supports virtual hosts

#

You only ever need a single running instance of apache

#

Docker container are a notable exception, but that architecture has its own issues

#

Including throwing away resources

#

Because you need to run a reverse proxy

white berry
#

So, is that all Apache is used for? Aside from SSL?

drowsy quest
#

No

#

Apache is a full blown web server

#

It's mostly used for running PHP and virtual hosts

#

Reverse proxying is not what it's used for mostly

white berry
#

Ah ok

#

I'll have to play around with it a bit then

#

I've got each of my servers running a separate LAMP instance... this definitely needs to change then xD

drowsy quest
#

How do you even do that?

#

Docker?

white berry
#

Honestly... no idea it just worked lmao

drowsy quest
#

So you have like 10 instances of apache running?

#

And 10 MySQL servers?

white berry
#

I've got 4

drowsy quest
#

Whatever

white berry
#

One MySQL server

drowsy quest
#

And what about apache?

white berry
#

Running on each 4 containers

drowsy quest
#

So docker

white berry
#

Maybe I didn't setup Apache though...

#

I had a friend who helped me through it all

drowsy quest
#

And are those containers different things?

#

Or just 4 copies of the same container with different PHP scripts?

white berry
#

4 copies

drowsy quest
#

jesus...

white berry
#

Yea....

#

That needs to change after learning this

drowsy quest
#

Ever thought that whole thing might have been a bit complicated?

white berry
#

Oh yea definitely

#

But hey! It's a learning experience right?

drowsy quest
#

If stuff seems way too complicated and especially when it involves a new technology that wasn't around when the thing started is a good indicator that your setup is wrong

white berry
#

So theoretically, I could just merge all 4 containers into one correct?

drowsy quest
#

And practically you just install apache on the host directly

#

(And PHP)

white berry
#

Well, I will need two actually... one I use as a development environment

drowsy quest
#

Still no issue

white berry
#

Right, I'll do some research this week and see what I can find... May I come back to you for help if I need it?

drowsy quest
#

In principle

#

I don't have practical experience with Apache

#

Or very very little

#

I mainly use nginx

#

Which imho is even better

#

Harder to configure but way faster and more robust

white berry
#

I'll have to look into that then

#

Thanks for the pointers Brain

drowsy quest
#

You're welcome

latent tendon
#

guys i fixed my nginx issue

#

my issue was a miss configured default.conf

drowsy quest
#

๐Ÿ‘๐Ÿผ

white berry
#

Brain can I use NGINX as a simple proxy?

I've got two Minecraft server, one for production and another for development. Connection to production is mc.domain.net and development is mc.domain.net:25580. My end-game is to have the development connection be dev-mc.domain.net.

latent tendon
#

this is what worked for me

#

without issues

white berry
#

Hmmm, wait that could just be done with an SRV record could it not?

drowsy quest
#

nginx doesn't understand the MC protocol

#

But you can do a similar thing with bungee

#

Or a SRV record

latent tendon
#

i use SRV for my mc servers

#

works fine for me

white berry
#

Would I need to create another Bungee proxy then?

latent tendon
#

@white berry u mean multiple bungee instances

#

on 1 server or?

white berry
#

Well, I've got two networks running... One as my production network and another as a development network

#

Development network is essentially just a replication of the production network but my devs and builders have more permissions to build and upload files etc.

#

Production environment has the mc.domain.net and development has mc.domain.net:25580 but want to change to dev-mc.domain.net

#

My thought process is... Bungee proxy that connects you to one of two networks right?

latent tendon
#

do they have diff ip's or ?

#

shared

white berry
#

Shared IPs

latent tendon
#

only diff port?

white berry
#

OK wait sorry... same external IP but different internal IP

drowsy quest
#

@white berry just use SRV records

white berry
#

Yea SRV seems to be the easiest solution for me, alright thanks!

#

@latent tendon do I need an A record as well for the sub-domain of dev-mc?

latent tendon
#

i dont use a A record

white berry
#

That's what I've got setup, but it doesn't want to work ๐Ÿ˜›

#

Guessing it probably takes a little bit to register

gilded nova
#

yo guys

#

i needa help with buycraftx

#

the /buy command isnt working

latent tendon
#

turbo the pic i sent has to do with bytebin, wich is related to luckpermsweb

#

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

latent tendon
#

i think i found a bug

sharp kettle
#

Hey all, quick question, this might be off-topic, but is the a permission node for denying players to chat if they are a certain rank?

We are using DeluxeChat

swift abyss
#

@latent tendon seems to be up for me

#

try again

latent tendon
#

it is up, but when ever i use /lp editor

#

the link shows as invalid

#

new link and broke

swift abyss
#

send link

latent tendon
swift abyss
#

@sharp kettle there doesnt seem to be a perm for chat, just the default format

latent tendon
#

shows ```Loading error

Either the URL was copied incorrectly or the session has expired.

Please try again.```

swift abyss
#

must be local to you

latent tendon
#

tf

swift abyss
#

it can happen, just congestion in your area or something

latent tendon
#

congestion?

swift abyss
#

network

#

anyone that has had that issue, it usually resolves within like 15 mins or so

latent tendon
#

it doesnt work on mobile aswell

#

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

swift abyss
#

again, local.

latent tendon
#

and i cant fix that?

swift abyss
#

not unless you have access to the networks in your area

latent tendon
#

i dont even know what ur talking about

swift abyss
#

i get that error sometimes, then i try again and its fine

latent tendon
#

i tried like 7 links

#

lol

swift abyss
#

i mean the actual internet in your local area, like your neighborhood, etc

latent tendon
#

there is nothing wrong with my internet

#

;/

swift abyss
#

well... it seems to be some issue

#

as the link works

latent tendon
#

@swift abyss nothing wrong here

swift abyss
#

speed means nothing

#

i only get 20mb up lol

latent tendon
#

i have one of the best networks u can get in the netherlands

#

lol

swift abyss
#

again, that means nothing

latent tendon
#

sure...

swift abyss
#

well, open the link then, i can lol

#

im not trying to argue

potent prawn
#

you really should open the console log to check for errors

swift abyss
#

they are self hosting, (i think) maybe the link i sent may help. no idea

potent prawn
#

yeah, the console will at least show some kind of error since it can't get the data

#

it's probably a 404

swift abyss
#

cool

latent tendon
#

this ?

#

or nginx console

sharp kettle
#

@swift abyss Then is it possible at all?

swift abyss
#

doesnt seem so with deluxechat. let me look around. rip $$

sharp kettle
#

I know with WorldGaurd you can use regions to block incoming/outgoing chat, however I have been having issues with new players spawning in the tutorial world rather than the main world

swift abyss
#

using essentialsX?

latent tendon
#

this is what i get in nginx logs

swift abyss
#

have you set correct spawn priorities and given default spawn on join perm?

#

Thras, I have no idea on any of that. the link i sent above may help, thats all I can offer

sharp kettle
#

Here's what we are using that relate to this issue (Spawning issue):

EssentialsX
EssentialsXSpawn
Multiverse-Core

swift abyss
#

ok, so what is the main world? is it the tutorial world?

sharp kettle
#

Now what I have done is:
Turned firstspawnoverride to false (multiverse config file).
Used essentialsXSpawn to set setspawn visitor for the first join players to spawn in the Tutorial World. Then setspawn pleb for players who have gone through the tutorial to spawn in the Main World (The main world contains the main spawn)

#

However players will spawn in the old first join spawn, in the main world

swift abyss
#

and in essX config, you set the newbies section to be visitor?

#

that needs to match where you want them

sharp kettle
#

I think I need to set that. That might be what I haven't done, I completely forgot about that

swift abyss
#

๐Ÿ˜‰

sharp kettle
#

Thank you. Hopefully it works. If this is fixed, then I can set the region that the tutorial room resides in, to disallow chat for visitors

swift abyss
#

hope it does

sharp kettle
#

Wait, that might just be a blanket perm for the region, blocking all chat...hmm I will have to think on this

swift abyss
#

do they gain a group upon accepting rules?

sharp kettle
#

They change to pleb after accepting the rules

swift abyss
#

you can add that group to members and allow chat for members

latent tendon
#

welp

#

still no luck

#

so i kinda wasted my time with it ๐Ÿ˜ฆ

potent prawn
#

@latent tendon I meant your browser console, where the error is happening.

latent tendon
#

525 error

potent prawn
#

oh it's just a CORS error

#

you need to allow requests from your web editor domain

latent tendon
#

stupid question, how do i do that

potent prawn
#

i would assume it's an nginx thing

#

maybe google "enable cors nginx"

#

The API fully supports CORS.
So yeah, must be your nginx setup

potent prawn
#

is it http, or https?

latent tendon
#

let me check

#

all configs are set to http

#

idk where he even gets the http from

potent prawn
#

best to use https

latent tendon
#

i cant

#

bc somehow my SSL keeps throwing errors when i do

queen crest
#

Use letsencrypt

#

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

latent tendon
#

same story

latent tendon
#

no errors in console, still no luck

potent prawn
#

Have you tried going to that url

latent tendon
#

got it working

#

incorrect cloudflare settings

#

ok so bytebin works with https
but the editor breaks with https

small meadow
#

You guys want to retroactively Not pay for a game?

hybrid loom
#

No

elfin ridge
#

Heyo, anyone with experience with bossshoppro? ๐Ÿ˜„

#

trying to make a custom item as 'price' for an item

violet rivet
#

!help

#

oh no clippy ๐Ÿ˜ฆ

latent tendon
#

clippy dead

icy sentinel
#

Anyone knows about a good and easy to use (for players) playershop? Something other than chestshop?

swift abyss
#

why not chest shop?

rapid oxide
#

Hey boys, anybody know why wildtp doesnt work on one of my worlds?

#

Specifically a multiverse core generated one

#

i'm gonna be working on spawn so I might not respond

strong spruce
#

Get betterRTP instead my dude

rapid oxide
#

you sure?

#

does it work better

strong spruce
#

Yes, works fine on my server with other worlds

#

Highly configurable and easy for players to understand

rapid oxide
#

ok

swift abyss
#

yes, betterrtp works way better than wildtp and others. wildtp still uses 1.8/1.9 biome names anyways so on 1.13+ it messes up - even tho it says its updated for those versions.

trail shuttle
#

!commands

outer vesselBOT
trail shuttle
#

!usage

outer vesselBOT
gilded nova
#

is anybody able to help me with multiverse-portals here?

#

I can't seem to be able to load it... like at all

violet rivet
#

Running the right version for the server you are using?

gilded nova
swift abyss
#

have you tried deleting the player data for that player?

#

oh its yours, so yea, id delete the file for your uuid and see again

#

Caused by: java.io.EOFException: End of input at line 655 column 2 path $.minecraft:recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.criteria.has_cobblestone

#

seems to be an issue with the file

gilded nova
#

alright should i go ahead and delete everyone else's player data?

swift abyss
#

is that error for everyone? i only see your uuid there

#

@red jay try ChatControl

red jay
#

@swift abyss Thanks :p I'll try that one

errant sphinx
#

I'm trying to get Factions to be enabled on one world and disabled on another. Can LuckPerms do that?

potent prawn
#

If the factions plugin works based on permissions then probably.

swift abyss
#

!context

outer vesselBOT
sharp kettle
#

Hey JG

latent tendon
#

PerWorldPlugins

swift abyss
#

hey cos

#

Thras, that plugin isnt the best way to do that. using context is better. why add plugins that perform duplicate tasks?

latent tendon
#

True

drowsy quest
#

!help

outer vesselBOT
#
Available commands:

!advanced
!api
!argumentbased
!bulkupdate
!bungee
!commands
!context
!default
!editor
!errors
!faq
!install
!meta
!migration
!permissions
!placeholders
!stacking
!storage
!switchingstorage
!sync
!tracks
!usage
!verbose
!wiki

violet rivet
#

The list should be pinned somewhere. It's now too long to remember

tough sky
#

Pinning means you'll have to remember where it's pinned ๐Ÿ˜‰ (it is in #support-1)

potent prawn
#

Yeah it's in general lol. But you could always just type !help ๐Ÿ˜›

violet rivet
#

!makemeacake

#

๐Ÿ˜ฆ

swift abyss
#

๐Ÿฐ

#

oh wow, that command works!!!

sturdy needle
#

!help

outer vesselBOT
#
Available commands:

!advanced
!api
!argumentbased
!bulkupdate
!bungee
!commands
!context
!default
!editor
!errors
!faq
!install
!meta
!migration
!permissions
!placeholders
!stacking
!storage
!switchingstorage
!sync
!tracks
!usage
!verbose
!wiki

sturdy needle
#

!editor

outer vesselBOT
sturdy needle
#

!meta

outer vesselBOT
last compass
#

can somone maybe help me setup bungee

#

i tried and it does not wanne work for me

white berry
#

What have you tried? Where are you stuck?

last compass
#

it like says if i wanne join it enable ip forwarding in your bungee but i did that. and it still does not wanne work

white berry
#

Shutdown Bungee first, edit the config and turn it back on

last compass
#

tried it allredy

white berry
#

Still the same error?

last compass
#

yea

white berry
last compass
white berry
#

14:43:33 [SEVERE] [ItzEnder] <-> ServerConnector [lobby] - encountered exception: net.md_5.bungee.util.QuietException: Server is online mode!

last compass
#

yea

white berry
#

That's not an ip-forwarding issue

last compass
#

ow

white berry
#

Should have your back-end server set to online-mode: false

hybrid loom
#

And BungeeCord enabled in the spigot.yml

white berry
#

That too

#

Additionally, go into your bukkit.yml and change connection-throttle: -1

last compass
#

i did that

white berry
#

๐Ÿ‘

#

Perfect, then you should be ready

last compass
#

tryig it now

#

now its saying this if u use ip forwarding plase enable it in your bungee config and it is on true

white berry
#

Send your BungeeCord config

#

And a SS of the error please

hybrid loom
#

Please send your bungeecord config.yml, your spigot.yml and server.properties through https://hasteb.in
Make sure to remove thing like IP adresses

white berry
#

FYI, I won't be able to help if it's in hastebin ๐Ÿ˜›

last compass
hybrid loom
#

Why @white berry?

white berry
#

I can't open the link at work...

#

But Pastebin works!

last compass
#

can u see it ?

white berry
#

Yes

last compass
#

oke

white berry
#

I don't see for spigot.yml and server.properties though

white berry
#

iirc in server.properties it should be server-ip=127.0.0.1

last compass
#

did it

#

lets see

#

do i need to put my own ip there ?

white berry
#

No

#

127.0.0.1 is local host

#

So if the BungeeCord and Backend server are on the same machine then i should be 127.0.0.1

last compass
#

thats not local host for me

white berry
#

?

#

Is BungeeCord and the backend server on the same machine?

last compass
#

yea

white berry
#

Then change it to 127.0.0.1

last compass
#

oke trying now

#

it works

#

thx dude

white berry
#

Np

#

@last compass suggestion as well...
Change:
server-port=25565 to server-port=25566 or some other port in the server.properties

Then change:
host:0.0.0.0:25577 to host:0.0.0.0:25565 in your config.yml for BungeeCord

This way users connect with SOME.RANDOM.IP.ADDRESS instead of SOME.RANDOM.IP.ADDRESS:25577

#

You'll also need to change...

servers:
  lobby:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25565

to...

servers:
  lobby:
    motd: '&1Just another BungeeCord - Forced Host'
    address: localhost:25566

In your config.yml for BungeeCord

last compass
#

oke thx

white berry
#

Then just change your Port Forwards to 25565 and remove for 25577

hybrid loom
#

@white berry 127.0.0.1 would only work if you have the server on the same machine as the proxy.
And it isn't needed but recommended to deny pings from other proxies and only allow those from within the same machine.

white berry
#

Yea that's where I was going with my question here lol

Is BungeeCord and the backend server on the same machine?

#

I was just assuming it was on the same machine

#

What's weird though, is that it just started working with that change

quasi bluff
#

Hello anyone here know any good host to buy a dedicated server?

potent prawn
#

Ovh

vocal rivet
#

When you are from the EU i suggest Hetzner Online, they have really cheap offers and great service

quasi bluff
#

Im in the US..

vocal rivet
#

Alright, then ovh

quasi bluff
#

Aren't they in Canada?

vocal rivet
#

they also have 2 datacenters in the US

potent prawn
#

The Canadian servers are very close to USA

#

My US players had no complaints with the connection.

quasi bluff
#

eh

#

66$ setup fee?

vocal rivet
#

I just can recommend OVH from opinions of others, I don't have any experience with them

quasi bluff
#

I heard good things about sys, just the connection is bad

potent prawn
#

SYS is OVH

#

They are just older systems used by OVH sold at a cheaper price

#

The connection would be the same as OVH

#

Which as I said is fine

#

But you can always try their west USA data center

drowsy quest
#

Not sure if SYS offers anything over there

oblique geyser
#

Hello, I have a question about the ranks in the plugin.

torn frigate
#

How can anyone help you if we donโ€™t know what your question is...

drowsy quest
#

@oblique geyser if you have a question, just ask the question

oblique geyser
#

Ok

drowsy quest
#

Sooo? @oblique geyser

#

What do you want to know?

#

You still havenโ€™t told us

oblique geyser
#

Can you tell me a good thing with Luckperm's Compatible Chat manager? (Nukkit) Because Luckchat is no longer pissed off that was a good compatible

quasi bluff
#

Yeah, i'm thinking of going with SYS, since the setup fee isn't as much.

latent tendon
#

@oblique geyser funny thing

#

Im working on LuckChat (fork)

oblique geyser
#

@latent tendon, Yea but i dont know how i make &4Owner &8| &7%name% &8>> &l&a%msg%

BUT When i set the prefix and Set me to owner and want du write something in the chat then i see NOTHING I cant write..

latent tendon
#

Ill look into that

#

U have latest nukkit right?

oblique geyser
#

MCPE

Nukkit Latest (MCPE: 1.13)

#

I dont know how to do it anymore

latent tendon
#

@oblique geyser u have the same issue what i have

#

When adding prefix. Chat breaks

oblique geyser
#

Self when i dont add Prefix i cant write in chat when i have the rank..

latent tendon
#

this is intresting

#

[ERROR] Could not load plugin "LuckChat": Incompatible API version

oblique geyser
#

Hm idn but i cant set Prefix maybe The Bukkit Load Plugin and Den LuckPerms and Essentials?

gilded nova
#

English?

#

๐Ÿ˜‚

oblique geyser
#

I can speak English and german

sleek niche
#

I can, too

oblique geyser
#

@sleek niche say Hello im Tobi in German xD

outer vesselBOT
#

Hey NxtLeqitYT! Please don't tag staff members.

ornate coral
#

hello, somebody can help me?

drowsy quest
#

Yes

ornate coral
#

Luckperms in chat is not working

#

missing prefixes

drowsy quest
#

You need a chat plugin

#

LP is not chat plugin

#

It's a permissions plugin

ornate coral
#

i have essentials chat and vault

drowsy quest
#

Ok. Does the prefix show when you run /lp user <you> info?

ornate coral
#

yes

#

When I installed the CMI plugin then it did not showed the prefix

drowsy quest
#

If it shows with that command, it's not LP at fault

#

Your chat plugin isn't configured correctly then

ornate coral
#

soo what should i do?

potent prawn
#

Configure your chat plugin correctly

#

You also say you have Essentials chat

#

Which sounds like you are using two chat plugins

#

So one of them is going to be taking preference

ornate coral
#

CMI plugin is a chat plugin?

potent prawn
#

From what I know, it is.

#

I have never used it.

swift abyss
#

it is built in, section starts with Chat:

#

you can disable if wanted

lime bear
#

Anyone know the most recent version of shopgui+ I sohuld use for 1.8?

swift abyss
#

tells you there. 1.21.1 has been tested on 1.7 - 1.14

#

why was that hard to find? lol

compact kernel
#

dose any one know why my Nucleus cfg isent any where to be found?

swift abyss
#

it exists, there is a folder called config

#

inside there is a nucleus folder

#

@vocal cove i assume you use essentialsX? if so, these are the permissions. https://essinfo.xeya.me/index.php?page=permissions

and it can't be changed using vanilla means
Why not? /gamerule keepInventory false is the vanilla gamerule to toggle keepinv

#

if you give a group any * perm, even like essentials.* that would give them all perms, youll have to set any you dont want them to have to false.

compact kernel
#

there isent a folder called Nucleus

vocal cove
#

How would I disable only the keepinventory and nothing else within the essentials plugin?

swift abyss
#

Droonie, i told you already lol. im not spoonfeeding all the way. just open that link, there is a search feature, search for keepinv and keepexp - youll see the perms, set them false for the groups you need

#

@compact kernel in the main folder, you see the config folder, right? inside there, you dont see nucleus? have you verified that the plugin is enabled (by looking in console)?

compact kernel
#

no i dont see the folder and i think it is cause it works ingame all the commands it adds

swift abyss
#

you can edit the config directly

#

many others do it

compact kernel
#

what u mean directly?

swift abyss
#

the actual file

compact kernel
#

thats what i mean i cant find the cfg doe

swift abyss
#

conf/nucleus/

compact kernel
#

it aint there

vocal cove
#

Sorry for being a noob, one last thing I promise

swift abyss
#

๐Ÿ˜‰

vocal cove
#

So like

#

There it is

#

But like

swift abyss
#

no idea then D3clan, i dont use sponge

vocal cove
#

how do i disable those on my server specifically

#

please dont roast me again

swift abyss
#

ive said, twice

vocal cove
#

ok nvm then

#

its ok

swift abyss
#

you set those perms to false

vocal cove
#

hush

swift abyss
#

i mean, the perms you have set so far you set to true (the default) so just add false to the end of the command to set the perm

#

!usage

outer vesselBOT
swift abyss
#

its all there ๐Ÿ˜‰

vocal cove
#

thanks

#

it all good

swift abyss
#

np

latent tendon
#

@swift abyss essentials has a permission node for keepinventory

#

I wonder why they even added that

swift abyss
#

i know essentials does ๐Ÿ˜‰ thats why i linked the perms for essentials to that member. its nice that is an option, like on one server i setup, they use keepinv in the world, but in the pvp arena, keepinv is off. if it were not perm based, couldnt use LPs world guard region context to switch it. would have to be a fully separate world if only using gamerule

icy sentinel
#

Can someone maybe help me? My goddamn spawners are often changing from let's say from blaze to pig, zombie to pig etc. I don't know if this is connected at all but when I get a report from my players that it has happened again, this is often times in the console -

#

Currently using mineablespawners, have used the silkspawners 1.14 compatible fork, epicspawners etc

#

all are having the same issue, running paper 223 if that has to do with anything.

#

Thanks

torn frigate
#

Can we see the full error?

drowsy quest
#

!help

outer vesselBOT
#
Available commands:

!advanced
!api
!argumentbased
!bulkupdate
!bungee
!commands
!context
!default
!editor
!errors
!faq
!install
!meta
!migration
!permissions
!placeholders
!stacking
!storage
!switchingstorage
!sync
!tracks
!usage
!verbose
!wiki

gilded nova
#

!sync

outer vesselBOT
gilded nova
#

!editor

outer vesselBOT
gilded nova
#

Kkkkkk

swift abyss
icy sentinel
#

@torn frigate If you answered to me then there really is nothing else - had 25 lines of these messages.

drowsy quest
#

Today's my lucky day!

#

I just started an AFK fishing farm

#

And the second book I get is a mending book

#

Now I just need efficiency IV or V and my perfect pickaxe is done

hybrid loom
#

neat

drowsy quest
#

I don't even have diamond armor. This is so awesome

swift abyss
#

lol nice

drowsy quest
#

But no luck with getting a good rod

hybrid loom
#

hehe.... luck

drowsy quest
#

And there was I, thinking that someone would comment about โ€œrodโ€

swift abyss
#

๐Ÿ˜‰

#

comments were made, just not written

rain edge
#

whats a SQL?

#

inside all of my config's

#

theres a mysql

#

what is that

swift abyss
#

SQL is the messaging service used for MySQL and other remote storage. more info here:

#

!sync

outer vesselBOT
gilded nova
#

can anyone help me? im the owner of my server and for some reason all of a sudden i cant break blocks or open echests in a specific region. this has nothing to do with worldguard because i have been disabling it and it still wont work. the other thing is that i have a region setup and its only a smaller region inside the region that i cant interact with. i only have 1 region setup. please help

hybrid loom
#

Remove EssentialsProtect

#

It's trash

versed osprey
#

^

fair glade
#

I gave my jr moderator essentials.kick but they still cant use the command

trail shuttle
#

!verbose

outer vesselBOT
strong spruce
#

does any1 know how to get teh {luckperms_prefix} placeholder to work with featherboard, I already have the luckperms hook installed to the plugins directory and still nothing pelase help

red jay
#

Hi there. Does anybody know what this error is about and how to fix it? It's caused by Essentials (2.17.1.0), running on spigot 1.12.2

#

did u try /papi ecloud download LuckPerms

#

Uhm wait. Featherboard is using MVdW placeholders. You need the LuckPermsMVdWHook

hybrid loom
#

@strong spruce It depends on what LP version you use.
If you use v5, make sure to also download the legacy-expansion as a temporary fix as the placeholder expansion wasn't updated yet.

drowsy quest
#

Also for future reference if youโ€™re getting errors in the console, please provide them @strong spruce

strong spruce
#

Okay Iโ€™ll check console

drowsy quest
#

No need to @strong spruce

#

Andre already told you what to do

strong spruce
#

... lol it didnt work though. Somthing I notcied though is that when I do /pl it doesnt show LuckPermsMVdWHook. But I have the LuckPermsMVdWHook in the plugins directory

drowsy quest
#

You did restart the server after adding it, right?

strong spruce
#

yes, I am going to do another restart. I have replaced the file with the latest on github. I will also look for any errors on console. If I get any I will send them here

#

okay so i got an error message now.

#

ill make a pastebin

#

@hybrid loom @drowsy quest

outer vesselBOT
#

Hey Lv_! Please don't tag staff members.

strong spruce
#

oof my bad

fair glade
#

@trail shuttle that didnt really help

#

My staff cant kick even tho they have perms to

drowsy quest
#

@strong spruce ironically that version is too up to date. Itโ€™s expecting LP v5

#

And you still have v4

strong spruce
#

Okay, I will get luckperms v5

#

okay, where can I get v5? I looked on spigot website and im still getting the 4.4.1 version

#

...?

potent prawn
strong spruce
#

ummm oaky, how do I get just get the LuckPermsMVdWHook for v4.4.1 instead?

#

like can i just get a direct link to the download page?

#

all I can seem to find is v4.4.1

#

I have been trying to get this to work for about an hour now. Very frustrating.

drowsy quest
#

Read what you wrote again. It doesnโ€™t make sense

strong spruce
#

ight boutta go install permissionsex

#

pce

drowsy quest
#

Youโ€™re complaining that youโ€™re looking for v4.4.1 and all you can find is v4.4.1

strong spruce
#

no...

#

I am looking for v4.4.1

#

for luckperms hook

#

and all i can find for the hook is v5

#

i just need a simple placeholder to work

drowsy quest
#

It uses a different versioning scheme

#

In any case, why not just use v5 of LP?

strong spruce
#

cus i dont know where to download

#

can u send direct link

#

i have looked eveyrher

#

can only find v4

#

and its starting to et vet annoying

drowsy quest
strong spruce
#

well see thats the issue

#

its for 1.8.8

#

i need 1.14

drowsy quest
#

Do you know what >= means ?

strong spruce
#

imma just install permissionsex, I have so many issues with luck perms...

drowsy quest
#

@strong spruce >= 1.8.8 means 1.8.8 and above. Which includes 1.14

#

I really donโ€™t see your problem...

#

I donโ€™t know what else to tell you tbh

#

In any case good luck using PEX

strong spruce
#

I think you guys should just make your website better, no i dont know what >= means, Ive never seen it in my life. You guys should make it say 1.8.8-1.14.x or something. Also you guys should update the spigot webpage as soon as an update is out, that is the way I have always downloaded luckperms and most of my other plugins..

swift abyss
#

greater than or equal to

#

1st grade math i think

drowsy quest
#

Yeah

#

Not our fault you donโ€™t know basic stuff

hybrid loom
#

God I hate JDA sometimes

swift abyss
#

and staff also helped you and told you where you needed to go based on your question

drowsy quest
#

And the spigot page hasnโ€™t been updated because luck only publishes stable updates there. Which means around one week without any issues @strong spruce

swift abyss
#

๐Ÿ‘‹

drowsy quest
#

Also if you donโ€™t know what a symbol means, ask

#

Itโ€™s that simple

swift abyss
#

they left

drowsy quest
#

Not according to my discord

swift abyss
hybrid loom
#

Lv left

swift abyss
#

that pfp lol

hybrid loom
#

And I still hate JDA

swift abyss
#

that didnt change yet?

#

lol

hybrid loom
#

I can't find a proper way to find out what users reacted to what reaction >.<

swift abyss
#

wb

#

thats uncalled for, but how can we help

#

bye again

drowsy quest
#

Ah lol. Just in time XD

hybrid loom
#

*sigh*

drowsy quest
#

This time I left them

hybrid loom
#

inmature people... Always the best

swift abyss
#

so sad

drowsy quest
#

My bullshit patience is -7.3 today

swift abyss
#

๐Ÿ˜‰

hybrid loom
#

Then don't directly punish them and better discuss it

drowsy quest
#

And Iโ€™m done dealing with idiots

hybrid loom
#

It was one swearword which isn't really a valid reason for such a hard punishment...

drowsy quest
#

I banned them for being too stupid

hybrid loom
#

If you're done dealing with them, don't deal with them.

#

Ignore them and switch to another Discord while I and the others take care of it

drowsy quest
#

Theyโ€™re a waste of time to everyone with 3 brain cells

hybrid loom
#

We discussed it more than enough that you should leave conversations since you always tend to put oil into the fire.... But whatever

drowsy quest
#

I donโ€™t want to see them again

#

Plain as that

#

Unban them, DM them to apologize, whatever

#

Your time, not mine

hybrid loom
#

And then we have a 20 minute discussion again about how I do things on my own without discussing them first, you leave again and I'm the bad guy again because I give people a second chance, yet nobody cares when you ban someone for no real reason....
But whatever...

#

If someone has some idea how I could check a specific reacton for if it contains certain users using JDA, let me know.
I'm struggling to find any real solution

gilded nova
#

does anyone have experience in nuvotifier?

potent prawn
#

what about it

gilded nova
#

one of my servers has everything setup correctly for nuvotifier and for some reason it still says it cant bind to port

#

there is no ip or port typos

#

and on my other server, it works perfectly!

#

i have no idea what the problem is

potent prawn
#

are you running it on multiple servers?

gilded nova
#

yes i have it setup on a bungeecord

potent prawn
gilded nova
#

i followed a guide off of youtube and it worked fine for my 1.8 server

potent prawn
#

it's extremely different for a bungee network vs a single server

#

you should probably use the official install guide rather than a youtube video

gilded nova
#

yeah your right, i saw a change that wasnt in the video thank you turbo

gilded nova
#

ok yeah this is still not working :/

swift abyss
#

you may have to pick a different port, especially if you are on a shared host and they just have blocks of ports open.

gilded nova
#

@swift abyss i've chosen many ports and it still does not work

swift abyss
#

yea, ive had to do a lot of port searching before, may be able to contact your host and ask what block of ports they have open or if you can request a specific port

gilded nova
#

couldn't i use the port of the backend server im trying to use?

swift abyss
#

the backends should be set to nothing i think, its the bungee that needs the port. let me check a config

gilded nova
#

the config asks me for a port for the proxy

swift abyss
gilded nova
#

wait so the port needs to be -1?

swift abyss
#

yea

#

the backends

#

per the install guide

gilded nova
#

but doesnt the backends need to be set to none since the bungee is set to proxy?

swift abyss
#

well, those settings work on that network with bungee and 7 backends

gilded nova
#

so it will still work?

#

because i have that setup besides the -1 port on my1.8 server

swift abyss
#

will what work? the configs i sent work

gilded nova
#

and it works

#

ill try that

swift abyss
#

just update ips and tokens

gilded nova
#

so what should the ports for the bungee config be?

#

proxys"

swift abyss
#

the port that the voting sites are sending to

gilded nova
#

the ports for the proxys

swift abyss
#

try the default, i dont think they matter though

#

its been a while since i setup

gilded nova
#

what is the default?

swift abyss
#

8192

#

or whatever is in the one i sent

gilded nova
#

for both proxy and the backends?

swift abyss
#

... you arent reading. on backends, its -1

#

on bungee config in the proxy section, its 8192

gilded nova
#

right sorry

swift abyss
#

at the top of bungee config is the actual port for votes to come in lol

#

hope it works for you

gilded nova
#

@swift abyss votes arent coming through into the game

gilded nova
#

im going to send you my thing JG

swift abyss
#

rip, went to bed then. its better if you contact your host to find an open port for your bungee @gilded nova

gilded nova
#

@swift abyss i have open ports for bungee and i am using them. I got the 1.14.4 server to bind ip, but now the vote wont go through the 1.14 server

swift abyss
#

you see in bungee console that the vote was recieved?

gilded nova
#

@swift abyss the vote says it cant go through the ip for the 1.14.4 server

swift abyss
#

no idea honestly, ive set up several networks with the config i sent and no issues

#

may be worth contacting your host

glossy cipher
#

Hey guys, do you know if is there a way to make a unique donation ? Thanks ๐Ÿ™‚

hybrid loom
#

?

glossy cipher
#

Just, can I make a unique donation to the project, without subscribing to patreon ?

hybrid loom
#

I don't think so

swift abyss
#

you can donate on there, then cancel before it renews though

glossy cipher
#

Okay thanks !

drowsy quest
#

!help

outer vesselBOT
#
Available commands:

!advanced
!api
!argumentbased
!bulkupdate
!bungee
!commands
!context
!default
!editor
!errors
!faq
!install
!meta
!migration
!permissions
!placeholders
!stacking
!storage
!switchingstorage
!sync
!tracks
!usage
!verbose
!wiki

drowsy quest
#

!bulkupdate

outer vesselBOT
rustic cobalt
#

My head is off, so probs not going to be lurking for long, but was wondering anybody knew where to obtain one of those "magical" clients such as the jessica one, feel free to DM me with info if you got it, thx โค๏ธ

gilded nova
#

ohai

swift abyss
#

Why does this drink taste funny? looks in glass at the frozen squid ice cubes ooohh, thats why!

potent prawn
#

calamari cocktail

swift abyss
#

yum

#

there is a Japanese dish that is fermented firefly squid, tastes really good

potent prawn
#

they get up to some really funky shit not gonna lie

swift abyss
#

lol yea

gilded nova
#

@swift abyss shush you onion

#

โค๏ธ

swift abyss
potent prawn
#

kinda cute

#

what is it from?

#

i always thought it was a pumpkin lol

swift abyss
#

haha, its from some game called overcooked

#

never played it, but one day i was in a chat and we got on the topic of onions, so i just grabbed the first high quality onion pic i found

potent prawn
#

his dog is adorable

swift abyss
#

oh.... my..... word.....

#

cuteness overload lol

potent prawn
#

๐Ÿ˜

potent prawn
swift abyss
#

wow

potent prawn
#

yeah i have to do this for a job i applied for ๐Ÿ˜‚

#

i think it's ready to submit

swift abyss
#

cool

gilded nova
#

@potent prawn deal

outer vesselBOT
#

Hey Upstream Sea! Please don't tag staff members.

gilded nova
#

Clippy, stfu

potent prawn
#

bwahahaa

gilded nova
#

Me sad

swift abyss
#

you should be, never tag the all mighty staffs

gilded nova
#

Iโ€™ll ping him in the other discord then ๐Ÿ˜‰

potent prawn
#

big yike

swift abyss
#

musical discords

gilded nova
#

Iโ€™m not rude

swift abyss
#

evidence please

potent prawn
#

we'll wait

gilded nova
#

How can I prove Iโ€™m not rude

swift abyss
#

It is better to remain silent and be thought a fool, than to speak and remove all doubt.

potent prawn
#

such a wise onion

gilded nova
#

I got a idea

swift abyss
#

lol - you all have a wonderful insert appropriate greeting for your current time of day

potent prawn
#

almost-time-to-leave-work-o'clock

swift abyss
#

nice

tough sky
#

woke-up-due-to-pain-in-shoulder-time

gilded nova
#

Am I rude now?

swift abyss
#

yes

#

that makes it worse

gilded nova
#

๐Ÿ˜ฆ

swift abyss
#

but also ๐Ÿ˜‰ very gg

potent prawn
#

F for the painful shoulder

gilded nova
#

๐Ÿ˜ข

swift abyss
#

F

gilded nova
#

Turbo, can I cry on your shoulder?

swift abyss
#

here, ill give you some cut up onions for more tears

potent prawn
#

if that will make you feel better

swift abyss
potent prawn
#

oh how i miss friends

gilded nova
#

We all miss it

#

If you don't, you're not a human.

swift abyss
#

Hello, I am not human, I am an Onion.

gilded nova
#

๐Ÿค”

swift abyss
#

I just never got into that show

gilded nova
#

How?

#

It's iconic

swift abyss
#

eh, Id rather watch Fraiser

gilded nova
#

Another good one. I'm re-watching Mr. Robot

swift abyss
#

nice

gilded nova
#

I didn't know this place existed

#

Isn't this the PEX is better Discord?

potent prawn
#

yes

#

welcome!

#

for all your permissionSex needs

gilded nova
#

๐Ÿ˜‰

violet rivet
#

I'm glad I'm not the only one to read it that way

tough sky
#

is there any other reasonable way to read it? ๐Ÿ˜›

latent tendon
#

Ohgid

#

God

drowsy quest
#

@violet rivet on April 1st they change the capitalization in the logs from PermissionsEx to PermissionSex

hybrid loom
#

That makes the plugin not better tho xP

violet rivet
#

All the poor cristian minecraft servers will be terrified ๐Ÿ˜›

drowsy quest
#

Just in the logs

#

Not in game

white berry
#

@past surge you can ask your question here, as it's not directly related to LuckPerms

past surge
#

Great, ty, so far im trying autorank

kind bane
#

for some reason only opped people on my server can spawn withers, and I checked worldguard and essentials and I cant find anywhere where withers were disabled. Does anyone know the permission needed to spawn a wither using soul sand and wither skulls?

white berry
#

!verbose

outer vesselBOT
brazen sail
#

@snow rivet U norwegian?

versed osprey
#

https://pastie.io/oonylu.groovy This is an error I am getting with the Plugin RankUp, which relies on LP to rankup the player when meeting certain requirements.

hybrid loom
#

if you you use v5

versed osprey
#

I have the extension installed, and are using v5.

weak hearth
#

okay how do I reasonably setup a bungeecord network with some servers locked behind groups without constantly editing the bungeecord config file. Someone suggested advanced portals but my portals aren't working to the restricted world

swift abyss
#

so you dont want them to access certain backends without perms, right? you can make sure all your servers are restricted in bungee config.yml and then only give perms to the groups that should access them. can give /server <server> perms to only the groups, if you use like SSX, the premium version allows you to restrict use of certain icons in the menu based on commands. you cna use a plugin like slashserver to restrict /<server> based on perms. so many ways

weak hearth
#

that would be amazing

#

that was what i orginally wanted to do

#

manage everything with luckperms groups

swift abyss
#

its easiest

#

long term, portals, while pretty arent practical

weak hearth
#

im okay using /server commands instead of portals

#

that honestly would be ideal

swift abyss
#

yea, so in bungee config.yml set all the servers to restricted

weak hearth
#

well except the lobby right?

#

i want a server that everyone can access to serve as a lobby

swift abyss
#

then just give bungeecord.server.<server>

#

as needed to the group you want to have access to that server

weak hearth
#

see i tried that and it didnt seem to work

#

it still said i can't access that server

swift abyss
#

works on the server those perms are on

#

maybe use verbose?

#

run it on the bungee console

weak hearth
#

hmm?

swift abyss
#

!verbose

outer vesselBOT
weak hearth
#

alright

#

wait i have lp installed on each backend server using a central database

#

do i need to install it on the bungeecord instance as well?

potent prawn
#

yes

#

of course

weak hearth
#

silly me

potent prawn
#

how else are you going to control bungeecord perms

weak hearth
#

that makes a lot of sense honestly

#

lets see if i have more sucess now

potent prawn
#

good luck

weak hearth
#

hmm

#

it doesnt recongize the lp command in the bungeecord console

#

but i saw luckperms load

#

omg

#

i did it!

#

thank you so much

swift abyss
#

lpb is needed on bungee if you are running commands from console.

potent prawn
#

or to control it from in game, /lpb

weak hearth
#

is there a good simple plugin to display a message to a user when they join a server?

vocal rivet
#

Well I think a lot, just google "MOTD Spigot" and you should have a wide selection of different plugins that do exactly that ๐Ÿ˜„

weak hearth
#

isnt the motd the message that it displays in the serverlist?

vocal rivet
#

SOme use On Screen message, some use In-Chat messages etc

#

Yes and No

#

MOTD means Message of the Day, so it means both

weak hearth
#

hmm

vocal rivet
weak hearth
#

oh that may be even better

#

i just need a way to inform players that connect how the bungeecord network works

vocal rivet
#

Good luck ^^

weak hearth
#

thanks for your help

#

grr that plugins not working

#

hmm

#

ill try the ingamemotd

violet rivet
#

Optifine?

latent tendon
#

@pine tundra thats called a 0 tick dupe machine

violet rivet
#

Paper spigot has a fix for those

trail shuttle
#

!commands

outer vesselBOT
trail shuttle
#

!help

outer vesselBOT
#
Available commands:

!advanced
!api
!argumentbased
!bulkupdate
!bungee
!commands
!context
!default
!editor
!errors
!faq
!install
!meta
!migration
!permissions
!placeholders
!stacking
!storage
!switchingstorage
!sync
!tracks
!usage
!verbose
!wiki

hybrid loom
#

@weak hearth ServerListPlus is a good choice for MOTDs and more.

true seal
#

this is a dumb question, bur adding a world container to my bukkit.yml and moving all my worlds to a sub folder couldnt have caused my permissions to go poof right?

hybrid loom
#

It may have if the world name changed that way

wheat bough
#

is forge for 1.14.4 even a thing? i load it with mods and they don't show

pastel loom
#

@true seal how do you move all your worlds into a sub folder?

tough sky
#

@pastel loom bukkit.yml has a configuration item world-container: in settings where you can give a folder name

pastel loom
#

Oh ok thanks I guess I never noticed that before ๐Ÿ˜‚

tough sky
#

We're using this on our server. So it works fine, as far as I am concerned.

gilded nova
hybrid loom
#

...

gilded nova
#

๐Ÿ˜‚

sleek niche
#
        for (String s : query.split(" ")) if (s.startsWith("#")) for (Map<?, ?> parsedMap : map) if (parsedMap.containsKey(s.replace("#", ""))) query = query.replace(s, (String) parsedMap.get(s.replace("#", "")));

That's totally readable java code, in just one line

hybrid loom
#

...

#

Excuse me while I quickly wash my eyes

sleek niche
#

Ok, I have changed it

#

Looks only a little bit more readable when having it in multiple lines

sleek niche
#

I have finished my little project

#

?

#

I did that for Bukkit

#

Not in LP, but using the PlayerCommandPreProcessEvent and the ServerCommandEvent, which modifies the command

#

And you basicly put it in, have LuckPerms installed, then it creates a config and in this config, you can just add more flags

hybrid loom
#

why not try making an extension out of it? Or is that already an extension?

sleek niche
#

It isn't, just another plugin

#

Oh and for usage, you can just use /lp verbose on #someFlag

#

I was thinking of making it an extension, but don't see any way how I can achieve this with only LP

versed osprey
#

https://pastie.io/oonylu.groovy I am having this issue with LP when running a RankUp plugin. LP errors when it is told to rankup a user, taking their money and not ranking them up.

#

I am running v5 with the API extension.

#

This was not an issue in v4

violet rivet
#

Well what's the error? We can't see your console

potent prawn
#

... it's at the start of his comment lol

versed osprey
#

I dont know if I should revert back to v4 for the time being until then.

violet rivet
#

Oh lol

#

My bad :>

violet rivet
#

I also think engin or whatever they are called do websites

sterile scaffold
#

So how does that work exactly, Killbot?

#

I just checked it out.

violet rivet
#

However, I don't fully support them as they don't punish servers that use spambots to advertise.

sterile scaffold
#

Yeah I wanted an interactive website that tells about the server/features and stuff. Nothing fancy just plain, fun and simple

violet rivet
#

and allow them to continue hosting

calm kindle
#

ttps://www.mcmyadmin.com free with only a 1G instance
https://cubecoders.com/AMP - 10 bucks for 5 instancecs

sterile scaffold
#

1G Instance, what do you mean? Single server ,or does it support multiple server instances on the same machine?

calm kindle
#

Yeah 1 server limited to 1G

sterile scaffold
#

4 Servers + Bungee Host on the same Machine

calm kindle
#

The AMP one gives you 5, if you'll use a proxy for bungee yeah 4 + 1 for the proxy

sterile scaffold
#

Thats just an informational thing about TPS and Data/what its running on. What I was referring to is like, an interactive site that my relatives can go on, check out

calm kindle
#

I wouldn't use CentOS currently, the system link or what ever has issues with updating

sterile scaffold
#

Click on it, kid friendly and they can check the server for an "About" page etc

calm kindle
#

It's got everything, from console to setup

violet rivet
#

basically an information webpage

#

is what you are after

sterile scaffold
#

Yeah, I've seen some pretty cartoony looking ones with people/characters that look minecraft story edition-like

#

And the likes.

calm kindle
#

Pretty much like what a host provider would have

sterile scaffold
#

But they have like server store pages and such too

violet rivet
#

those make me cringe :L

calm kindle
#

Host providers yeah

sterile scaffold
#

I would just want something where my neices, Nephews and cousins and other family members who are playing together can go and check the server out

#

Don't need forums or anything

vocal rivet
#

pterodactyl - OpenSource and Free

violet rivet
#

Why not set up a discord server for your server

sterile scaffold
#

In the process of doing that now, actually. Might be better since it'd have bots that can answer questions. Just a lot of work.

calm kindle
#

Discord SRV has TPS and stuff? I know it'll yell when TPS drops

violet rivet
#

You can have bots that send chat to minecraft from discord as well, it's great

#

Someone logs in and talks crap to other players, thinking they'll get away with it, when the whole lot is logged to discord

versed osprey
#

Ive been using discordSRV for awhile

#

Its great.

calm kindle
#

intersting, wouldn't add to the servers overhead though?

vocal rivet
#

@sterile scaffold you could try out NamelessMC as website software, it was especially made for MC communities and is Self hosted.

calm kindle
#

Currently I'm only using 2G of my 16G with my one server, and my web server

violet rivet
#

Lets see

sterile scaffold
#

I guess NamelessMC is a simple server setup software you host on your machine that people can connect to and check out your server information through it?

potent prawn
#

+1 for nameless

violet rivet
#

with 14 servers running, totalling 46.8gb i'm nowhere near my 128gb cap

potent prawn
#

It's like a forum as well

calm kindle
#

128G? ๐Ÿ˜ฎ

vocal rivet
#

Its more like a all around thing for MC servers, it has a Forum, announcements, server status, report system, ban list etc.

sterile scaffold
#

You have suggestions for a video tutorial that details it? I dont want to use a random video.

violet rivet
#

@vocal rivet you host it yourself?

calm kindle
#

Ballin hardware

potent prawn
#

Yeah it's open source

vocal rivet
#

NamelessMC? Yes, it is awesome

violet rivet
#

Interesting

#

I may have to try it ๐Ÿ‘

#

Already have an apache webserver running so shouldn't be to difficult to mix it in

vocal rivet
#

Just they have black sheep on their discord server that constantly annoy you how grewt they are and how little you know

potent prawn
#

Kinda like discord srv๐Ÿ˜†

violet rivet
#

little knowitalls?

vocal rivet
#

Yes

#

and they mostly have no clue

violet rivet
#

I'm tempted to go have some fun.. ๐Ÿค”

calm kindle
#

LOL

potent prawn
#

Are you twelve

violet rivet
#

True story: I got banned on this one discord server for telling people how to stop bots spamming their servers. Yep.

#

12? Not quite

calm kindle
#

Nameless plays well with Ubuntu 19.04?

violet rivet
#

Almost ๐Ÿ˜›

calm kindle
#

Also sorry, I don't use anything Windows related for a server

violet rivet
#

I do ๐Ÿ˜„

#

Give me linux and i'll toss the machine out the window

#

It's more confusing than an 8 way interesection.

vocal rivet
#

I got banned from a server because I tried to push a partnership we agreed on, while we were discussing it he got a bigger partner and ignored me completly, when I askrd him over his server because he blocked me I just got banned

calm kindle
#

Heck my system is Manjaro

violet rivet
#

Killamanjaro? ๐Ÿ˜›

potent prawn
#

Don't think I've ever been banned from a discord server

violet rivet
#

spelling