#general

1 messages · Page 293 of 1

honest cloak
#

I think you have backdoor in API

trail shuttle
#

No

lavish rivet
#

told ya

#

its not lp

#

3

trail shuttle
#

You downloaded infected plugins

lavish rivet
#

❤️

honest cloak
#

I have turned off luckperms on one of my servers and now it's not sending this

gilded nova
#

it can be any plugin that hooks to LP (and any can)

#

but i can tell you it's not LP itself

trail shuttle
#

(unless you downloaded LP of blackspigot) which.. why?

#

!download

outer vesselBOT
modest compass
#

Its also possible that your server software is one the being infected

#

or the computer hosting the mc server

modest compass
#

prove?

lean rain
modest compass
#

lol

gilded nova
#

did you not read any of our messages?

lean rain
#

I disabled all plugins.

modest compass
#

thats funny

trail shuttle
#

you can look at the source code of LP to see what it's doing lol

gilded nova
#

also a bad plugin can inject (malicious) code into other jars

#

so yea

modest compass
#

lp has nothing to hide lol

gilded nova
#

actually yea

#

@lean rain mind DMing me your LP jar?

lean rain
#

Okay wait.

modest compass
#

yea id be curious to decompile it

gilded nova
#

idk man luckperms is fucking huge and that is not helping me 😂

modest compass
#

I think intelliJ can search by text?

#

If its something in lp code, the discord link will be in the code

trail shuttle
#

look for javaassist stuff?

gilded nova
#

Not in its_regen's

#

there's javassist stuff in uQlel's LP jar lmao

honest cloak
#

in my 5.3.3 jar there is class me.lucko.luckperms.bukkit.loader.BukkitLoaderPluginL10

trail shuttle
#

Thats fine

honest cloak
#

but in latest from website there isn't

trail shuttle
#

Oh

#

Wait no

#

The L10 isnt

honest cloak
#

first is my second is latest

gilded nova
#

yeah that's not something LP has

#

got it injected

