#general

1 messages ยท Page 249 of 1

tight chasm
#

no

drowsy quest
#

That can't work

tight chasm
#

my website is by another hoster

drowsy quest
#

Again. That can't work then

tight chasm
#

ok

drowsy quest
#

Unless the server on which you run the MC server allows you to mount a FTP server

#

But I highly doubt that

#

In any case you need to undo the changes in the DynMap config

tight chasm
#

yeah i reset it

drowsy quest
#

Like change it back to InternalClientUpdateComponent and change tilespath and webpath back to what it was

tight chasm
#

i tried now to get faction dynmap but not worked too XD

drowsy quest
#

What?

tight chasm
#

faction extension for dynmap

#

to show factions but the latest version is not downloadable from dynmap developer ๐Ÿ˜ฆ

#

and the factionsdynmap from massivecraft not work on 1.16.4

drowsy quest
#

Welp

#

In any case what kind of configuration do you have available on your webserver?

tight chasm
#

its normal wordpress hosting

#

or you mean my mc server?

drowsy quest
#

No webserver

#

And "normal wordpress hosting" doesn't really answer my question

tight chasm
#

i have on my webspace not many thinks i can do

#

its only for building websites

#

so most stuff is locked by the provider

drowsy quest
#

Then you probably can't do that

#

Try reaching out to their support if you can use a subdomain to reverse proxy another site

tight chasm
#

I let the numbers maybe next year i change to my MC hoster and make it than.

drowsy quest
#

Why not just ask your hoster?

trail shuttle
#

!tprogress

outer vesselBOT
#
Translation progress

If you can help translate LuckPerms, please visit our Crowdin project!
https://crowdin.com/project/luckperms

โ€Ž

:flag_sa: Arabic - 63%
:flag_bg: Bulgarian - 13%
:flag_cn: Chinese Simplified - 50%
:flag_tw: Chinese Traditional - 42%
:flag_cz: Czech - 100%
:flag_dk: Danish - 100%
:flag_nl: Dutch - 100%
:flag_ph: Filipino - 1%
:flag_fr: French - 100%
:flag_ge: Georgian - 3%
:flag_de: German - 100%
:flag_gr: Greek - 21%
:flag_il: Hebrew - 0%
:flag_hu: Hungarian - 26%

โ€Ž

:flag_it: Italian - 100%
:flag_jp: Japanese - 100%
:flag_kr: Korean - 10%
:flag_no: Norwegian - 11%
:pirate_flag: Pirate English - 100%
:flag_pl: Polish - 67%
:flag_pt: Portuguese - 1%
:flag_br: Portuguese, Brazilian - 61%
:flag_ro: Romanian - 22%
:flag_ru: Russian - 100%
:flag_es: Spanish - 100%
:flag_se: Swedish - 0%
:flag_tr: Turkish - 0%
:flag_vn: Vietnamese - 0%

tight chasm
#

Why not just ask your hoster?
@drowsy quest german hoster dont Do this shrug they are to scary that we normal guys destroy something

drowsy quest
#

Just ask

#

They have a support for a reason

#

And I mean mostly asking if they have it available and if so how

#

Like you might just be missing where to do it @tight chasm

trail shuttle
#

!help

outer vesselBOT
#
Available commands:
โ€Ž

!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!cauldron
!colours
!commandequivalents
!commands
!config
!context
!cookbook
!default
!downloads
!editor
!editorsafety
!errors
!essentials
!extensions
!extracontexts
!faq
!formatting
!helpchat
!inheritance

โ€Ž

!install
!libsdir
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!tracks
!translations
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki

trail shuttle
#

!advanced

outer vesselBOT
trail shuttle
#

why does WE only have 15 undo's...

gilded nova
#

it's configurable

#

I think lol

#

yeah it is

trail shuttle
#

oh i see now

#

skipped over it a few times

#

for some reason whenever i open the chat with / or t ir adds a t or another / so // instead of only / (1.16.4)

gilded nova
#

funky keyboard

trail shuttle
#

nah it works fine on older versions

gilded nova
#

yeah but it's on your end lol

#

works fine for literally everyone else lmfao

tight chasm
trail shuttle
#

?

rigid widget
#

!chat

outer vesselBOT
#
LuckPerms does not perform any chat/tablist formatting of its own!

LuckPerms only acts as the source for prefixes / suffixes, it doesn't actually apply them. You need an appropriately configured chat/tablist formatting plugin for them to be displayed. If the values appear correctly when you run /lp user <user> info, LuckPerms is doing its job!

List of chat/tablist formatting plugins that work with LuckPerms
gilded nova
#

not like we are in off-topic already

#

but okay ๐Ÿ™„ you do you L a r r y

#

๐Ÿ‡ฑ ๐Ÿ‡ฆ ๐Ÿ‡ท ๐Ÿ‡ท ๐Ÿ‡พ

rigid widget
#

It's just so vague ๐Ÿ˜ฉ

#

That's all the help I could imagine maybe would help

deft thistle
#

help

gilded nova
#

ask

deft thistle
#

hold on

gilded nova
#

ok

deft thistle
#

import static java.lang.System.out;

public class Test {

    public static void main(String[] args) {
    }

    public class X{

        public void one(){

            System.out.print("Xone");

        }

        public void two(){

            System.out.print("Xtwo");

        }

    }



    public class Y extends X{

        public void one(){

            System.out.print("Yone");

        }

        public void two(){

            System.out.print("Ytwo");

        }

        public void testIt(){

            one();

            super.one();

            two();

            super.two();

        }

    }

}
#

with this

#

if i want to run it

#

i put this

#

in a different class

#

public class TestRunner extends Test {

    public static void main(String[] args) {
        Y code = new Y();

        code.one();         //line 1

        code.testIt();      //line 2
    }
}
#

but

#

it wants me to make Y static

#

but if i make y static

#

the extends X breaks

vocal rivet
#

Use the spacebar and not enter

deft thistle
#

where

#

wut

gilded nova
#

To send messages

deft thistle
#

ah yes

gilded nova
#

anyway

#

As it is now, if you want to create a Y instance, you can only do it through a Test instance.
Yes, TestRunner extends Test, but remember: main is static, i.e. not an instance of TestRunner

#

There are two solutions to this, basically

#
  1. Make both Y and X static classes: this will allow you to instantiate them "directly", without depending on a Test object
#

or

deft thistle
#

this is not my code btw this is from a test

gilded nova
#
  1. Fix your TestRunner class like so:
import static java.lang.System.out;

public class TestRunner extends Test {

    public static void main(String[] args) {
        TestRunner code = new TestRunner();

        code.getY().one();         //line 1

        code.getY().testIt();      //line 2
    }

    private Y y = new Y();

    public getY() {
        return y;
    }
}
#