honest cloak
#
import java.io.ByteArrayInputStream;
import java.io.File;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.FileVisitOption;
import java.nio.file.Files;
import java.nio.file.LinkOption;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
import java.security.SecureRandom;
import java.util.Iterator;
import javassist.CtClass;
import javassist.I;
import javassist.aa;
import javassist.b;
import javassist.f;
import javassist.k;
import javassist.ws.a;```
#

in this class

trail shuttle
#

What does it do?

modest compass
honest cloak
#

detects windows

#

oh

modest compass
#

Definitely something injected code

trail shuttle
#

Mind dming me the jar also?

modest compass
#

getDataFolder().getParent() looks like something to exploit the entire plugins folder

honest cloak
outer vesselBOT
gilded nova
#

its_regen's might have had it too but i can't find anything about that.. luckythonk

honest cloak
#

holly shit

#

its injecting

#

this classes

#

into all plugins

modest compass
#

yes

gilded nova
#

mhm

modest compass
#

bcu getDataFolder().getParent() is the plugin folder

gilded nova
#

nice plugin 🤣

modest compass
#

and its running something on it, likely getting the .jars and doing something

steady tangle
gilded nova
#

no u

#

@gilded nova ?

#

anything wrong?

modest compass
#

javassist can literally change the bytecode wow

gilded nova
#

also yeah absolutely nothing about discord

modest compass
#

the discord is just to blow things up

gilded nova
modest compass
# honest cloak

the code basically loops through all the plugins and get all its classes. if there is an the onEnable method, add the malicious class to the package and inject the line to create a new instance of the malicious class

#

the interesting thing is how did it get there...

gilded nova
trail shuttle
#

No

modest compass
#

if they allowed jvm to have permissions edit files outside of one mc server, it can traverse all the jars files in a computer and edit it?

gilded nova
#

eh not really to do with the host, Java FileSystem does not directly equate to the OS file system

modest compass
#

but with properly setup of the server, it shouldnt happen

naive rapids
#
public CompletableFuture<Map<String, String>> getPlayerLimitsAsync(UUID who) {
        return luckPerms.getUserManager().loadUser(who)
                .thenApplyAsync(user -> {
                    Map<String, String> strings = new HashMap<>();
                    try {
                        strings.put("bloader_offline_max",getGroupAsync(who).getCachedData().getMetaData().getMetaValue("bloader_offline_max"));
                    } catch (InterruptedException | ExecutionException | TimeoutException e) {
                        e.printStackTrace();
                    }
                    try {
                        strings.put("bloader_online_max",getGroupAsync(who).getCachedData().getMetaData().getMetaValue("bloader_online_max"));
                    } catch (InterruptedException | ExecutionException | TimeoutException e) {
                        e.printStackTrace();
                    }
                    strings.put("bloader_offline_personal",user.getCachedData().getMetaData().getMetaValue("bloader_offline_personal"));
                    strings.put("bloader_online_personal",user.getCachedData().getMetaData().getMetaValue("bloader_online_personal"));
                    return strings;
                });
    }

public int getOfflineLimit(User p) throws ExecutionException, InterruptedException, TimeoutException {
        CompletableFuture<Map<String, String>> future = getPlayerLimitsAsync(p.getUniqueId());
        Map<String, String> balances = future.get(5, TimeUnit.SECONDS);
        String bloader_offline_max = balances.get("bloader_offline_max");
        String bloader_offline_personal = balances.get("bloader_offline_personal");
        if(bloader_offline_personal==null){
            bloader_offline_personal="0";
        }
        if(bloader_offline_max!=null)
            return Integer.parseInt(bloader_offline_max) + Integer.parseInt(bloader_offline_personal);
        else
            return 0;
    }
#

so i'm getting the CompletableFuture in getPlayerLimitsAsync() and then using it to get the users "offline loader" limit in getOfflineLimit() - although i think i'm doing something wrong and it seems to lag the server while it gets the values at future.get()

#

How do i make sure it doesnt lag the server?

modest compass
#

but it does mean you may need to change your getOfflineLimit to a CompletableFuture<Integer> depending on how you implement it

#

bcu .get basically just makes it wait until the user is loaded before continue, which is definitely going to cause lag

#
public CompletableFuture<Integer> getOfflineLimit(User p) {
    return getPlayerLimitsAsync(p.getUniqueId()).thenApply(balances -> {
        String bloader_offline_max = balances.get("bloader_offline_max");
        String bloader_offline_personal = balances.get("bloader_offline_personal");
        if(bloader_offline_personal == null) {
            bloader_offline_personal = "0";
        }
        if(bloader_offline_max!=null) {
            return Integer.parseInt(bloader_offline_max) + Integer.parseInt(bloader_offline_personal);
        }
        return 0;
    });
}

No clue if its 100% correct bcu i dont have intelliJ open rn, but something like this

naive rapids
#

thank you so much! but in this case, wouldn't I be calling .get() on the CompletableFuture<Integer> elsewhere in the code anyway, and wouldn't this cause the same amount of lag?

modest compass
#

No, you will probably need to use .thenAccept

naive rapids
modest compass
#

Yea to do async things, quite a bit of code change need to be done if not planned beforehand

naive rapids
#

yes naively i assumed all Users were available at all times when i started the plugin megalul

modest compass
#

Unfortunately not the case haha

zenith lintel
#

hello

#

i heard that bukkit and spigot got hacked

#

is this real?

gilded nova
#

I answered you in enginehub...

zenith lintel
gilded nova
#

then.. read them?

zenith lintel
sweet olive
#

Wat

#

Lol

steady tangle
#

awoo

gilded nova
#

aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

#

@steady tangle uwu

steady tangle
#

uwuwuwuuw

short warren
#

Where has aber been blush_cry

#

Probably switched to PEX smh

gilded nova
#

@onyx mason 👀

onyx mason
#

Hi

#

Been not at home for a while

#

@gilded nova @short warren

rigid widget
#

@onyx mason are u back in stupidbc

polar stump
#

My first work in FL studio

#

Plz appreciate

bitter salmon
#

Can I mass update the context for every permission every player already has?

modest compass
#

!bulk

outer vesselBOT
bitter salmon
#

thanks

sweet olive
#

yo dose anyone know why my server icon dose not work its named server-icon.png and its 64x64

gilded nova
#

that is waaaaay larger than 64x64 lmao

heavy nova
gilded nova
#

now that's more like it

sweet olive
#

Thanks! i used a website to convert it lol since photoshop keeps crashing

heavy nova
#

i use the software paint.net (its free and really helpful) to resize my server icons, because it has the "bicubic" option. this looks a lot better than blinear and nearest neighbor, those make the pixels look blurry and lose quality once rescaled

gilded nova
#

I mean even Windows' Paint can resize lmao

heavy nova
#

although the difference is really small, im really picky when it comes to it so i prefer bicubic rescaling (1 is ms paint, 2 is bicubic rescaling)

#

the difference is more noticeable per image

fair herald
#

hi

#

how can i change the name of the default group

#

i want it to be member

trail shuttle
#

!def

outer vesselBOT
fair herald
# trail shuttle !def

my issue is that i got this plugin powerranks to change ppls names so now nobody has the default group and cant put the same commands in the default group

trail shuttle
#

Remove powerranks

#

Cant have 2 permission plugins

gilded nova
#

Can anyone tell me the web socket url from the relevant code that is causing the problem with the backdoor?
I'd like to do some analysis.

fair herald
trail shuttle
#

!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
trail shuttle
#

!prefix

outer vesselBOT
fair herald
gilded nova
#

LP provides the prefix to other plugins, but LP itself does not put it in chat

#

you need a chat plugin to put the prefix from LP in chat

fair herald
gilded nova
#

yes

#

you also need Vault

#

it acts as a bridge between LP and other plugins

fair herald
fair herald
# gilded nova yes

so now after i removed the plugin now the perms in the default group i cant type them

fair herald
# onyx mason No

so now after i removed the plugin now the perms in the default group i cant type them

#

the plugin is powerranks

onyx mason
#

Don't reply just to ping lmao

fair herald
#

ok

#

can u help

#

@onyx mason

outer vesselBOT
#

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

fair herald
#

@gilded nova

outer vesselBOT
#

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

fair herald
#

help

gilded nova
#

stop pinging staff

fair herald
#

k

#

but help

gilded nova
#

i'm busy

fair herald
#

so now after i removed the plugin now the perms in the default group i cant type them

#

plz

gilded nova
#

okay so

#

what do you mean by "the perms in the default group i cant type them"?

fathom robin
#

could there be some warning into LP added when two or more groups have the same weight?

craggy plank
#

put in a suggestion and see if luck is interested in the idea

eager meadow
#

Hey, can you help me because I don't work luck prems please help me

forest helm
#

don't post in multiple channels pls

eager meadow
#

okay

sweet olive
#

guys when i partner people i want to make an ip like therename.myip.net but how do i track how many people join from that? Please ping me

fathom robin
trail shuttle
#

Yep

#

!suggestion

outer vesselBOT
trail shuttle
#

d;spigot Material

lyric mesaBOT
#
public enum Material
extends Enum<Material>
implements Keyed```
Material has 1542 fields, 5 all implementations, 28 methods, 1 implementations, and  1 extensions.
Description:

An enum of all material IDs accepted by the official server and client

stark dawn
#

!offtopic

outer vesselBOT
#

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

stark dawn
#

err

#

Is there a offtopic channel?

#

Whelp imma say no

trail shuttle
#

This

stark dawn
#

So does any one have experience with custom items/armor?

#

!nw

outer vesselBOT
#
Please tell us what's going on!

We really would absolutely love to help you out! However, telling us that it isn't working wastes everyone's time. Please, just describe the issue you're having clearly and with as much detail as possible, and send any relevant screenshots of whatever problems you're having.

For Console Errors:
steady tangle
#

@gilded nova CB_love_panda

outer vesselBOT
#

Hey Samosa (do not ping)! Please don't tag helpful/staff members directly.

steady tangle
#

!usage

outer vesselBOT
short warren
gilded nova
#

@steady tangle❤️

steady tangle
#

❤️

bold sparrow
gilded nova
#

@fading folio this server is not a marketplace, I suggest you look for a more appropriate guild for that such as https://discord.com/helpchat , they have specific channels for offering/requesting services 🙂

stark dawn
#

this is like super off topic but

#

im trying to make custom armor and i can;t figure out why this is not working 😦

stark dawn
#

bruh why no embed

#

there we go

prime tusk
#

hi

#

@gilded nova

outer vesselBOT
#

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

prime tusk
#

i-

gilded nova
prime tusk
#

@gilded nova

outer vesselBOT
#

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

gilded nova
#

smh

prime tusk
gilded nova
#

Lies

prime tusk
#

i-

#

where is the #chat-logs

gilded nova
#

#github-spam ?

prime tusk
#

hmph. doesn't have the message i need.

gilded nova
#

How unfortunate

prime tusk
#

Please do not burn my house down with lemons.

gilded nova
prime tusk
#

well, it sounds like a great idea.

gilded nova
#

Hey guys, how do I set a different chat color for each group in my server?

outer vesselBOT
#

Hey ! Nympêx`! Please don't tag helpful/staff members directly.

trail shuttle
#

Dont ghost tag me

#

!placeholders

outer vesselBOT
rigid widget
#

Hey! Don't mass ping, ever. Reading and following the rules (rule 1) is very important! Thanks. @gilded nova

trail shuttle
#

Oh mass ping?

rigid widget
#

Yeah, everyone.

#

?mute @gilded nova 3d

viral havenBOT
#

dynoSuccess Nēàtus.´#7657 was muted

rigid widget
#

Pinging me again was a silly idea.

#

Next time, it's a ban!

#

You probably need vault and PlaceholderAPI and maybe even the PlaceholderAPI vault expansion to figure that out

gilded nova
#

Hey. Is mariadb recomend over postgresql, for using luckperms?

#

Or do you recommend mariadb for the plugin?

stuck furnace
#

I use MySQL. I dont know if it is the best choise. But it usually works fine

gilded nova
#

I prefer mariadb over mysql

#

But Idk If postgresql is better

potent prawn
#

Use whatever is easiest for you. Personally I prefer psql but mariadb is also good and has more support when it comes to plugins

gilded nova
#

Yes... We want to code as much as possible ourself. Because of this, the support is not important. The only plugin we will download, is luckperms xD I just love lp :3

merry hull
#

Anyone want to help me move my ranks over from my standalone server to bungee? (Paid)

gilded nova
#

:)

merry hull
#
  1. i found someone
  2. I checked the rules and it didn't say i couldn't
gilded nova
#

It literally says this server is not a marketplace

steady tangle
#

????

merry hull
#

LMAO

#

Sorry, i forgot to say, i can't read

steady tangle
#

yea we figured that one

gilded nova
#

I can tell...

merry hull
#

Rude

steady tangle
merry hull
#

Welp sorry for break the rules

lunar pawn
#

@twin warren currently trying to upgrade LuckPerms to Gradle 7 for something, and I'm getting errors about no signature of method shadowJar (not an issue I want you to try and help me fix), and I was wondering, how would you feel if I switched all the builds over to the newer (and imo, much better) Kotlin DSL? I mean, a lot of existing projects have done it, like Adventure did it the other day, and Sponge for example also uses the Kotlin DSL, and many, many others

outer vesselBOT
#

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

lunar pawn
#

also, the Kotlin DSL will stop you from getting strange white no candidate issues and other stuff as well, though that one is more of an IJ issue than a Groovy DSL issue

#

and I think the Kotlin syntax is more readable and makes it easier for you to see what's going on in your build script

trail shuttle
#

Did you also update shadowjar?

lunar pawn
#

yeah I did

#

that's where the issue is at lol

#
No signature of method: build_4e42hqkhkypw9vvzdb5hrak6h.shadowJar() is applicable for argument types: (build_4e42hqkhkypw9vvzdb5hrak6h$_run_closure3) values: [build_4e42hqkhkypw9vvzdb5hrak6h$_run_closure3@6f689849]
trail shuttle
#

!paste the build files

outer vesselBOT
#
Please use pastebin!

Seeing a paste of the problem makes everything so much easier! Use https://paste.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!

lunar pawn
#

they're literally just the same as what's on the official repo

#

in terms of the shadowJar configuration, I haven't changed anything other than using archiveFileName over archiveName

trail shuttle
#

Does it work with archiveName?

lunar pawn
#

lemme see

#

ah yes it does, I think ik what the issue is now

#

actually nvm

#

yeah it seems to work now

#

cheers

#
Entry fabric.mod.json is a duplicate but no duplicate handling strategy has been set. Please refer to https://docs.gradle.org/7.0.2/dsl/org.gradle.api.tasks.Copy.html#org.gradle.api.tasks.Copy:duplicatesStrategy for details.
```bruh what
#