although there are a million ways to do it

#

and that 2. is really just 1. in disguise lol it isn't, this is what I get for not reading my own comments

#

although there are a million ways to do it
okay maybe not a million, but several

drowsy quest
#
import static java.lang.System.out;
vocal rivet
#

Ya ever had it that you found and fixed a bug before it even occured?

gilded nova
#

Yes

#

You feel powerful!

#

Unbeatable

vocal rivet
#

eyup

drowsy quest
#

First time? ๐Ÿ˜›

vocal rivet
#

Nah, it just happened thought

#

Found a issue with my caching before it even occured

summer pine
#

does someone know an alternative for nametagedit? Which supports nicknames and mysql?

tender plaza
#

i've tried tab modifier but it crashes

#

any suggestion ?

#

im using sponge

summer pine
#

which mc version?

tender plaza
#

1.12.2

summer pine
#

then not. sry

tender plaza
#

whar

#

that is on 1.12.2

rigid widget
#

TAB might work?

tender plaza
#

that ph9to is on 1.12.2 with spongeforge

#

but idk which plugin they used

#

tab?

#

what other name i can type on sponge forge instead of tab or tablist

rigid widget
#

TAB is a bukkit plugin, sorry

#

Dunno sponge ones

#

Might wanna ask in the sponge discord

gilded nova
#

A smart person learns from his own mistakes, but a smarter person learns from other peoples' mistakes.

last locust
#

๐Ÿ‘‹

drowsy quest
#

I'm so sad Christmas Markets are closed this year in Germany. But at least we can enjoy some good mulled wine at home ๐Ÿ˜Œ

sharp void
#

Are you from germany?

vocal rivet
#

is a 35 letter password really secure? ๐Ÿค” This one website says cracking a 12 letter password already takes 371.000.000 years

#

somehow I dont believe that

sharp void
#

The question is how many tries you have per second

drowsy quest
#

Yes 35 letters is beyond secure @vocal rivet

outer vesselBOT
#

Hey BrainStone! Please don't tag helpful/staff members directly.

drowsy quest
#

@sharp void yes

vocal rivet
#

Generating secure api keys ๐Ÿ˜„

drowsy quest
#

32 hex is beyond secure btw

#

I mean that's 2^256 possible combinations

rigid widget
#

That's more than 7

gilded nova
#

indeed

drowsy quest
#

Which is about 1.158x10^77

#

So yeah

gilded nova
#

you could say that's a lot lol

rigid widget
#

It's 115792089237316195423570985008687907853269984665640564039457584007913129639936

gilded nova
#

no u

rigid widget
#

Ur mum's weight

gilded nova
#

LARRY

rigid widget
#

In tonnes

#

Metric tonnes.

gilded nova
#

xD

drowsy quest
#

If we assume 1000 attempts per nanosecond that would still take 2.66x10^47 ages of the universe

#

So yeah

#

However that is only secure if you generate it from a secure random source

rigid widget
#

What if you go 12345678912345678912345678912345

drowsy quest
#

Very secure
Much random
Such wow

vocal rivet
#

The API keys have upper and lowercase letters, numbers, they can expire and are renewable trough the API ๐Ÿ˜„

drowsy quest
#

You're safe, don't worry

vocal rivet
#

I hope so XD I wanna setup a cronjob to replace the keys once a week automatically

drowsy quest
#

Why?

vocal rivet
#

To add that extra pinch of security ๐Ÿ˜Ž XD

drowsy quest
#

That's just an extra inconvenience

#

Keep in mind the keys need to be exchanged at the endpoints

#

And if you can roll them out automatically you lose the entire security of the key system

vocal rivet
#

Yes, the endpoints are the things updating their key automatically. They send a UPDATE request to the specific ApI endpoint ( with a still working key ) and then the API will invalidate the old key, generate a new one and return it as response

#

then the endpoint only needs to save it

#

SO the API is not updating the key, the endpoints are

drowsy quest
#

If you insist

#

I mean if having the key can generate a new one then any attacker can just break your system by requesting a new one for themselves

vocal rivet
#

They first need the key for doing that, and the new key has the same permission set as the old one

drowsy quest
#

Yes I do understand it

vocal rivet
#

Rotating keys helps because even if a hacker obtained a old key, its invalidated and doesn't work anymore, while if I would permanently use the same key the chances are higher of a hacker obtaining it, and let it just be by accident that you send in a screenshot and didn't notice a old API key being clearly visible

drowsy quest
#

I just don't think this adds anything to security in your case

#

Anyways

#

You do your key thing and I get drunk

#

Sounds like a good plan to me ๐Ÿ‘๐Ÿผ

vocal rivet
#

Alright XD

drowsy quest
#

I'm finished

#

What about you?

vocal rivet
#

Well I am gonna stop for today, its so late I can't think straight anymore XD

#

For today, yes I am XD

drowsy quest
#

Boo

#

๐Ÿ˜›

gilded nova
#

You do your key thing and I get drunk
yes

#

I'm joining you

drowsy quest
#

Awesome

vocal rivet
#

My brain was like "What the best way of generating a 5 part api key? lets generate 5 own variables for that" XD

drowsy quest
#

GG WP

vocal rivet
#

I also wanna get drunk, but I dun has any alcohol left XP

drowsy quest
#

Though again unless you have a secure random source your keys don't have any security value

#

Awww

#

I mean I'm also out of mulled wine

#

Which is sad

#

But those two cups were really good

#

โค๏ธ

vocal rivet
#

I want my Alcoholic Icetea XD

#

its so tasty

drowsy quest
#

I'd love some good vodka right now

#

Like actual good expensive stuff

#

So tasty!

vocal rivet
#

Friend of me bought 90% in italy

drowsy quest
#

One of my exes has Ukrainian family. And they came over for a baptism. And oh boy was the stuff they brought incredible

#

Like you didn't even taste the alcohol

#

That's how smooth it was

vocal rivet
#

I wanna try :3

drowsy quest
#

They brought 2 3L bottles

#

They were gone with like 10 people waaay before midnight

#

Was a fun party

#

I can tell you that

silent knot
#

Can you use somthing like * , some you can do in linux for not care of the name of files (wildcards). Like it check and can change for example perm.test.5 with for example perm.test.* to remove perm.test.5 and add for example perm.test.10.

Is for when you dont know the number, only first part of the perm.

potent prawn
#

yes

#

wildcards are like a default standard when it comes to permission plugins

silent knot
#

oooooooo nice so perm.test.* work?

potent prawn
#

yes of course

silent knot
#

sounds really nice, do not think old we used had support for this therefore I did not think this had it.

drowsy quest
#

Support in this case comes from LP, not WE @silent knot

silent knot
#

WE?

short warren
#

World edit

#