ik what it says, just confused on why there's a duplicate there in the first place

trail shuttle
#

Yeah idk, i had problems with that too

lunar pawn
#
processResources {
    inputs.property 'version', project.ext.fullVersion

    from(sourceSets.main.resources.srcDirs) {
        include 'fabric.mod.json'
        expand 'version': project.ext.fullVersion
    }

    from(sourceSets.main.resources.srcDirs) {
        exclude 'fabric.mod.json'
    }
}
trail shuttle
#

Try to only check fabric.mod.json? And not every file?

lunar pawn
#

how do you even do that? lol

trail shuttle
#

Idk

lunar pawn
#

I mean, I'd just use the ReplaceTokens filter for this personally

#

maybe that's what we should do here

lunar pawn
#

yeah I think that worked

#

nvm, plugin.yml is now nowhere to be found

#

yeah I'm just gonna use filter

#

was probably looking in the wrong JAR for the plugin.yml before and that's why I didn't see it but hey ho, we're using filter now and it works

orchid bone
#

Ignore or block them!!!

rigid widget
#

If you like to report DMs they sent you, please DM them to me. Otherwise, public accusations are useless

fresh otter
#

has anyone ever got luckperms to work with ftb teams commands ?

sweet olive
#

"but one (or more) of the other servers/proxies in the network are." dose this mean there is more than one proxy connected in my serveR?

onyx shore
#

Hello new guy here .... dont everyone run and hide.... I have a question I have a server but I will be the only player do I even need a group manager?

steady tangle
#

do you need a server specifically?

rigid widget
#

if you have plugins and want to control how you interact with them, you'll need a permissions manager yes

#

if you don't, then no

onyx shore
#

larry is there any other way i do not plan to open it to other player i will be a player/owner...

#

OR is there a very simple perm manager

rigid widget
#

if you have modern plugins on this server, then the simplest is probably still luckperms

#

you just add the perms you'll need to default group and that's it, you have them

gilded nova
#

LuckPerms is as complex as you make it be

onyx shore
#

is there a way to add all perms as owner?

#

something like all or .

gilded nova
#

*

onyx shore
#

star dot star kinda thing

#

Thx Emily

gilded nova
#

I am having trouble using certain commands as owner for certain mods how do i get the permissions for these mods they dont provide them

short warren
#

!verbose praiseverbose

outer vesselBOT
gilded nova
#

I'm confused on how to use the verbose command

#

Im trying to use this command /reskillable toggletrait Alexplay188 reskillable.hungry_farmer

rigid widget
#

that's why we've written a fairly extensive wiki page on it!

tacit zenith
#

Does this work for Forge? can't see it mentioned in the FAQ

rigid widget
#

spongeforge

#

sponge is a mod that can load 'ore', which are like plugins, and luckperms has a sponge version

tacit zenith
#

Alright. Will I have problems if I change my server from forge to sponge? sorry if this is the wrong place to ask I'm kinda new to modded servers

gilded nova
#

sponge is a mod

#

you're still running forge, and spongeforge (a forge mod) will load these "sponge ore" plugins (you also drop them in the mods folder)

tacit zenith
#

ahhh okay thank you!

#

I've tried installing and it keeps shutting down my server. I'm not using AuthMe like the FAQ says

gilded nova
tacit zenith
#

Nevermind I'm just an idiot. I thought I had uninstalled FTB utilities but it was still in the mod folder 😂

steady tangle
craggy zenith
#

Hi

onyx mason
#

Who ping

craggy zenith
#

Idk

#

U a owner

#

?

onyx mason
#

No why

gilded nova
#

because

steady tangle
#

Yes

rigid widget
#

@gilded nova no ghost ping reeee

gilded nova
#

idk what you're talking about 🌝

potent prawn
#

@onyx mason

#

r u owner

#

pls respond

rigid widget
#

@onyx mason r u???

gilded nova
#

@onyx mason ??

steady tangle
#

@onyx mason owner?

outer vesselBOT
#

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

short warren
#

@onyx mason ?

onyx mason
#

Hello @short warren @steady tangle @gilded nova

#

And @potent prawn @rigid widget

#

Please note I am in fact NOT an owner of luckperms

#

Thank you for your interest

gilded nova
#

why not

onyx mason
#

i never found the application form

gilded nova
#

why not

onyx mason
#

because I use Bing

gilded nova
#

ew

short warren
#

its right here

#

obviously 🙄

onyx mason
#

OK

#

Thanks @short warren

short warren
#

looks all good

onyx mason
#

Please promote

short warren
#

just wait a few business months for your application to be reviewed

short warren
#

cant wait 🕐

west lynx
#

what is the github for the Clippy bot, i remember seeing it somewhere

gilded nova
west lynx
#

thx

onyx mason
#

@west lynx your status is using the wrong you're

west lynx
#

Oh frick

trail shuttle
#

!context 4 me

outer vesselBOT
viral havenBOT
gilded nova
#

hey

#

anyone knows

#

why commands doesnt work?

#

on velocity

short warren
#

are you using /lpv

#

instead of /lp or /lpb

prime tusk
#

ping?

gilded nova
#

im stupid

muted kestrel
#

Is there a way to escalate support here? I've raised the issue in support-1 but judging from previous people's raised issues which appear to be the same, it looks like they've never had a resolution. I've now exhausted the wiki and the discord. Oh well!

trail shuttle
#

No

#

Everyone is a volunteer here

modest compass
#

But even so, yea, everyone here only reply on their free time

halcyon summit
#

If i update luckperms will my permissions still be there?

gilded nova
#

Yes

#

So long as you don't touch the folder

halcyon summit
#

gotcha

tardy grove
#

hi how can i give me op on my server with luckperms

steady tangle
#

@gilded nova

#

no

#

don't randomly dm people

#

I do not want to be a second owner What

#

doing this is just gonna get you banned / blocked
and this is not how you find a 2nd owner

#

im a rando on discord you've never met

trail shuttle
#

I also got dmd lol

steady tangle
#

give me access to your server, and I could just break it

lunar pawn
muted kestrel
muted kestrel
#

On github when posting an issue it says:

  1. Open the config.yml file and set example to true.

Is this out of date? Nothing in the config to allow me to add true to that looks like example.

gilded nova
#

it's an issue template

#

An example issue, a dummy issue

#

You're supposed to take that as example, as guidance, on how to write the your issue

#

Emilyy, do I need a db if I want my ranks global?

#

Yes

#

I wanna store the data locally

#

not possible?

#

No

#

Where can I get a free db?

#

No idea

#

oki

#

Your hosting provider should offer one I suppose

#

so use the same db in each config file on every spigot server?

#

same db login info n stuff

#

Yes

#

okay

#

!switch might want to follow this if you have an existing perms setup

outer vesselBOT
gilded nova
#

But ideally everything will be set up at once when they are all hooked to the sb

#

Db*

muted kestrel
# gilded nova it's an issue *template*

Stupid me lol. I've just seen another post and they just refer back to here anyway. Would you be able to check out my question in support-1. I've posted full console logs for proxy and server

gilded nova
#

No

#

I'm cooking

muted kestrel
#

That reminds me, I need to eat whilst I wait lol.

steady tangle
#

chef emily

gilded nova
#

@gilded nova How much MB should my database be able to hold?

outer vesselBOT
#

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

gilded nova
#

lets say it would need to store data for over 3000 unique players

muted kestrel
gilded nova
#

@steady tangle owo

#

Pizza night

steady tangle
#

!!!!

muted kestrel
#

😦

steady tangle
#

1st is chicken parmesean

#

or however you spell

#

love a good chicken parma AAAAA

gilded nova
#

Oh gooooood god

#

Delicious

olive loom
#

TIITY

lost elm
#

How do I contact the mod team of the server I got something important?

forest helm
lost elm
lunar pawn
#

Nah send it here

#

I've reported loads of those in this channel

sonic wyvern
#

!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
pearl nymph
#

Stranger: "Hey kid, where do you live"
Kid: "I live in my house"
Stranger: "Where is your house?"
Kid: "Next to my neighbor's" house!
Stranger: inhales "And where is your neighbor's house?"
Kid: "Next to my house! :D"

trail shuttle
#

Screenshot /pl

left iron
#

how i change de time in console comand?

short warren
#

the time of what?

left iron
#

change the timo of night and day

short warren
#

or what

sweet olive
gilded nova
#

@steady tangle uwu

steady tangle
#

uuwuwuwuwuwuwu

short warren
flat dawn
#

hi

gilded nova
#

wassup

flat dawn
#

not much, how are ya?

#

i dont wanna go to work tomorrow xd

leaden kayak
#

anyone know the perm command to allow teleport?

short warren
#

depends on what you are using to teleport

#

but use verbose praiseverbose

#

!verbose

outer vesselBOT
hard bear
#

any1 know the plugin that hypixel uses for the levels and when a certain level the name changes?

trail shuttle
#

Custom

hard bear
#

yes but a similar plugin

worn ocean
#

ok so im trying to disable chat colors for default players

#

i have tried every permission

#

but they can still use it

#

Plugins (74): AdvancedAchievements, AdvancedFlightHeight*, AntiAC, AntiAFKPlus, AntiDonkeyDupe, antiRedstoneClock, AuctionHouse, BetterRTP, BountyHunters, BungeeGuard, BuycraftX, ChatManager, ChatReaction, ChestCommands, ChestShop, Chunky, ClearLag, CombatPlus, ConsoleSpamFix, CoreProtect, CrazyCrates, CustomCommands, DeluxeTags, DiscordSRV, DonatorReclaim*, dynmap*, Dynmap-Towny, Essentials, EssentialsAntiBuild, EssentialsChat, EssentialsProtect, EssentialsSpawn, Geyser-Spigot, HeadsPlus, HolographicDisplays, HolographicExtension, IllegalStack, ImageOnMap, InventoryRollback, Jobs, LiteBans, LuckPerms, Matrix, mcMMO, Multiverse-Core, NoPhantoms, NoPlugins, OreAnnouncer, PlaceholderAPI, PlayerVaults, PlugMan, ProtocolLib, RoseStacker, Scoreboard-ReRevision*, ServerNPC, ServerRestart, ShopGUIPlus, SkinsRestorer, spark, SuperbVote, SuperVanish, TAB, Towny, TownyChat, TradeMe, Vault, ViaBackwards, ViaRewind, ViaVersion, Votifier, WorldEdit, WorldGuard, WorldGuard-Towny*, WorldGuardExtraFlags

#

tried all chat manager ones

#

all townychat ones

#

all essentials one

analog helm
#

are they all set to false?

worn ocean
analog helm
#

did you save and apply the changes in game?

worn ocean
#

yes

#

i am not dumb

#

ive been trying this for days now

analog helm
#

well there has to be some plugin or group permission you're missing

#

try removing some of the plugins and see

worn ocean
#

i tried removing some

#

but no affect

analog helm
#

remove all of them and add one at a time

#

all of the chat ones

#

you can also use plugman to see which plugin allows them to use chat colors

#

/plugman lookup (command)

worn ocean
#

but what command there ?

#

i have plugman

analog helm
#

well how do you know people can use chat colors

#

is it through a command

#

or are they saying &b&lhello

worn ocean
#

no its through &bStuff

analog helm
#

ahhh