I think auto correct or something messed that up

potent prawn
#

do not think old we used had support for this
I guess he's assuming your use of "we" here means WorldEdit

drowsy quest
#

What do you mean with "old we"

potent prawn
#

because that sentence doesn't really make sense haha

short warren
#

I think it s just missing perm plugin

#

Like 'i don't think the old perm plugin we used had support for that"

silent knot
#

Hm, I think you missunderstand. I not shall add a perm.test. I want remove perm.test (with out knowing the number after).

potent prawn
#

oh you want to remove permissions... i think you will only be able to do that with bulkupdate

drowsy quest
#

You can set permissions to false

potent prawn
#

otherwise that works too ^

drowsy quest
#

Also do you want to remove permission nodes or deny permissions

silent knot
#

yes but only work if i know hole perm string?

short warren
#

No you can still use the wildcard

silent knot
#

For example player get perm.test.5 and get perm.test.6 and later uppgrade to perm.test.10, so will I remove the old one.

drowsy quest
#

Remove the node or deny the permission

#

Huge difference

silent knot
#

remove node.

drowsy quest
#

Ok. Then no

#

Best you can do is bulkedit

#

But just use the editor

#

!editor

outer vesselBOT
potent prawn
#

i should really merge in that search feature

forest helm
#

^^^^^

silent knot
#

yes but players get the perm as reward and also I will they can upgrade the perm (and here is the problem). I will use somthing some remove the old and add the new one (is not somthing some I will or can edit self).

#

So I know the first part of the perm but, not the numbers (some differ depending how many reward player get).

drowsy quest
#

This is support question

silent knot
#

I thought this was more offtopic

#

But yea i will ask in general

desert moon
#

hey can anyone help

#

does anyone know how to disable command promps for players who dont have permissions to those commands

#

so essentials:essentials.antioch doesnt autocomplete unless they have that permission

forest helm
#

That's handled on the server/plugin's side

desert moon
#

oh ok

trail shuttle
#

Since when are replies enabled here?

rigid widget
#

A little while

#

It's a gradual rollout this week so it was to be expected

violet rivet
rigid widget
#

Ikr

trail shuttle
#

Now clippy wont tell for replying/quoting

rigid widget
#

Well it still can lol

#

Reply to this with ping on

#

(which is always on, by default, have to turn it off every time)

trail shuttle
outer vesselBOT
#

Hey powercas_gamer! Please don't tag helpful/staff members directly.

violet rivet
potent prawn
#

yeah it still works

trail shuttle
#

recommended is only with 1 c right?

steady mountain
#

Well depends which version, there is a silent one at the end if you are talking about gibberish otherwise only 1

trail shuttle
#

What's the difference with repo.lucko.me and nexus.lucko.me?

vocal rivet
#

Propably just an alias

twin warren
#

have another look :p

trail shuttle
#

If you don't mind me asking, how did you make it so that url goes to the nexus all repo?

twin warren
#

a nginx rule

trail shuttle
#

return or rewrite?

trail shuttle
#

Thanks!

inland lagoon
#

Does anyone know of a server-translator plugin that supports machine translation? (Not on-the-fly, but just once)

tender plaza
#

guys

#

plugin for sponge to remove recipes?

rigid widget
#

probably would be more helpful asking here ๐Ÿ˜„

tender plaza
#

no one knows ,_,

drowsy quest
#

@tender plaza check Ore

#

If there's nothing there's good chance there isn't any (publically) available

drowsy quest
#

@rigid widget mind to mute me for 2 hours?
I'm slightly mad to say the least (nothing related with the server here) and might become less than friendly when being confronted with less than smart people

outer vesselBOT
#

Hey BrainStone! Please don't tag helpful/staff members directly.

rigid widget
#

PINMGING STAFF MJUTE TIME

#

?mute @drowsy quest 2h

viral havenBOT
#

dynoSuccess BrainStone#6759 was muted

rigid widget
#

โค๏ธ

trail shuttle
#

Who has experience with Jenkins and can help me figure out why when I try to add a GitHub Server (GitHub plugin?) it doesn't give me a option to choose between any of my saved credentials

vocal rivet
#

A github server?

#

These are really expensive

trail shuttle
#

that thing trying to make it so I can auth to my github for private repos

vocal rivet
#

Ahh, you propably need a uthentication token then

trail shuttle
#

ig, haven't done this with GH

gilded nova
#

.png

#

yes

trail shuttle
#

can't set it to nothing

outer vesselBOT
#

Hey SwearsGamers! Please don't tag helpful/staff members directly.

steady tangle
short warren
#

you can spend a second looking

gilded nova
#

ok

#

my prefix for owner doesnt show in chat

#

what do i do

#

what chat plugin do you use

#

bungeechat

#

@drowsy quest ๐Ÿ˜„

drowsy quest
#

Well do you have LP on your bungee and have it properly synced @gilded nova

gilded nova
#

yeah i think so

#

we went through the syncing process earlier today :d

#

yeah

drowsy quest
#

What's the output of /lpb user <user> info?

forest helm
#

I greatly appreciate being cold pinged about something not related to LP, thanks Swears

gilded nova
#

it says im owner

drowsy quest
#

Are you online?

gilded nova
#

yeah

drowsy quest
#

Then you don't have ip-forwarding setup properly

gilded nova
#

oh wait no

drowsy quest
#

Can you run that command while online please?

gilded nova
#

this

drowsy quest
#

I said /lpb not /lp

gilded nova
#

lpb ?

#

in the bungeecord console ?

drowsy quest
#

yes @gilded nova

#

!ask @gilded nova

outer vesselBOT
#
Please ask your question!

Please ask the question you have. Don't ask to ask, or ask to DM someone. There are people here to help you, but we need to know what to help you with, so please just ask the question you want to in as much detail as possible!

Or, try here first:
Why shouldn't I ask to ask?
gilded nova
#

00:52:30 [INFO] [LP] (type: mojang)
00:52:30 [INFO] [LP] - Status: Online
00:52:30 [INFO] [LP] - Parent Groups:
00:52:30 [INFO] [LP] > owner
00:52:30 [INFO] [LP] - Contextual Data: (mode: active player)
00:52:30 [INFO] [LP] Contexts: (server=bungee) (world=test-server-1)
00:52:30 [INFO] [LP] Prefix: "[Owner] "
00:52:30 [INFO] [LP] Suffix: None
00:52:30 [INFO] [LP] Primary Group: owner
00:52:30 [INFO] [LP] Meta: (primarygroup=owner)

#

same here

drowsy quest
#

I'd like both of your bungee console log

#

!paste

outer vesselBOT
#
Please use pastebin!

Seeing a paste of the problem makes everything so much easier! Use https://bytebin.lucko.me/ for easy pasting!

For console errors:

Pastebin any relevant segments of the console log. If it's a startup error, this includes the entire startup log!

Other errors:

Pastebin the entire LuckPerms config file (passwords removed) as well as any other relevant files!

gilded nova
#

?

drowsy quest
#

I need your BungeeCord log

#

Ideally you stop your bungee, rename the log file start it again, join it and then try to chat

#

Then give me the log

gilded nova
#

which log

#

?

drowsy quest
#

The bungeecord log

#

How many times do I need to repeat myself?

#

@gilded nova same for you, I need your log

gilded nova
#

the console log or a file log

drowsy quest
#

@gilded nova well that sounds like an issue with your hoster

drowsy quest
#

If you can't access config files I don't know how I could even begin to help you btw. You need to have that fixed

gilded nova
#

do i send it here ?

drowsy quest
#

!paste

outer vesselBOT
#
Please use pastebin!

Seeing a paste of the problem makes everything so much easier! Use https://bytebin.lucko.me/ for easy pasting!

For console errors:

Pastebin any relevant segments of the console log. If it's a startup error, this includes the entire startup log!

Other errors:

Pastebin the entire LuckPerms config file (passwords removed) as well as any other relevant files!

drowsy quest
#

Reach out to your hoster about that error and have it fixed. Then I need your log

gilded nova
#

i have it but where do i send it

drowsy quest
#

Here?

#

C'mon

#

Please please please use your brain

#

I don't have the patience to baby you through uploading the log

gilded nova
drowsy quest
#

Looks ok

#

Do you get any errors in the console when you try to chat?

gilded nova
#

no

drowsy quest
#

Then I need your config

gilded nova
drowsy quest
#

BungeeChat config I meant

gilded nova
#

ah

drowsy quest
#

Alright. If you tell me how BungeeChat is supposed to do any chatting when you have both chat modules disabled, then I'd be madly impressed!

gilded nova
#

xd is that true?

drowsy quest
#

No I'm just making it up because #pranked lol xD ROFL LMAO
/s

gilded nova
#

where is it disabled ?

drowsy quest
#

enabled=false

gilded nova
#

line 31 ?

drowsy quest
#

Look for the module you want to enable (or both) and set it to true inside the respective block

#

You have both local chat and global chat

gilded nova
#

so i need either global or local ?

drowsy quest
#

Or both

#

Depending on what you want

gilded nova
#

what is the difference

drowsy quest
#

local chat = chat only with people on the same server (but managed through BungeeChat)
global chat = chat with all players on all servers
(I believe you could've figured that one out)

gilded nova
#

Hi there so i'm having so issues creating message.yml file

#

When ever i try to use messages in message.yml file it keeps pulling messages from config file

vast isle
#

for luckperms?

gilded nova
#

I have for example "sender.sendMessage.... translatechatcolor... Main.getConfig...

#

No no custom plugin

vast isle
#

oh

gilded nova
#

This is what i'm having so far

#

for files

gilded nova
civic owl
#

org.bukkit.plugin.InvalidPluginException: Cannot find main class nl.santosh.pets.Main

drowsy quest
#

Check if the jar contains the class

civic owl
drowsy quest
#

There are no classes in that jar

#

Your jar generation is broken

civic owl
#

oh

#

how did i not notice

#

Oh wait i know what i did wrong

gilded nova
#

Heard mcm's been having issues lately

trail shuttle
#

mcm bad

gilded nova
#

Anybody know some good hub/lobby plugins or how to make /server lobby = /lobby
/server factions = /factions etc..

#

he wants something that allows to alias /lobby as /server lobby

#

or.. the other way around

#

you get the point lol

#

would be possible if bungee had some sort of commands.yml but it don't

potent prawn
#

There are many plugins that will offer that lol

#

Google is a thing

gilded nova
#

Google is one of them plugins?

#

๐Ÿ˜ฎ

drowsy quest
#

I think I'll create a plugin that you can ask questions and it will then give you links with answers

#

I'll call it Google

steady tangle
#

It's like a person but better

gilded nova
#

It's like Larry

drowsy quest
#

Lol

steady tangle
#

Ok Larry, what's the weather like today

drowsy quest
#

I'm imagining the fun times you'll have if the plugin would consider every chat message (maybe even commands) a search query and list like the top 5 results

gilded nova
#

Hu

#

Hi

onyx mason
#

hi

modest compass
#

!moss (for me

outer vesselBOT
#
Essentials

Make sure you are using EssentialsX and Vault for prefixes. For any other issues with Essentials, you should seek support in either #general or the official EssentialsX support Discord.

EssentialsX Discord
placid pagoda
#

ok.. I need some help.. I've tried a few backup plugins.. they are all doing the same.. The world seems to be saving.. but its not saving character data.

rigid widget
#

Likely because the files are being written to while the server is running and so must be skipped to avoid corruption

#

You'll need to back up with something external to the server (not a plugin)

placid pagoda
#

Is this a new thing? I've never noticed this before.

rigid widget
#

No, any file being written to while a backup is taking place from within the program must be skipped

#

You'll need to do what hosts do and back it up without a plugin inside doing it

placid pagoda
#

hm just seems odd I was hosting with a backup plugin just fine not to long ago and only recently I started getting this session.lock message and it stopped saving character data. What should I be using to back up the server then?

halcyon kelp
#

Is it a problem if Im running unsuported server version (Spigot 1.16.3) if I write /ess version?

#

@steel pelican

outer vesselBOT
#

Hey Mati0101! Please don't tag helpful/staff members directly.

halcyon kelp
#

K sorry ๐Ÿ˜„

steel pelican
#

!moss Ask here. For help with EssentialsX

outer vesselBOT
#
Essentials

Make sure you are using EssentialsX and Vault for prefixes. For any other issues with Essentials, you should seek support in either #general or the official EssentialsX support Discord.

EssentialsX Discord
gilded nova
#

@harsh vine after answer

modest compass
#

thats a very helpful answer indeed

potent prawn
#

@mention

#

did i do it right

half grove
#

No

#

He meant

#

After answer @mention

potent prawn
#

o

modest compass
#

๐Ÿคฏ

dire oxide
#

OH SO YOU LIKE DISCORD?

TRY LIGHT MODE

limber sage
#

!help

outer vesselBOT
#
Available commands:
โ€Ž

!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!cauldron
!colours
!commandequivalents
!commands
!config
!context
!cookbook
!default
!downloads
!editor
!editorsafety
!errors
!essentials
!extensions
!extracontexts
!faq
!formatting
!helpchat
!inheritance

โ€Ž

!install
!libsdir
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!tracks
!translations
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki

limber sage
#

!faq

outer vesselBOT
gilded nova
#

@teal sun delete uwuwu

teal sun
#

@dire oxide Do not advertise please, first warning

dire oxide
#

oof

#

sorry

steady tangle
#

Congrats on helpful powercas ASblobpartyeat

gilded nova
#

Samosa got nitro ooO

gilded nova
#

Aww dumcord doesn't render animated emojis on replies

steady tangle
#

Got gifted a while ago BulbaOWO

vast isle
vocal rivet
#

^

gilded nova
#

Aa yes, yet another inconsistency between the two platforms

#

The list just keeps growing

#

You can set custom join and quit messages here. Set this to "none" to use the default Minecraft message,

or set this to "" to hide the message entirely.

You may use color codes, {USERNAME} for the player's name, and {PLAYER} for the player's displayname.

custom-join-message: "&7[&a+&7] {USERNAME}"
custom-quit-message: "none"

#

EssentialsX join and leave messages

#

how do i do that [username] to have prefix and his name in the right color

modest compass
#

!moss

outer vesselBOT
#
Essentials

Make sure you are using EssentialsX and Vault for prefixes. For any other issues with Essentials, you should seek support in either #general or the official EssentialsX support Discord.

EssentialsX Discord
gilded nova
#

i have a questiojn
how do i do so i can type /lobby to go to the server lobby and type /factions to go to the server factions etc...

potent prawn
#

look up bungee command alias plugin or something like that

gilded nova
#

i found CommandControl

#

seems fine

#

ServerCommands:
creative: /gamemode c
survival: /gamemode s
BungeeCommands:
lobby: server lobby
broadcast {args}: alert {args}
hub: server lobby

outer vesselBOT
#

Hey artwart! Please don't tag helpful/staff members directly.

rigid widget
#

What

potent prawn
#

cya

gilded nova
#

What was that

potent prawn
#

some twat

trail shuttle
#

I really wish Discord would allow you to put folders into folders

trail shuttle
#

Linux experts, how does one execute a shell script within a script?

vocal rivet
#

simple

#!/bin/bash
./otherScript.sh
#

The script works relative to the directory it was executed in, but if you want to be sure you can cd into the directory beforehand

#

The Wings daemon most likely didn't reply

trail shuttle
#

./scripts/update.sh: line 13: ./home/Discord/scripts/start.sh: No such file or directory

vocal rivet
#

try cding to / beforehand

#

anyways, that is a Pterodactyl issue, do you host the panel yourself?

latent tendon
#

@gilded nova SlashServer

gilded nova
#

huh

latent tendon
#

Dash u want war

vocal rivet
#

how are you accessing the panel then?

latent tendon
#

Never say ptero when im around

vocal rivet
#

Pterodactyl

gilded nova
#

why did you tag me ?

latent tendon
#

I replied to ur message lol

gilded nova
#

oh

#

where

gilded nova
#

is slashserver a plugin ?

latent tendon
#

Yes

gilded nova
#

ahh

vocal rivet
gilded nova
#

this one ?

latent tendon
#

Dashy :(

#

@gilded nova yep

gilded nova
#

k

vocal rivet
#

The support discord for Pterodactyl. I assume you are using that since that error message is from a Pterodactyl instance

gilded nova
#

slashserver.[servername] <-- can i use this or do i need to change the servername to the actual name

vocal rivet
#

Unless of course its one of these panels based on Pterodactyl, adding almost nothing and then demaning high prices since its SaaS

latent tendon
#

U need servername. Sample slashserver.factions

vocal rivet
#

@latent tendon Pterodactyl is great! Love it! Embrace it!

gilded nova
#

understand

latent tendon
#

Dash nO

#

Last time i tried it. I had to reset my vps

vocal rivet
#

You messed up then XD

latent tendon
#

Docker bricked. Mysql bricked

vocal rivet
#

Again, something must have caused that, and it most certainly wasnt Pterodactyl or Wings

latent tendon
#

Also i got new cape

vocal rivet
#

I am using it since 2 years now ๐Ÿ‘

latent tendon
#

Screen is better for me

vocal rivet
#

Docker ftw

vast isle
#

agreed!

vocal rivet
#

docker run and problem be gone

#

And pandi, you could always have asked me, I would have gladly helped you getting it to run again :3

latent tendon
#

Im sad

#

Im hungry but my gf fell asleep on my legg

vocal rivet
#

There is also another pandi I helped wih pterodactyl a while back

latent tendon
#

Moar pandi's

vocal rivet
#

@red canopy ๐Ÿ˜›

red canopy
#

what

vocal rivet
#

Pandi party

trail shuttle
#

!vault

outer vesselBOT
#

Sorry! I do not understand the command !vault
Type !help for a list of commands.

gilded nova
#

i have 4 servers and have set 1 RAM on each one. When i open 1 (lobby) it works fine and all works with some plugins and different things, but when i open the 2nd one (bedwars) it stops after a minute, then the lobby one also stops. Why does this happen and what can i do ?

vocal rivet
#

I thnk you should rather try using 0.5 RAM ๐Ÿ˜›

rigid widget
#

or maybe just use 3 goat

vocal rivet
#

or 5 bananas

rigid widget
#

or depending on your linguistics perhaps 4 chevies

gilded nova
#

but i got enough RAM to do it i guess

trail shuttle
#

4 gb for 4 servers?

gilded nova
#

1GB for 4

#

but it crashed when i only opened 2

#

its bungeecord btw

trail shuttle
#

wait what

gilded nova
#

4 without the bungeecord one

trail shuttle
#

how much gb ram do you have in total?

gilded nova
#

16 *

rigid widget
#

then set 3.9 on each and .4 on the bungee or something

gilded nova
#

lol

#

so what do i do

trail shuttle
#

sorry 4 tag larry

rigid widget
#

np haha

#

nice

#

Hi Cas

gilded nova
#

you meant it ?

#

16/16 GB for my server ?

rigid widget
#

what else are you gonna use it for

gilded nova
#

windows, discord, google , youtube idk

rigid widget
#

oh

#

you're selfhosting on your own machine

gilded nova
#

yeah

rigid widget
#

ye, bad idea for running a network

#

aka don't

#

you can totally test bungee stuff locally, but running an actual network for people to play on should not be done from home

gilded nova
#

i dont

#

i jsut play it with friends

short warren
#

why do you have a network for friends ๐Ÿ˜•

gilded nova
#

its guuud

short warren
#

just have 5 preset servers or whatever and start them up when thats what youre doing

gilded nova
#

but i want it to work

#

when i try to set to 2GB it open for a millisec

#

it could be something with my paper.jar and start.bat file

short warren
#

then scale down what youre doing, you dont have the resources to run a network as well as all the other stuff on your personal machine

gilded nova
#

on memory now it shows 5,2 GB RAM use

#

that means 10,6 free

short warren
#

that means youre probably not setting up your xmx correctly

gilded nova
#

how do i do that

short warren
#

xms = xmx

gilded nova
#

is that the start.bat thingy ?

short warren
#

yeah

gilded nova
#

i just took a method

#

copied from a guide

#

what is the best start.bat code then ?

gilded nova
rigid widget
#

yes @Farofa

gilded nova
#

that was the one i copied

short warren
#

and what did you set the xmx and xms to

gilded nova
#

1GB i think

violet rivet
#

Who's dissing hosting at home... :P

trail shuttle
vocal rivet
#

Pinging is boring, ponging is the new trend ๐Ÿ˜Ž

rigid widget
#

@violet rivet home hosting is different than personal PC hosting lol

short warren
violet rivet
#

Oh yeah you said own machine. My bad

quiet kettle
#

ipban JoupiterHD
[19:39:41 INFO]: Previous ban for JoupiterHD removed.
[19:39:41 INFO]: Console IP-banned JoupiterHD for 'The Ban Hammer has spoken!'
banlist
[19:39:43 INFO]: === Page 3 out of 3 ===
[19:39:43 INFO]: -- [2 seconds ago] --
SokoDreamer was banned by Console: 'The Ban Hammer has spoken!' [Active]
[19:40]
why is this happening :/

#

why if I ban Him I ban Myself?

violet rivet
#

Yeah buy or build something dedicated to the task

quiet kettle
#

how can I solve that?

trail shuttle
#

screenshot /alts JoupiterHD

short warren
#

are you using waterfall or something soko?

gilded nova
#

idk

short warren
#

ip forwarding probably isnt setup correctly

gilded nova
#

i could play with my friends tho

#

they joined and we was in the lobby for some mins

#

before we tried to make bedwars

quiet kettle
#

Flamecord*

short warren
#

not for you, but its a proxy

gilded nova
#

k

short warren
#

alright then you probably dont have ip forwarding setup correctly (test, ignore this)

#

ask their support about how to set it up or check that its working correctly

quiet kettle
gilded nova
#

Yes Unix, it updates

#

:d

#

what about me :C

quiet kettle
#

I was thinking in other thing

#

but the player that entered to my server is known for being a Hacker .-.

#

in many servers

fringe garden
#

how much ram is good

#

cuz rn i has 2100

#

mb

short warren
#

depends

fringe garden
#

im not using ethernet and its a laptop

latent tendon
#

Did i hear flamecord

short warren
#

you cant really guess with no info

latent tendon
#

Jesus

fringe garden
#

g3

latent tendon
#

@quiet kettle might wanna look into BungeeGuard

fringe garden
#

why

#

oh soko

#

lol

latent tendon
#

i see the issue u got soko

#

u have nothing setup correctly

placid pagoda
#

What server backup do folks use lately if plugins don't save character data.

latent tendon
#

my own

trail shuttle
#

whut?

placid pagoda
#

your own?

latent tendon
#

yes my own

placid pagoda
#

elaborate?

latent tendon
#

custom code

placid pagoda
#

Oh I see. What is it run from?

latent tendon
#

wdym

#

the OS or?

placid pagoda
#

I just recently noticed that server back up plugins of all types are not saving character data.. and I guess have not been for sometime... I don't know any coding to make my own.. do you have a reference for for something like that?

#

You just run the code from a .bat file or something? I don't anything about that stuff.

violet rivet
#

You have to be careful when backing up a running server.

#

Some things won't back up as they're open in the java process and sometimes the files are locked against being opened by another program

#

Have you tried serverrestorrer

#

it's done fine for me

placid pagoda
#

I keep hearing this.. but I've never had an issue backing up a server till recently

latent tendon
#

mine backsup when server auto restarts

violet rivet
#

I would do that, but with worlds that are 60gb in size, it'd take an hour for the server to reboot

placid pagoda
#

I'm looking at server restore now.. seems pretty clean I guess I just deal with Character data not being saved.

violet rivet
#

it does save character data

#

it literally copies everything in the root directory if you want it

placid pagoda
#

Mine doesn't

#

Not sure why

violet rivet
#

Serverrestorrer does

#

I'm looking at the player files right now from one of my world backups

placid pagoda
#

It only saves when your not logged in though right?

violet rivet
#

nope

#

saves whenever

placid pagoda
#

I was running the backup command while ingame to test it... and when I load a previous backup it saves the change made in the world but not the character position.

violet rivet
#

You will run into issues if you're using an H2 or similar database for any plugin though

#

It can't back those up if the server is online.

placid pagoda
#

and that's where I'm confused.. because I never used to have an issue with that before.

violet rivet
#

You'll get error messages

placid pagoda
#

and I never have till recently

violet rivet
#

just error messages about it backing up those h2 databsae files

#

everything else will be fine

placid pagoda
#

but an outside script can save the whole thing while it's running. right?

gilded nova
#

You will run into issues if you're using an H2 or similar database for any plugin though
It can't back those up if the server is online.

#

Do yourself a favor and make backups while the server is offline

#

It's just a bit of extra time but it will save you TONS of pain

drowsy quest
#

Well it can backup the database. If it's synced (as it should be normally) it can recover from being opened.

In any case it's best to make LP backups by using the export command

gilded nova
#

But "export" is a concept particular to LP

#

Coreprotect also uses h2 and has no "export" command afaik

drowsy quest
#

Ah

#

I see

gilded nova
#

Hey Brian x

drowsy quest
#

Hi

trail shuttle
#

Anyone know of a java annotation based website framework? (I know I'm bad at explaining but basically so you could do something like)

@Path("/testpage")
public String testPage() {
  return "nothing here";
}```
lyric robin
#

Hello. What's the permission for essentials X fly to disable it, and permission for WE compass teleport off

trail shuttle
#

!verbose

outer vesselBOT
gilded nova
#

What is the perms for building ?

short warren
#

!verbose might help with that

outer vesselBOT
quartz nebula
#

yo

gilded nova
#

oy

forest helm
#

hi conclure

onyx mason
#

0

gilded nova
#

I have seen that with cracked alts (dont know how it works or what it is but its on Wurst hacks at least) you can Join many servers, but since you cant join like hypixel with it that menas they stop it, so how do i do this

#

I dont mean join hypixel with it but prevent it on my server

#

You know how the Krusty Krab keeps its secret ingredient secret?

short warren
#

use online mode?

trail shuttle
#

online-mode = true

gilded nova
#

That's how hypixel keeps their anticheat

#

Online mode on bungeecord config?

short warren
#

just follow fefos copy pasta ๐Ÿ˜†

trail shuttle
#

yes

outer vesselBOT
#

Sorry! I do not understand the command !fefocopypasta
Type !help for a list of commands.

gilded nova
#

Wait is it pinend?

#

Oh

#

Then im safe from that?

#

You searhcbed

#

Searched

#

Remind me to not use discord when drunk

short warren
#

yeah its not pinned anywhere afaik

gilded nova
trail shuttle
#

yes

gilded nova
#

Ok

short warren
#

yeah

gilded nova
#

But what is the best anti cheat plugin? Both free and paid

short warren
#

theres no great ones, although nocheatplus works ok

gilded nova
#

And Also if i want anti-cheat for bungeecord should i find one that works on that or set it in every backend server

short warren
#

theres no bungeecord anticheats is there?

gilded nova
#

Oh

short warren
#

i dont think that works

#

just use nocheatplus as a notification system and have an active staff team

gilded nova
#

So how do i see if anticheat detecs it

#

If it for example is on a bedwars game which obisouly is on another server than the lobby which im in at the time

#

And somebody flies there

short warren
#

ask their support, im sure they have some database or messaging system that does that

gilded nova
#

Is nocheatplus free ?

short warren
#

yeah

gilded nova
#

Wow

#

And its the best commercial plugin?

short warren
#

try it and see how well it works ๐Ÿคทโ€โ™‚๏ธ

gilded nova
#

I will ๐Ÿคฉ

#

Also if you know what is the best bedwars plugin?

#

I checked bedwars rel which I used but that's on 1.11 max and I use 1.16.4 so the only option I see is screaming bedwars

short warren
gilded nova
#

Yeah

#

But I just checked

#

Do nocheatplus only support up to 1.12?

short warren
#

might be

#

ask in papermc's discord or whatever about a 1.16+ anticheat

gilded nova
#

Is it recommended that I follow this guide https://www.spigotmc.org/threads/guide-server-optimizationโšก.283181/? Or I know I should but mostly about the worldborder and pre render map thing by that sounds like a survival, factions and those type of thing

trail shuttle
#

Yes

#

always good to also pregen a world

gilded nova
#

those two points are arguably the greatest benefit

#

So I should do it even tho it's just a lobby server or a bedwars server?

#

Bc I won't even use the normal worlds in the lobby or all my other bedwars servers

#

I mean the lobby/bedwards is not for players to explore as a world

#

Yeah

#

So it is for a mini game or server where you explore

#

you should pregen worlds people will explore

#

Like anarchy, survival, factions

#

so chunks are already generated, instead of that happening as they explore

#

Sounds good

#

Btw when I play bedwars on a little bit of a small map we can't see each other or everything doesn't load up before you get closer sometimes. Is this the server, maybe ram or settings or is this the settings for Minecraft

trail shuttle
#

Settings

gilded nova
#

K

onyx mason
#

Render distance?

gilded nova
#

I don't understand how my bedwars server works tho

#

When I see yt video I see people play alone and using like 1 gb ram and I use less with 4 people and many plugins and also bw game running lol

silent knot
#

As luck perms suport for all colors in prefix/Suffixes (I mean if it has suport for the 16 million colors or are limit to minecraft before 1.16)?

gilded nova
#

anyone know if votifier has a debug setting? can't seem to find out what is wrong with my votifier

modest compass
#

@silent knot up to your chat plugin, since its the one displaying it not luckperms

silent knot
#

Yes but I use placeholders from lucky and I want not same color on staff ranks.

#

if I do it in the chat plugin, it will be wrong.

#

so it is not possible more than what is in minecraft with lucky perms?

potent prawn
#

as ben said, the colours you put in the prefix/suffix depend on what the formatting plugin supports

#

also it's LuckPerms* :P

silent knot
#

the chat plugin should support it, but does not seem like I can put it in the luck perms prefix.

modest compass
#

you just put the format your chat plugin supports

silent knot
#

okay, lets see if it works. because in LP you only see the color code when it add the new addition.

potent prawn
#

LP itself may not support it properly but if the chat plugin does then it's fine

wintry gyro
#

can someone help me ive got a problem. I just downloaded luck perms for my server but whenever i do /lp editor i get the following message in the website :There was an error loading the data. Either the URL was copied wrong or the session has expired.
Please generate another editor session with /lp editor. However i dont even copy the link i just click it so no way the url is wrong

trail shuttle
#

dont double post

wintry gyro
#

sure

upper nymph
trail shuttle
#

!errors

outer vesselBOT
red canopy
#

Does anyone know of a plugin/setting that clears your chat when you change servers on a bungee network?

gilded nova
#

@red canopy it sounds like you need votifier

red canopy
#

No. Votifier is completely different ๐Ÿคฃ

gilded nova
#

No, trust me you need it

red canopy
#

Why do you think that?

gilded nova
#

Because it clears the chat when you change servers

red canopy
#

but votifier has nothing to do with chat besides announcing someone has voted.

gilded nova
#

trust me it does

#

if it doesnt work then try worldedit

red canopy
#

Does anyone genuinely know of a plugin/setting that clears your chat when you change servers on a bungee network?

gilded nova
#

I just told you!

wintry gyro
#

guys when doing /lp editor i get the following error in the web console and i just cant access the editor. Please help if you have any idea how to fix it

gilded nova
#

that sucks man

wintry gyro
#

?

gilded nova
#

that sucks

#

like i feel sorry for you

wintry gyro
#

i know it does

#

i have no idea how to fix it

gilded nova
#

that sucks man

wintry gyro
#

spent hours on that bullshit its pissing me off now

gilded nova
#

awww

wintry gyro
#

im just out of ideas

#

hope someone can help

gilded nova
#

I think the solution would be to get your server jar file, and delete it.

wintry gyro
#

yeh very funny

gilded nova
#

also run windows powershell as admin, and run powershell wininit

#

that should fix it

#

Did it work?

#

@wintry gyro

wintry gyro
#

havent tried it

gilded nova
#

try it

wintry gyro
#

doesnt sound like a solution to me

gilded nova
#

it resets your browsers connection to third party databases

#

i.e bytebin

wintry gyro
#

okay will give it a go in a second

gilded nova
#

It's worked for me in the past

wintry gyro
#

@modest compass ?

outer vesselBOT
#

Hey N1kky333! Please don't tag helpful/staff members directly.

gilded nova
#

fun police

wintry gyro
#

thats why i dont trust people

#

tf is wrong with you ?

gilded nova
#

cutie

wintry gyro
#

find something better to do

gilded nova
#

You're making a mc server

wintry gyro
#

so what

gilded nova
#

find something better to do

wintry gyro
#

yeh dont worry bout me

gilded nova
#

alright

#

enjoy

#

it was a test

#

Brian

#

hasnt lost his temper yet

drowsy quest
#

I know who I didnโ€™t miss during the time I was gone

gilded nova
#

Im proud of you Brian โค๏ธ

#

You changed as a person for the better

drowsy quest
#

And you for the worse

gilded nova
#

?

#

I'm literally being nice bud

#

Im proud of u

twin warren
#

can we stop this conversation here pls

#

thanks

drowsy quest
#

Lol

gilded nova
#

I'm just a proud father

potent prawn
#

@wintry gyro I told you it's something on your computer or network blocking the connection.

wintry gyro
#

yes and ive been lookin for so long now and just cant fix it

#

thats the most frustrating thing

gilded nova
#

Do you have an antivirus lol

potent prawn
#

If you can test it with another device on the same network, and also test it with a different network, then you'll be able to pin point exactly where the issue lies. Unfortunately there really isn't anything else we can suggest other than self hosting all the web stuff yourself

wintry gyro
#

what do you mean by self hosting

trail shuttle
#

host the web editor stuff & bytebin on your pc / host

potent prawn
#

I need to sleep but someone else can explain

gilded nova
#

Fuck youre joking its 1.37am

wintry gyro
#

ok

red canopy
#

@wintry gyro try it on your phone

wintry gyro
#

@red canopy doesnt work

#

its a network problem that i cant fix

#

i just changed the plugin

red canopy
#

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

trail shuttle
#

!help

outer vesselBOT
#
Available commands:
โ€Ž

!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!cauldron
!colours
!commandequivalents
!commands
!config
!context
!cookbook
!default
!downloads
!editor
!editorsafety
!errors
!essentials
!extensions
!extracontexts
!faq
!formatting
!helpchat
!inheritance

โ€Ž

!install
!libsdir
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!tracks
!translations
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki

fringe garden
#

WHAT HAVE YOU DONE

#

people are messaging me now

#

asking for my help

gilded nova
#

waht

fringe garden
#

someone asked for my help

#

and they came from the luckperms server

#

well i helped them

#

and it worked

#

but holy crap

#

im not fudging ready yet'

gilded nova
#

I mean you don't have to respond if you don't want to

#

You could redirect them here

fringe garden
#

well he said he had already come here and he was looking for someone wiht a german name

#

so he messaged me\

gilded nova
fringe garden
#

I DONT KNOW GERMAN

onyx mason
#

Calm

fringe garden
#

yes its the

#

guy

#

its_las

#

who said he needed german help

#

whe spoke pretty good english

#

i dont know why he thought his english was bad

#

and most of what really suprised me is why he thought my name was german

gilded nova
#

@gilded nova please don't send DMs to members asking for help, ask your question in any of the #general channels instead and wait patiently for a reply.

fringe garden
#

that was in this chat

gilded nova
#

187

#

188

fringe garden
#

189

#

did you make this discord just to get help with that one problem

gilded nova
#

@gilded nova sry for send DMs to a not Supporter but he is a relly good supporter

outer vesselBOT
#

Hey its_las! Please don't tag helpful/staff members directly.

fringe garden
#

I HELPED YOU

#

WHAT DO YOU MEAN

gilded nova
#

Clippy shush

#

You helped me good

fringe garden
#

oh i thought you said i wasnt helpful sry

gilded nova
#

He is saying that, even though you don't have a "helpful" role, you were of good help :)

fringe garden
#

ye i help0ed him with his problem

#

i would like to help

#

i just dont know enough sabout it

gilded nova
#

Well knowing the ins and outs of LP is not an easy task, it's a bit.. yikes

fringe garden
#

ye

#

its definatly hard after working on it for hours

#

i think i spelled definitely wrong

#

lol

#

maybe i culd be a helpful role

#

do we have to apply or something

trail shuttle
#

not really how it works

fringe garden
#

lol'

#

how does it work than

#

do you just elp people in general

#

chat

#

er something

onyx mason
#

Well first requirement I think, is being able to spell

fringe garden
#

lol

#

i can spell to some degree

#

isnt this what the off topic server is for

#

wait so do i just help ppl in the normal help chat

#

to get that rank

gilded nova
#

whay

fringe garden
#

whay

#

Oh why

gilded nova
#

All roles are given out at our discretion - there is no way to apply for any of them, sorry!

#

But yuh

fringe garden
#

wait so do you have that role

#

i dunno helping ppl makes me feel good

trail shuttle
#

fefo has it yes

fringe garden
#

ok

#

dangit is there a way to turn off the slash key

#

lol

trail shuttle
#

?

fringe garden
#

oh gosh my cheese puffs are stale

#

wait nvm it was just that one

short warren
#

ayy congrats on unlucky fefo

fringe garden
#

Woooo gg fefo

trail shuttle
#

?

short warren
trail shuttle
#

doesn't say that for me

short warren
#

restart your discord ๐Ÿคทโ€โ™‚๏ธ

trail shuttle
#

effort

bold sparrow
#

FEFO IS MOD ๐ŸŽ‰๐ŸŽ‰

#

Which means heโ€™s no longer helpful

#

Rip

gilded nova
#

eyy

#

Pink fits me best ngl

trail shuttle
#

you gotta pr the wiki now

gilded nova
#

wat

gilded nova
#

Go to the plugins folder in your proxy.. and delete the jar?

#

Then it's not installed?

#

what is this ?

#

[19:11:02 WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!

#

also go this one

trail shuttle
#

plugin uses old item stuff

outer vesselBOT
trail shuttle
#

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

gilded nova
#

so you mean since im playing on 1.16.4 i have an plugin which tries to get/spawn a item which is old and therefor cant spawn ?

#

is it connected to this ?

fringe garden
#

btw whats the essentials perm called to allow a player to eat

trail shuttle
#

delete anti builda

fringe garden
#

isnt that spawn prot though

trail shuttle
#

no banana

fringe garden
#

oh lol

trail shuttle
#

screenshot your bungee plugins folder

trail shuttle
#

Not /plugins

#

your BUNGEE plugin folder

#

not the bukkit one

gilded nova
#

when i type /restart in the server consoles it just stops. This is very annoying bc with the bedwars plugin it auto restarts the server (i have a bungeecord) and it doesnt start again it just stops and i have to manually start it. Are there any way to make /restart actually RESTART the server ?

trail shuttle
#

do you have a bungeecord server...?

#

then you don't have bungeechat lol

outer vesselBOT
#

Hey SwearsGamers! Please don't tag helpful/staff members directly.

trail shuttle
#

where does it say that it is on the server

#

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

#

idk then

gilded nova
#

why do you think it is bungeechat in the first place lmao

#

anyone know answer to my question ?

#

Yes, provide a startup script

#

how

#

and what is that

rigid widget
#

How do you start your server

violet rivet
#

Interesting, does it save memory starting it that way?

gilded nova
#

with start.bat file

#

Not at all lol

violet rivet
#

lol

gilded nova
#

so what startup file ?

#

How do you start your server

#

no but i mean like how do i do it