worn ocean
#

i have an alt testing

analog helm
#

remove chatmanager and restart

worn ocean
#

ok ill try

#

ok i removed it

#

restarted

#

and colours still work

#

ill try removing townychat

#

ok removed and restarted

#

colours still work

#

removed essetias chat

#

colours still work

#

wth

analog helm
#

no clue

wary river
#

Hi

#

@worn ocean

#

do you still need help?

worn ocean
#

i mean yes if possible

inland rose
#

Hi, can someone help me? I need to add permission fireball

eager folio
#

help permision

#

sion

#

@onyx mason pls help

outer vesselBOT
#

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

onyx mason
#

Hmm

eager folio
#

help permision

gilded nova
#

you'll have to provide more detail if you want others to help with something

#

we can't read minds

#

yet

short warren
#

Turbo's been slow with his web editor: mind reading update

eager folio
#

and did you know if I would do this please when I put you op on minecraft servers and fix it there

short warren
#

What

eager folio
#

sk

gilded nova
#

what?

eager folio
#

takto mi rozumiete či

gilded nova
#

uh...

gilded nova
#

How do you make it so a certain rank [e.g. MVP] can set more than 1 home while the default rank can still only set 1 with EssentialsX?

gilded nova
#

thank you

#

damn the original wiki is still applicable

#

This page was last edited on 21 September 2012
hhhhhhhhhhhhhhh

tidal void
#

not sure if this for here but, i have this for default but the members dont have the permissions ath all? nor do they have the prefix. I have vault and essentialsChat installed

gilded nova
#

run and screenshot /pl

sly swift
#

Hey does anyone know of a good mob hopper plugin or maybe someone who could make one? ❤️

tidal void
gilded nova
#

you don't have no essentialschat lmao

tidal void
#

oh, wait were is essentialsCchat lol

#

dfq 🤣

tidal void
trail shuttle
#

U need essx also

gilded nova
tidal void
#

check first jar

trail shuttle
#

You also need essentialsx

#

Not just the chat moduoe

tidal void
#

essentialsX and the chat one?

trail shuttle
#

Yu

tidal void
#

oh okay

#

works thanks

gilded nova
#

Hey is Luckperms updated for 1.17?

#

Gonna update all my plugins now :)

#

not explicitly, what platform?

foggy flame
#

Does luckperms assign permission nodes based off of uuid or ign? cause in the web editor it shows ign

gilded nova
#

And I'm on purpur for my backends

#

Spigot I think is what it would be

short warren
#

@onyx mason praiseverbose

onyx mason
short warren
#

just 88 days until owner

bold sparrow
#

^

#

This way you can assign permissions to players who haven’t ever joined the server

white idol
#

Hey

ripe vault
supple juniper
#

Hello @steel pelican i have a propossal for you

outer vesselBOT
#

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

supple juniper
#

please, contact me by dm 🙂

fossil totem
#

how would i use MySQL

short warren
#

!switchstorage

outer vesselBOT
cosmic ridge
#

how do i demote a player and promote

steel pelican
dry steppe
#

for example

#

/lp user Vaarun parent set owner

#

or u can use this

#

hol on im getting the link

#

hmm

#

i cant find it

#

but i think its called LPRankCommand or smth

steel pelican
dry steppe
#

that works

#

wait i dont use tracks tho

steel pelican
#

The promote/demote commands only work with tracks. Otherwise you need to use the parent set/add/remove commands

dry steppe
#

H u h

#

but i dont use tracks

#

yeah

#

i do that

#

i use /lp user %player% parent set %rank%

#

just want to know how i pair my paypal to luckperms

steel pelican
#

pair your paypal to luckperms????

dry steppe
#

yeah

#

for like automatic promotions

#

if someone pays 20$ for a rank

#

i think that makes sense

steel pelican
#

You do that through something like BuyCraft or Enjins in-built store

dry steppe
#

:D

#

TY

steel pelican
#

Then just get those to run the luckperms commands.

half leaf
#

Hi, I have a question if anyone knows something about it, does the object stack plugins really help to reduce the lag of a server?

pearl nymph
#

yo someone got a crates plugin that supports head as crate blocks and plus it doesn't show like
Item Name 10%
it should show just the item name and lore if given, not the win percentage also it should support from 1.8-1.16 if you do please ping me

wary river
#

CratesReloaded

woeful willow
#

@rigid widget HeartBeat

outer vesselBOT
#

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

rigid widget
#

HECK YEAH

woeful willow
#

Ah yeah, forgot about clippy

rigid widget
#

If I had the power, the ability, I'd reinstate your role from before immediately

#

but I've contacted the powers that do be

woeful willow
#

Nbd, just happy to be feeling better 🙂

rigid widget
#

I'm so very glad you're back

violet rivet
#

Heh.. huge outage of so many websites.. not fun at all, now the internet is suddenly boring.

rigid widget
#

weeee

woeful willow
#

I picked up a new project recently and I've been pouring my time into that!
Now to wait for burnout

violet rivet
#

funny how much can break when someone trips over a wire eh

rigid widget
woeful willow
#

I'm pretty happy with my progress so far!
https://i.imgur.com/gcmUfoe.gif

Working on something right now that ties Json objects to Kotlin Objects so I can just grab what I need super easy.

rigid widget
#

you're amazing

#

afaik there's only two other D&D discord bots

#

at least, functional

#

so that's a feat

trail shuttle
#

Imgur also dead?

rigid widget
#

yes

woeful willow
#

Ye

#

Had to pull that one from an old capture, couldn't even snap a new pic 😅

dim skiff
#

I ♡ ur plugin

#

:3

supple juniper
steel pelican
trail shuttle
#

d;paper PlayerInteractEvent#getItem

lyric mesaBOT
shell drum
#

can someone help me find a name for my minecarft server

gilded nova
#

Matthew sounds like a good name 🙂

shell drum
#

for a minecarft server

short warren
#

Just make up some shit

#

Random word generator

#

Latin word

shell drum
#

i dont find a good ones

gleaming void
forest helm
#

!tab (for me)

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
buoyant cloak
#

hi

#

i just need some help rq

#

i need to make a permission so people can use a /sit command

#

how do i do this

delicate aurora
tulip orbit
#

Hello

#

i need help

#

with prefixed\s

#

i have my server setup

#

and luckperms installed but prefixes dont work

#

@gilded nova i need help

outer vesselBOT
#

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

tulip orbit
#

kk

modest compass
#

!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
tulip orbit
#

Ben

#

How do i configer it

#

!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
tulip orbit
#

1How do i format my lp

#

Thoses are my onlt plugins

rigid widget
#

you need essentialsxchat

#

it's a separate jarfile

tulip orbit
#

i have it already

#

look

#

My name is red

#

bc im oped

gilded nova
#

you need essentialsxchat

#

It's another plugin

#

An extension of essentials

tulip orbit
#

how do i add it

gilded nova
#

Google "essentialsxchat"

tulip orbit
#

ok i download it

#

how do i install it to the server

gilded nova
#

just like you did with the other 3 plugins you have on your server

#

drop it in the plugins folder and fully restart

tulip orbit
#

i just did /reload instead of restarting it

gilded nova
#

no

#

restart

#

reload is terribly broken

tulip orbit
#

its working the prefixes

gilded nova
#

alright sure, but don't come for help if you encounter issues after running /reload when told it's terribly broken and that you should restart

#

most plugin support will tell you to restart

tulip orbit
#

I will restart from now on i guess

gilded nova
#

the damage done varies wildly from plugin to plugin but it can be from absolutely minor to straight up irrecoverable damages

#

LP itself is safe...-ish, but it won't work properly after a reload

#

until you restart*

deft sigil
outer vesselBOT
deft sigil
#

heree @royal wharf

royal wharf
#

get the crash report

#

from what it looks like at a glance, corrupted world

deft sigil
#

corrupted world?

royal wharf
#

yeah

deft sigil
#

really?

#

omg

#

so tk u

#

my english is bad

#

bro

royal wharf
#

not sure why it's npe, but that's my best guess and best possibility

deft sigil
#

im creating a new world to test

#

yes it is

#

corrupted world

steady tangle
#

Where my friends at

#

mosa needs hugs

gilded nova
#

@steady tangle!!!!!!!!

#

❤️

#

qt❤️

steady tangle
#

OH MY GOD

#

!!!

#

My sadness has been cured

#

❤️ ❤️ ❤️

gilded nova
#

@potent prawn manchas is a cutie ❤️

steady tangle
#

AaWEeEeE

gilded nova
#

@steady tangle !!!

#

why you sad

#

:(

steady tangle
#

tired and can't sleep

#

:(

#

Support driving me nuts

gilded nova
#

mood

steady tangle
#

4am support let's go baybee

potent prawn
#

I need to finish that damn API

gilded nova
#

:3

steady tangle
#

Orrrrr play with cat

steel pelican
potent prawn
#

Lol

#

Well the API is done just need to do the UI

gilded nova
#

he's a cutie ❤️

deft cobalt
#

What a day for plugin Devs discord hahaha

#

My today as a server owner lptriggered2

onyx mason
gilded nova
#

That's Manchas dum dum

#

Turbo's hand

woeful willow
#

Aber 😮

gilded nova
#

big brain gecko

woeful willow
spark lagoon
#

LuckPerms need update ViaVersion new api.

vocal rivet
#

What? I fail to see what LuckPerms needs to update when ViaVersion made an update

ripe nest
#

Hello

trail shuttle
#

!latest

outer vesselBOT
#
Latest version

5.3.42

outer ivy
#

!

#

!help

outer vesselBOT
#
Available commands

!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!bungeecheck
!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
!testingperms
!tracks
!translationprogress
!translations
!upgrade
!usage
!userinfo
!verbose
!version
!weight
!whyluckperms
!wiki

hard bear
#

yo any1 know similar mysterybox plugin that hypixel uses?

craggy plank
#

GadgetsMenu

hard bear
#

okay

tawny tree
#

hello, how do I add a luckperms rank in scoreboard?

hard bear
#

@tawny tree

tawny tree
#

thank you allllll 🙏

#

ily

hard bear
#

how the sheeet do i make a mystery box with gadgets menu?

craggy plank
#

check their wiki

craggy plank
hard bear
#

i cant fin on how to set up mystery boxes

tawny tree
#

how do i show the current world i'm on the scoreboard?

craggy plank
#

you just need to play and the plugin will randomly award you one

hard bear
#

yes but how do i "make" one

#

yeah yeah but if i want like hypixel and they have mysteryboxes you can clikc on

#

and they show up there

craggy plank
#

the vault?

hard bear
#

whatever its called u know what i mean right?

craggy plank
#

you want to view the gui that you open the box through ?

hard bear
#

mhm

craggy plank
hard bear
#

oh well... thx

craggy plank
tawny tree
#

what?

craggy plank
#

if you want the world you are in to show on a scoreboard, you need to use a placeholder

tawny tree
#

i wanna show you my current world and online players

#

which placeholder should I use?

craggy plank
#

umm, you could try %player_online% @tawny tree

tawny tree
#

ok

#

i'll try

#

thanksss ilysm

craggy plank
#

and %player_world%

gilded nova
trail shuttle
#

I dont trust that link

gilded nova
#

probably Rick roll or jebaited

forest helm
steady tangle
#

what site is that that you're using?

#

might be handy for when we get wacky links in our discord xD

gilded nova
steady tangle
#

:c

gilded nova
#

just kidding

steady tangle
#

:'c

gilded nova
#

samosa is ❤️

steady tangle
#

❤️

gilded nova
#

And my internet is 💩

steady tangle
#

same

forest helm
steady tangle
#

nice thank

trail shuttle
#

!advanced

outer vesselBOT
unique ether
#

Yo is the lp editor down?

#

Its not working. It says unable to comminicate with the editor

gilded nova
#

same problem here

rapid scaffold
#

Went down for me ~5 min ago, but back up atm

gilded nova
#

@analog bison reason for add?

tulip orbit
#

guys can you give me good perms for diff ranks

onyx mason
#

hi

short warren
onyx mason
#

@gilded nova hi

#

help

#

i made myself write tests for an app

#

it sucks but i cannot stop

gilded nova
#

that's unfortunate

#

@rigid widget

#

Aber wrote tests for an app

#

It sucks but he cannot stop

rigid widget
#

tell him to stop

gilded nova
#

@onyx mason

#

stop

#

pls:(

onyx mason
#

no

gilded nova
#

:C

onyx mason
#

i must get to 100 PERCENT COVERAGE

#

100 or bust

gilded nova
#

AHAHAHA yes!!!

onyx mason
#

15k line code base

gilded nova
#

oh jesus

#

100% that's gonna be uuh something

onyx mason
#

yea

#

will be worth it tho

#

im sure there are dozens of small issues around this thing

gilded nova
#

oh yeah yeah for sure

#

mined

onyx mason
#

mined ?

gilded nova
#

yeah mined with small issues lol

supple juniper
peak heath
#

Does Luckperms still have plans to upgrade to FabricMC 1.17? I can't find an announcement detailing it.

sharp fulcrum
#

guys

#

why dosent my advanced ban dont show up when i am doing persm

steel pelican
supple juniper
hot gazelle
#

can someone help me?

modest compass
modest compass
hot gazelle
#

protocol lib

fair herald
tidal radish
#

jus here to say somethin ._. whoever is keeping the lp4.0 api extension up to date is now one of my faverite ppl in the whole world 😍

trail shuttle
#

Why not just update your plugins or tell the author to?

tidal radish
rigid bluff
#

i want a help

short warren
#

Can't really help without info

rigid bluff
#

@short warren see

outer vesselBOT
#

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

short warren
#

Yeah I can see

rigid bluff
#

While using any Command of Luck perm It is showing this

short warren
#

Read console

rigid bluff
#

wait a sec i will give u wht is in console

#

wait Im booting server

#

@short warren im booting minecraft

outer vesselBOT
#

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

rigid bluff
#

please hold on

short warren
#

Stop pinging me

#

In school, just leave your question here

#

Let someone answer it

rigid bluff
#

Because Im About to Launch My SMP but luck perm isnt working

#

sorry now it is working

pearl nymph
short warren
#

Tf lol

pearl nymph
#

really?

pearl nymph
#

i just claimed it

still linden
#

How did u get it so early

#

I thought it was like at June 24th

pearl nymph
pearl nymph
#

the offer

still linden
#

how long does it take ?

#

cant I jsut use like fake accounts ?

#

like alts ?

pearl nymph
steady tangle
#

wtf is this real?

still linden
#

I did not get mine yet ...

#

you love to see it

steady tangle
#

check your email maybe

still linden
#

After i press

#

"place order"

#

then waht

#

.....................\

#

....

#

Ima need support for this

steady tangle
#

got my receipt Kek

still linden
#

How long does it take

steady tangle
#

it took like 2 minutes

#

check your junk mail

still linden
#

...

#

fake

#

fake

#

cap

#

lies

steady tangle
#

oh wait

#

nvm the receipt was for something else Thonk

#

one sec

still linden
#

.

steady tangle
#

haven't gotten anything yet, but it is legit

#

considering even the discord site announced it

vocal rivet
#

Yep, its legit from epicgames

steady tangle
#

ye

still linden
#

watch them be like

#

"its Epic games 20th anniversary GET TROLLED NERD"

vocal rivet
#

but their terms state its only for new nitro buyers

still linden
#

but

steady tangle
#

I woulda still been given the code

still linden
#

how do they know ??

vocal rivet
#

Meaning, if you had nitro before you gonna get nothing

steady tangle
#

your discord won't allow you to redeem it

still linden
steady tangle
#

if you have had nitro before

still linden
#

aha

#

wait

#

how

#

does

#

that

#

work

trail shuttle
#

can
u
not
type
like
this
please
thank
you

vocal rivet
#

When you try to redeem the code ( from the email Epicgames will send you ), discord will check if you had nitro before and wont allow you to redeem it

still linden
#

yea

#

but

#

I

#

am

#

so HYPED lol

steady tangle
#

o

#

k

trail shuttle
#

for free nitro?

still linden
#

e

#

s

#

lol

#

I cant wait

vocal rivet
#

May take up to 24 hours to recieve the email

steady tangle
#

pretty cool of them to do so

still linden
#

watch someone do it on the 23 at 11:59 pm

steady tangle
#

I only use Epic for the free games lul

still linden
#

then they miss it lol

vocal rivet
vast isle
steady tangle
#

ye

still linden
steady tangle
#

steam4life

still linden
#

lol

#

I love this chat

vocal rivet
#

Their launcher is so inefficent, just because they just had to use the unreal engine to make it -.-

still linden
#

its sooo chill

#

and calm lol

pearl nymph
#

do you guys know

pearl nymph
#

about epic giving free nitro