#general

1 messages · Page 329 of 1

thorny kernel
#

superperms? manythink

wet bough
#

Sorry, I am not sure if it has a new name.
I am somewhat new to modern development.

The bukkit ecosystem's base permission handler was referred to as superperms for a few years

vague plume
#

Still is

thorny kernel
#

are you trying to unit test your permissions setup?

wet bough
#

Ideally, yes.
I want a quick way to check whether or not our plugin's permission implementation is behaving as it should

thorny kernel
#

are you having issues with your permission checks?

#

if you just use bukkits CommandSender.hasPermission('thing') you shouldnt have any issues

wet bough
#

Was mostly wondering if any existing permission unit test solutions were commonly used

thorny kernel
#

seems a bit overkill to use your own thing for that lol

trail hawk
#

I think my issue on the github for sponge got deleted? XD

steady tangle
#

no you put it in the wrong place x)

#

but this should be asked about in sponge discord fwiw

trail hawk
#

ooooh thats what i get for clicking a random sponge github link XD

#

i dont use github all that much

#

ty 🙂

wet bough
# thorny kernel seems a bit overkill to use your own thing for that lol

I mean... SG is a large plugin with a design philosophy that explicitly avoids commands.
Instead, players interact with the plugin through a series of events and associated inputs.

Our permission manager is a system of checks within that context.
It would be difficult to do something like this without our own manager.

Regardless, we still rely on the user's permission plugin for the base states and input.
Its that dependency we would like to somehow mock for our unit tests.

This seems like a problem that someone would have encountered before;
asking to see if a mock permission manager existed was worth a shot 🤷

thorny kernel
#

not sure how "no commands" means you need to handle permissions in a different way

#

players are still CommandSenders even if its not in the context of running a command

wet bough
# thorny kernel players are still `CommandSender`s even if its not in the context of running a c...

Not quite sure about that, although I could very easily be wrong
(Its been a while since I touched perms -- I am not usually the person who deals with them).

If I recall correctly, CommandSender extends the Permissible interface of org.bukkit.permissions
We interact with the Permissible interface directly (it can be fed a Player)

Thus, I assumed that we are just dealing with a Player -- not a CommandSender.

thorny kernel
wet bough
#

Ah, my apologies

gilded nova
#

What would a mock LP have that MockBukkit doesn't provide in Bukkit's own (mocked) permission system?

#

If at the end of the day you're checking for Permissible#hasPermission

wet bough
#

I don't think mockBukkit has Permissible#hasPermission
If I recall, it is not possible to assign any perms to a mock bukkit player

#

Wait a sec, I am dumb... I think I was imagining a very old version of MB.
There's something I want to try

supple pawn
#

Which is the local host of a database

#

?

steady tangle
#

!latest

outer vesselBOT
#
Latest version

5.4.22

whole radish
#

What voting plugin can make it where when you vote a certain amount of times you rank up?

#

Because no one on this Damned earth can help me with this question

#

just @ me if you have an answer to this

small lynx
#

How can I set chat colour ???

gilded nova
#

Yo how do you do that

#

And wtf is that minecraft PE

small lynx
#

Geyser

#

Server

gilded nova
#

Is that minecraft or?

#

Pe*

small lynx
#

Both crossplay

#

Java + Bedrock

gilded nova
#

Wired

small lynx
#

It's not werid

small lynx
#

@violet rivet

outer vesselBOT
#

Hey 𝐋𝐨𝐫𝐝! Please don't tag helpful/staff members directly.

gilded nova
sonic wyvern
#

!formatting

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
waxen cargo
#

any devs help me with a plugin rq

#

im trying to use a advanced api in my plugin

#

but im not sure how i need to implement it

teal sun
#

@gilded nova Please don't advertise / look for devs here

sonic wyvern
waxen cargo
#

ohh

#

ok

#

so when a player is killed by another player they drop a disaster shard (a custom item i have made) and u can right click with it to create a execution (i have already done this) but i need help adding the this https://www.spigotmc.org/threads/deadly-disasters-api.527426/ into my code so that when u right click it will summon a disaster

#

but im semi new to plugin stuff

#

at the moment it is giving me this error when i use the custom item

#
[18:42:22 ERROR]: Could not pass event PlayerInteractEvent to DisasterSMP v1.0-SNAPSHOT
java.lang.NullPointerException: Cannot read field "random" because "this.plugin" is null
    at deadlydisasters.disasters.Sinkhole.<init>(Sinkhole.java:42) ~[DisasterSMP.jar:?]
    at com.handsomelewis.disastersmp.events.DisasterSMPevents.onRightClick(DisasterSMPevents.java:26) ~[DisasterSMP.jar:?]
    at com.destroystokyo.paper.event.executor.StaticMethodHandleEventExecutor.execute(StaticMethodHandleEventExecutor.java:38) ~[paper-api-1.18.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.18.1-R0.1-SNAPSHOT.jar:git-Paper-207]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.18.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:629) ~[paper-api-1.18.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_18_R1.event.CraftEventFactory.callPlayerInteractEvent(CraftEventFactory.java:544) ~[paper-1.18.1.jar:git-Paper-207]
#
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleUseItemOn(ServerGamePacketListenerImpl.java:1840) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.handle(ServerboundUseItemOnPacket.java:33) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundUseItemOnPacket.a(ServerboundUseItemOnPacket.java:9) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:56) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.18.1.jar:git-Paper-207]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:149) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:23) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1414) ~[paper-1.18.1.jar:git-Paper-207]
#
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:122) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1391) ~[paper-1.18.1.jar:git-Paper-207]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1384) ~[paper-1.18.1.jar:git-Paper-207]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:132) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1362) ~[paper-1.18.1.jar:git-Paper-207]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1268) ~[paper-1.18.1.jar:git-Paper-207]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:317) ~[paper-1.18.1.jar:git-Paper-207]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
sonic wyvern
#

it means your plugin instance is null

sonic wyvern
waxen cargo
#

yh

#
package com.handsomelewis.disastersmp;

import com.handsomelewis.disastersmp.commands.DisasterSMPcommands;
import com.handsomelewis.disastersmp.commands.GiveShard;
import com.handsomelewis.disastersmp.events.DisasterSMPevents;
import com.handsomelewis.disastersmp.items.ItemManager;
import org.bukkit.ChatColor;
import org.bukkit.plugin.java.JavaPlugin;

public final class DisasterSMP extends JavaPlugin {

    @Override
    public void onEnable() {
        ItemManager.init();
        DisasterSMPcommands commands = new DisasterSMPcommands();
        getServer().getPluginManager().registerEvents(new DisasterSMPevents(), this);
        getCommand("dsmp").setExecutor(new DisasterSMPcommands());
        getCommand("giveshard").setExecutor(new GiveShard());
        getServer().getConsoleSender().sendMessage(ChatColor.GREEN + "[DisasterSMP]: Plugin has been successfully enabled!");
    }

    @Override
    public void onDisable() {
        getServer().getConsoleSender().sendMessage(ChatColor.RED + "[DisasterSMP]: Plugin has been successfully disabled!");
    }
}

#

its not much in there

forest helm
#

!paste DisasterSMPEvents pls

outer vesselBOT
#
Please use pastebin!

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

i need help with luckyperms i gave my self admin group i still cant ban people with it

forest helm
#

Have you given yourself permission to do so?

#

*admin group

gilded nova
forest helm
#

Well that doesn't look like the vanilla ban command, you'll need to give permission for whatever plugin/mod that is handling bans

gilded nova
#

im using essentialx

#

ok

gilded nova
night yew
#

is there a way to give rank perms without prefix?

#

Like the rank's perms only without actually assigning the Preifx or smth

lofty night
#

if it has a lower weight than at least one of their parents they won't inherit the prefix (as long as stacking isn't used)

#

but no, there's no way other than that @night yew

scarlet light
#

@onyx mason okay

onyx mason
#

Hi!

scarlet light
#

hi

onyx mason
#

@unique fable hi!

#

The best ml I know

waxen cargo
#

can someone help me rq

#

how do i make a player drop a custom item when they die

#

its a plugin im making

scarlet light
#

are you already listening for the death event?

waxen cargo
#

let me check but i dont think so

scarlet light
#

you need to.
otherwise you can't do anything when they die

waxen cargo
#

no i have been working with this event.getDrops().add(new ItemStack()) but it dont work

#

how do i need to do it then @scarlet light

outer vesselBOT
#

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

scarlet light
#

So... you are listening for the death event?

#

!paste the full class

outer vesselBOT
#
Please use pastebin!

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

waxen cargo
unique fable
scarlet light
#

then what event are you listening for, that you're trying to add a new item drop

waxen cargo
#

player killed

#

i dont know the event

#

im new to this stuff

scarlet light
waxen cargo
#

ohh

#

ok

#

I thin i need to add the listner

#

so were do i need to add that

#

also look at line 61

#

ik its a very odd thing

scarlet light
#

you already have the listener.

    public boolean onEntityDeath(EntityDeathEvent event) {
        LivingEntity entity = event.getEntity();
        if (entity.getType() == EntityType.PLAYER) {
            // Start your itemstack
            entity.getKiller().sendMessage(ChatColor.YELLOW + "You killed a Player. A disaster shard has been dropped!");
        }
        return true;
    }

Where i made that comment at, is where you're gonna define your custom item. i would suggest looking up how ItemStacks work if you don't know how to.

waxen cargo
#

how would i add a itemstack so that when a plyer is killed by another player it will drop a custom item that i have defined as shard

scarlet light
waxen cargo
#

ok ty

#

it dont say anyhting about drops

#

like what do i have to put to add a drop to it

scarlet light
#

you see that commented code at the bottom of your class? that's the code for it

waxen cargo
#

i tryed that i think and it did not work

scarlet light
#

Yeah, because player doesn't exist as a variable.

#

neither does p

waxen cargo
#

so i need to add it as a varble

#

what is the player varible

#

?

scarlet light
#
    public void onPlayerDeath(PlayerDeathEvent event) {
          Player p = event.getPlayer();
            // Start your itemstack
            // after itemstack is defined, use the code you already have, and drop the item at the players death location.
            event.getKiller().sendMessage(ChatColor.YELLOW + "You killed a Player. A disaster shard has been dropped!");
        }
    }

i'm not entirely sure what stack overflow page you got your code from, but there is an event for Player Deaths specifically. you would be better off listening to the proper event, rather than running through hoops, using EntityDeathEvent.
This should work, it's already got p defined, you'll have to add the rest of the code though. (the itemstack, and the drop code)
Untested, may not work.

waxen cargo
#

Ok
Ty ik try

thorny kernel
#

does spawn protection not take effect if there are no ops on the server?

gilded nova
#

Yes

#

"works as intended"

strong ocean
#

!parent

outer vesselBOT
#

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

waxen cargo
#

someone help me i beg of u

#

im using intelliJ and adding a dependency but its not working (also useing maven)

sleek parcel
#

hi

#

can some1

#

help

#

why it says lp running

#

??

pure wave
#

wut

sleek parcel
pure wave
#

Do what it says

sleek parcel
#

it says only that

pure wave
sleek parcel
#

oh

#

what command for permision

#

??

#

@pure wave

pure wave
vague plume
#

!usage its described here

outer vesselBOT
vague plume
#

you need to first use console to give your user perms to use lp

#

then you can do stuff ingame from there

verbal citrus
#

Hi all ♥️
Who know plugin for sponge to auth in the server, in discord

verbal citrus
#

Nice avatar ♥️

#

One more question, can some one explain how i can monitoring stats, achivments players in my server, and display on my website, just explain what mods/plugins/api can give me this stats

scarlet light
#

Did you even read it

#

Literally, the message you replied to, has PlayerDeathEvent.

pure wave
#

You edited it smh ||/j||

scarlet light
#

I did, but not in 12+ hours lol

vague plume
#

rules go for all channels

#

@sleek niche

outer vesselBOT
#

Hey Zero ♤ [stop pinging!]! Please don't tag helpful/staff members directly.

waxen cargo
#

@scarlet light

    @EventHandler
    public void onRightClick(PlayerInteractEvent event) {
        if (event.getAction() == Action.RIGHT_CLICK_BLOCK) {
            if (event.getItem() != null) {
                if (event.getItem().getItemMeta().equals(Sinkhole.sinkhole.getItemMeta())) {
                    Player player = Bukkit.getPlayer("Steave");

                    Sinkhole sinkhole = new Sinkhole(1);
                    sinkhole.start(player.getLocation(), player);
                }
            }
        }
    }
outer vesselBOT
#

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

scarlet light
#

What

waxen cargo
#

how would i change the ```Player player = Bukkit.getPlayer("Steave");

forest helm
#

get the player from the event?

#

and don't ping people

waxen cargo
forest helm
#

Well yeah if you remove that and don't replace it with getting the player from the event, obviously it won;t work

simple grotto
#

Hello, Need help. Cannot get luckperms to show suffixes... it's driving me crazy

forest helm
#

!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
waxen cargo
forest helm
#

again, get the player from the event

waxen cargo
#

im new to this stuff

#

i want the event to work for all players

simple grotto
sonic wyvern
pure wave
#

*shudders*

#

Java is pain, but nice

sonic wyvern
#

Says the python dev ||/j||

waxen cargo
#

same issue

#

unless iv done it wrong

sonic wyvern
#

Yes you have

waxen cargo
#

bruh

sonic wyvern
#

Player player = event.getPlayer()

waxen cargo
#

so remove the Bukkit

onyx mason
sonic wyvern
#

And the getPlayer

pure wave
sonic wyvern
#

Spoon feeding really isn’t a good way to learn though. Id advise you to take a course or two in Java before trying to make a plugin. Trust me, I learnt the hard way

waxen cargo
#

ty

waxen cargo
#

im not new new to java just learning as i go

pure wave
#

I can highly recommend the university of helsinki Java course

waxen cargo
#

pluss its a weird plugin never done befor

#

its for a youtuber smp and when i player is killed they drop a custom item called a disaster shard and when u craft it with other materials u can craft a natrual disaster (tornado so on) and the api we are using is so hard to work with

#

bc there is no support for it

sonic wyvern
#

That error wasn’t related to plugin development in specific, just java in general, if you’d hovered over the squiggly lines you would have seen that what was wrong and how to fix it

#

I’m not sure you can blame that on the api lol

waxen cargo
#

yh ik

#

but i do have a error

#

for when i execute a custom item

pure wave
#

How do you execute an item hmmmmm

#

🔫

waxen cargo
#

u execute it

#

**

forest helm
#

...

waxen cargo
#

sorry

onyx mason
#

.

fast fossil
#

How do you set a command for a group to only apply to a single world but be false for another?

outer vesselBOT
gilded nova
#

What's the command to delete a entire user from luckperms database

feral field
#

can anyone help me with ranks on my server?

pure wave
#

What's up bread

feral field
#

i need help making ranks and im to smooth brain to figure it out

pure wave
#

What's not working

#

Follow this and see how you go

#

!usage

outer vesselBOT
ripe onyx
#

@random zenith where

fluid torrent
#

Hello, I just moved away from a mysql server back to H2 using export/import but now all users have a second parent group as 'Default' and now dont point the group I assigned them too which is also part of the node (ie parent). Any tips for me.

fluid torrent
#

The following may have helped my situation
lp bulkupdate all delete "permission == group.default"

deft cobalt
#

Damn just updated luckperms the new editor updated is dope when did that happen?

random zenith
#

😐

still ingot
#

Yo guys

#

Is there a way to hide group prefix from a player with a command?

#

And make it visible again with another command?

humble jewel
#

Help

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
pure wave
#

Luckperms doesn't show the prefix, so luckperms can't hide it

scarlet light
west root
#

One question. Do I have to create a database if i use mysql in the plugin, or will the plugin make one itself?

scarlet light
#

You have to create one.

west root
#

Thanks.

gilded nova
ashen stump
gilded nova
#

here is a scammer

gilded nova
#

xD

ashen stump
#

Skwet#8869

gilded nova
#

Muska#8128

#

:)

atomic stump
vague verge
#

Developer id for banning 655268025938739261

scarlet light
#

holy shit

gilded nova
#

oh man

#

a lot of scammers :/

pure wave
#

raid time

#

let's go

rocky turret
#

you guys should post the same screenshot a couple more times so it gets solved faster

flat copper
#

I got this DM. 526414625516814346

gilded nova
#

not good

scarlet light
#

block and report all accounts that you get messages from

gilded nova
scarlet light
#

Should be a report spam button

pure wave
#

On mobile press and hold

gilded nova
hollow viper
#

just got one as well

#

came here to warn people lmao

sonic wyvern
#

Thanks for the reports, the mods have been notified

thorny kernel
mellow sandal
#

You too, huh?

kind plaza
#

I got it too

atomic stump
sand whale
gilded nova
#

@sonic wyvern you guys should make an announcement to not click the link

outer vesselBOT
#

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

glass sluice
#

364757374017339402 dm scams

teal wigeon
#

guys someone is sending fake nitro

scarlet light
midnight escarp
#

Got one from here too

atomic stump
#

epic system for even more work lmao

rocky turret
#

🐒

gilded nova
sonic wyvern
#

I don’t have the permissions for that, the mods will sort it out when they can

teal wigeon
mellow sandal
weak harbor
#

Scammer Ferny = 977570887526142002

hollow viper
thorny kernel
pure wave
#

A scam raid is a good way to boost activity HmmNoted

mellow sandal
#

lol

teal wigeon
rocky turret
kind plaza
#

bhakta bawana#3486

pure wave
#

My thoughts exactly

gilded nova
teal wigeon
teal wigeon
#

dont open any links anyone sends

mellow sandal
#

I was going to ask who to DM regarding the phishing attempt, but since everyone's reporting out in the open...Meh. When in Rome lol.

stiff sail
vague plume
#

perhaps avoid talking here too much now so they dont have to scroll up too far thru all channels

velvet snow
#

User @sharp talon is doing it aswell

thorny kernel
#

have a picture of a cat in these trying times :)

delicate maple
#

@patent beacon 646756509455351828

gilded nova
#

@gilded nova (901824451296002048)

sonic wyvern
#

Thanks everyone for the reports atm, mods will get round to it when they can

clear charm
#

834161199805366283

finite prism
#

467783583222988831

pure wave
#

we need scarsz's banthebotspls

worn arrow
#

@sinful yoke

#

Is a scammer

pure mango
#

260402813560029184

graceful atlas
#

863112079849029632

vague plume
#

ty for reporting y'all ^_^ glad this list is working so well, makes it easier for staff to go through all of em

gilded nova
#

(or just use clippy to do all the work)

scarlet light
#

lot of unknown users when attempting to @ them Thonk

gilded nova
cursive basin
#

Sadly their sties are sitting behind Cloudflare :(

vague plume
#

a few are only in support1 from when the wave started

#

did yer see?

gilded nova
#

messages?

pure wave
#

reports

sonic wyvern
#

People were kicked from the last 15 mins

vague plume
sonic wyvern
vague plume
#

starting from here down til we could reroute

#

not sure how many may be left from there

pure wave
#

Why would you advertise your server in a guild full of server owners

gilded nova
#

@gilded nova please go ahead and read the #rules, this is not the place to advertise your server

stiff sail
sonic wyvern
#

!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
!hack
!helpchat
!inheritance
!install
!libsdir

!locale
!meta
!migration
!notworking
!nowildcard
!offline
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!testingperms
!tracks
!translationprogress
!translations
!tutorial
!upgrade
!usage
!userinfo
!verbose
!version
!weight
!whyluckperms
!wiki

gilded nova
#

It dont works

#

i did everything

#

but still dont show the rank on my name

onyx mason
#

@scarlet light

scarlet light
#

@onyx mason

onyx mason
#

hi!

#

😀

scarlet light
#

Hello :)

onyx mason
wet vale
#

yo guys
what is the best/not expensive host to get a dedi

onyx mason
#

hetzner is relatively affordable 🙂

viscid quail
#

please

wet vale
onyx mason
#

prolly overkill unless you already have a decent sized playerbase

scarlet light
#

Ram maybe, CPU is fine

wet vale
wet vale
scarlet light
#

Overkill

#

You don’t need 64 GB of memory unless you have the servers to fill it.

woeful willow
#

Does ECC have much of a perf hit?

scarlet light
#

I doubt it’s very noticeable at small sizes.

wet vale
#

what is Hexa&Octa-core ?

#

numbers in latin?

scarlet light
#

6 and 8 core I’d assume

wet vale
scarlet light
#

chemistry?

onyx mason
#

latin ?

scarlet light
#

Seems better suited for English class

wet vale
#

idk, we got this in the bio chemistry class

rigid widget
#

@sharp gale Please do not advertise here

sharp gale
#

ok

flint fable
#

P

onyx mason
#

Q

pure wave
#

Mind them

onyx mason
#

combo breaker Madge

pure wave
#

(mind your P's and Q's)

onyx mason
#

ok

lyric coyote
pure wave
#

Cool

lyric coyote
pure wave
#

Error uploading data to bytebin
It seems your server timed-out trying to connect to bytebin (the backend of the editor website)

lyric coyote
#

Help, I only have a 30% chance of success when I use /lp editor in China, the rest are failures

#

Is there any way to solve this kind of problem?

pure wave
#

Probably by using a VPN?

#

There is another way but it's a bit tricky

timid sand
#

Hello, I want to know how I can make a player counter with the same rank but in a placeholder.

pure wave
#

Don't cross post

pure wave
#

@opaque scaffold once you find that setting you can change it to one of these letters/numbers

opaque scaffold
#

@pure wave ok im in config

#

so much codes

#

OOH I SEE IT

#

what is the normal color of minecraft name?

pure wave
#

So now change it to whatever you like

opaque scaffold
#

gray?

vague plume
#

not accurate

pure wave
#

f I think

vague plume
#

if he uses 1.16+ he can also use hex there

pure wave
#

Shh

opaque scaffold
#

im on 1.17

pure wave
#

let's not complicate

vague plume
#

also lets remember this is only ops names

opaque scaffold
vague plume
#

as soon as you deop yourself, youll no longer have that color

#

just saying

opaque scaffold
#

yes but i need the perms xD

pure wave
#

Make it ops-name-color: 'f'

vague plume
#

f is white

opaque scaffold
#

yes i did

vague plume
#

7 is light gray, 8 is dark gray

pure wave
#

(you could use this handy plugin called LuckPerms, then you don't need OP)

pure wave
opaque scaffold
#

i have luckperms

vague plume
#

default value there is 4, which is red

pure wave
#

No, I mean default for non op

opaque scaffold
#

yes

#

tbh, i want to be blue lemme change to blue

vague plume
#

yes, it uses displayname in chat formatting by default, but displayname is prefix+nick and if nick is not present, uses username

#

since displayname combines prefix and nick to one placeholder, its possible the prefix color actually impacts the nick/username color

opaque scaffold
#

Wait, is there a way to change someone name color (without giving him op?) like only by the rank

vague plume
#

yes

vague plume
#

essentials has group formats for chat way down in the config

#

iirc line 600 or so

opaque scaffold
#

yes well for now im good 😄

pure wave
opaque scaffold
#

my rank finally so cool instead of ew red

#

aight time to work on othert ranks now

pure wave
#

Bit dark imo

opaque scaffold
#

yeah thats the point

#

light red and dark blue is perfect together

vague plume
#

how bout something like that

pure wave
#

Hey man, it's your server, you do you

vague plume
#

aye embed fail

opaque scaffold
#

hm?

#

that look good tbh

#

lemme get that color rq

vague plume
#

just google 'hex color picker'

opaque scaffold
#

i just yoinked ur color haha

#

will this work?

vague plume
#

the comment by the setting in essentials config will tell you if it needs the # or &#<color>

opaque scaffold
#

aight oki thanks! im learning so much in 2 days so far 😄

#

dam that color look so good

vague plume
#

thats sick

opaque scaffold
#

lol once im admin now helper xD

#

wait, what is the best color for mod?

#

i think uhm dark orange but its kinda ugly

pure wave
#

green imo

#

All my mods are green

vague plume
#

what i do is traffic light system

opaque scaffold
#

hm?

vague plume
#

owner dark red, admin light red, mods orange helpers green

#

but hey, its your server

#

this is the part where you can do whateverthefuck you want xD

#

freeedoooom

pure wave
opaque scaffold
#

no no tis okay. lol i just need some help picking

#

ima go with green

pure wave
#

Head Admin
Admin
Mod
Mod in training

opaque scaffold
#

head admin is basicly admin xD

pure wave
#

In my server, mods manage the social aspect and do investigating, admins have authority to rollback, the head admin elects those below them. and oversees all the moderation

#

The head admin has no need to communicate with players

vague plume
#

thats so different from my setup lol

pure wave
#

I'm all ears

#

Head admin goes in just above normal ones on this

opaque scaffold
#

yall talking about discord ranks, im on minecraft its so much diffrence

#

wait what is display name?

vague plume
#

helpers maintain the chat and keep bickering players apart, report to mods if needed. mods are the first responders to rule breakage if its something helpers cant do (mods do the physical aspect, so not chat, more like 'actively', they can temp ban and kick) admins are the 'wise ones' that decide on cases where mods are too inexperienced for. they can decide for or against mercy, but they're rarely needed but they have a voice when it comes to settings/changes/rules etc. theres no such thing as 'in training' for me. either i see someone being ready for the challenge or not, aka helper hiding in a cave rather than telling ppl to quit arguing lol

opaque scaffold
#

help here pls :)?

vague plume
#

displayname in essentials is prefix+nickname

opaque scaffold
#

yes

#

so how do i exactly make the rank Mod, which its color is dark green but i want the player name to be light gray? how i do that?

pure wave
vague plume
#

^

opaque scaffold
#

oh ok

#

well how i do that in minecraft?

pure wave
pure wave
opaque scaffold
#

To make a rank. Change someone name color

pure wave
#

!usage

outer vesselBOT
pure wave
#

The wiki should have most of the information needed

vague plume
#

basically. i just hate the idea of 'training'. for me, a helper can decide to be active and taken under the mods wings or they show little interest and stay helper forever

pure wave
#

Any further Essentials support and I'll direct you to moss

#

!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
pure wave
#

(I might've left the ping on) sorry if so

opaque scaffold
vague plume
#

i used to have a network with average 40. that went down tho, so rn i got nothing public, currently working on it. but ehh no rush at all lol

#

namecolor for groups is set in essentials chat formatting

#

luckperms does nothing with namecolors

opaque scaffold
#

so i can't make luckperms rank change people name color?

pure wave
#

You can by giving them a group with a color defined in essentials config

opaque scaffold
#

ok

#

this is comlicated

vague plume
#

this is actually nothing yet xD

opaque scaffold
#

Whaaaaaaaaaa

vague plume
#

ye.... for experienced ppl this is peanuts, done in 2 minutes

#

you just gotta keep learning. or someone to actually teach you the ropes

#

a lot of stuff makes sense when you learn about basics like placeholders, who provides what, and how to change them and so forth

opaque scaffold
vague plume
#

heres the thing

#

when you just started, everything is overwhelming

#

you bite through, doing the basic things

opaque scaffold
#

yes

vague plume
#

and then you have the basics down and discover advanced features and basically you can redo your entire server bc u dont like basic anymore xD

opaque scaffold
#

wdym redo?

pure wave
vague plume
#

when i started server management, i did essentials chat stuff too. then i discovered theres a plugin that can do way more stuff and that essentials doesnt have placeholder api support. so i set up chat entirely new with a different plugin having more advanced features

#

that happened with almost every plugin i first chose

#

in the end, 90% of my server was changed, basically double set-up

opaque scaffold
#

oh

vague plume
#

now here i am having incredibly high standards lol

scarlet light
opaque scaffold
#

hell nah

#

u give up cuz your a noob

#

I never give up

scarlet light
#

facts

sonic wyvern
#

(Mods have been notified)

analog coyote
#

ello

steady tangle
#

!export

outer vesselBOT
#

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

steady tangle
#

!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
!hack
!helpchat
!inheritance
!install
!libsdir

!locale
!meta
!migration
!notworking
!nowildcard
!offline
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!testingperms
!tracks
!translationprogress
!translations
!tutorial
!upgrade
!usage
!userinfo
!verbose
!version
!weight
!whyluckperms
!wiki

steady tangle
#

!storage

outer vesselBOT
scarlet light
#

!switch

#

ok

gilded nova
#

!bottom @scarlet light

scarlet light
#

👀

sonic wyvern
#

!switch for me

outer vesselBOT
outer vesselBOT
#

LuckPerms allows you to set weights in order to determine the priority of certain nodes, like permissions and even prefixes. A higher weight number is a higher priority.

sweet olive
#

is there a way so someone cant join survival they need to go through the lobby to join

#

like when lobby is down people join survival

#

automatically i dont want that dose anyone know how to solve

lime trench
#

yeah it is possible to change it in the bungeecord settings

sweet olive
#

whats the line called to change it

lime trench
#

I think its called "force_default_server"

#

And priorities need to be like this

#

i think then it should work

sweet olive
#

ty

robust lodge
#

Anyone knows a plugin where a user can activate and deactivate pvp. With a cooldown and maybe a hologram above his head which indicates if the user has pvp enabled or not

gilded nova
tiny crown
#

Im kinda new to this how do i color a prefix???

scarlet light
#

!colors is this a thing

outer vesselBOT
high jewel
#

(also if you have essentials on your server and kits are enabled, there is a built in /kit colors for a book that provides the codes for in game reference)

spark geyser
#

Why the prefix is ​​not lost

gilded nova
#

what

onyx mason
woeful willow
#

@gilded nova
Why????

neon fjord
#

@onyx mason

outer vesselBOT
#

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

woeful willow
#

Dang you Michael!

neon fjord
#

@outer vessel

onyx mason
#

@neon fjord

thorny kernel
#

@outer vessel hi clippy tharpyHug

main vortex
#

wassup Evident and amberdeener 😄

scarlet light
#

@main vortex !!!

vague plume
#

Creepy kitty getting fur tomorrow

main vortex
#

Looks nice

scarlet light
#

I just got stung by a bee, sitting on my bed.

#

What the fuck

vocal rivet
#

Oh no

#

I hope the bee is alright 😛

scarlet light
#

The bee is not alright, I promise.

vocal rivet
#

Oh no. That poor beeing. What has it beecome. It was merely beehaving on instincts.

scarlet light
#

It’s dead

onyx mason
#

Power move

scarlet light
#

💅

forest helm
#

!verbose (for me)

outer vesselBOT
forest helm
#

!latest (also for me)

outer vesselBOT
#
Latest version

5.4.25

woeful willow
#

!latest (for _11)

outer vesselBOT
#
Latest version

5.4.25

onyx mason
#

!latest (for deenoh to forward to underscore)

outer vesselBOT
#
Latest version

5.4.25

glossy basalt
#

Hi, what is the placeholperapi for luckperm_velocity

pallid apex
#

ello

sonic wyvern
#

!colors

outer vesselBOT
wet vale
#

guys, any suggestions for system administrator ?

vague plume
#

in...what sense...

wet vale
# vague plume in...what sense...

I tried to do the theme thing yesterday and couldn't login, i waited to the system admin to get back online and he did for me, but i had fight with him 10m ago and just need a new one haha

pure wave
#

Ideally someone you trust

vague plume
#

well, system admin can be anything. some people call themselves sys admins while really all they do is watch a servers console and maybe fix tps every now and then in an already set up panel or even better, aternos or minehut.

vague plume
#

and agreed, it should be someone who you can trust, and ofc that person needs to know what you need. if you have a vps, dedi, the software, he needs to know what you want done, how much work load and so forthg

#

its not that easy^^

wet vale
#

Damn it

vague plume
#

to be honest with you, ever since i set up my vps, i literally never go in there unless my panel takes a shit once every 6 months to reboot it and thats it

wet vale
#

So how hard it is to be able to control everything myself?

vague plume
#

so im not sure what youd even need lol

#

its set up, isnt it?

wet vale
#

yes

vague plume
#

then theres not much to do. may be good to know 10 commands. updating software, rebooting the panel, restarting your mysql db and thats it

#

you dont need more if its done. maybe how to make an exception for an ip to direct connect if ever you decide you want another standalone mc server rather than binding it into the bungee

#

which is what i do with my fabric test server but ehh even i look these up since u need them once a year maybe, if at all lol

wet vale
#

Okay from what you saying i assume it's not a really hard thing to do it's just some commands

vague plume
#

basically yea. sure one could also say you should know a bit of nano (file editor for the terminal) or other basics but that you can learn over time

#

there are also documentation out there, for nano for example too which explain the commands. but nano also has hotkey instructions right in itself so its hard to miss

#

maybe what you need is a vps where you can blow shit up for practice lol

wet vale
#

alr alr i will try to login again and try to install another theme, i guess it's not that hard since he installed it in lass than minute

vague plume
#

told you its pretty easy. install command, confirm? y/n - enter y, choose theme 1-6 enter the number, let it run. would you like to reboot to apply y/n, enter y and boom done

wet vale
#

that looks easy af

#

so

#

I am trying to login but it says access denied

#

do i use root as a username as sent in the email?

vague plume
#

basically yes. i cant remember if its even possible to change the root users name, but i think so. so if your dev did that, then that no longer applies. same with the password

wet vale
#

alr I will ask the Hetzner account owner to give me access to the server once he wake up

#

thank you so much for help i really appreciate it

vague plume
#

hetzner account owner?

wet vale
#

yeah I am not the owner of the account, when we got the Dedi i forgot to tell the Dedi buyer to give me access

vague plume
#

i was with hetzner once as well for a year and i cant recall the hetzner logins being the same as the ssh logins

#

unless im wrong, those are separate things

wet vale
#

I think it is?

vague plume
#

lul exact same server i had, the ax51 haha

#

but yeah if it explicitly lists ssh then ye

#

just saying the web login for their website doesnt have much to do with ssh directly, those logins can be completely different and actually should be

wet vale
#

oh okay

#

i will just wait for him that's what i can do for now lol

vague plume
#

yea

gilded nova
#

Hello! Immediately after installing the LuckPerms and EssentialsX plugin, will players not be able to use the EssentialsX commands?

wet vale
gilded nova
glossy basalt
#

Hi, what is the placeholperapi for luckperm_velocity

gilded nova
#

!latest

pure wave
#

Bot ded

#

:(

serene smelt
#

bruh wtf

#

i cant give ranks to bedrock paleyr

#

that has .

vague plume
#

allow-invalid-usernames set that to true^^

serene smelt
#

fix?

serene smelt
vague plume
#

strg + f = search bar

serene smelt
vague plume
#

could be ctrl in your case too

#

depends if you have a european keyboard or not

serene smelt
#

line 680

#

nice

proven sundial
#

@gilded nova

outer vesselBOT
#

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

proven sundial
#

denied

gilded nova
vague plume
#

^me when someone says 'luckyperms' instead of 'luckperms'

vague plume
#

If your perms are lucky, you deffo have a problem lmaoloop worth a tagging tho eh

#

Would you quit reply-pinging me please

#

Ok it started funny but now its just 😐

rigid quail
#

It isn’t lucky perms because your permissions aren’t lucky. They’re called lucky charms because they are… lucky… charms….

glossy basalt
#

Hi, what is the palceholperapi for luckperm.velocity?

trail shuttle
#

what?

glossy basalt
#

I add the ecloud but still don't see the ranks

trail shuttle
#

there’s no plaveholderspi for velocity

glossy basalt
glossy basalt
trail shuttle
#

you can’t use papi placeholders on velocity

glossy basalt
#

So what can I do?

rigid widget
#

Use luckperms on the backend and use papi placeholders per backend?

gilded nova
#

you are objectively wrong but sure

#

"easier"?

#

both are drag and drop, change two settings and you're good to go

#

as far as "easiness" is concerned

#

As proxying software Velocity is much more modern and plain better

#

No, you don't :)

#

Yes, my name is Emily, no it is not Karen

#

How so?

#

Emily is a name of Emily

#

You should go back to elementary

#

If you say so

#

🤨

#

That says nothing lol

gilded nova
steady tangle
#

Oof

gilded nova
#

:)

steady tangle
#

:)

scarlet light
gilded nova
#

As usual

scarlet light
#

We all need some expert advice sometimes, I don’t blame you

gilded nova
#

I wouldn't be talking to myself if I needed expert advice kekw

scarlet light
#

We both know you’re the 2nd smartest person here.

gilded nova
#

💀 if I'm the 2nd smartest person here then we're all screwed

scarlet light
#

Noooo

gilded nova
#

anyone know a good place to get templates ?

onyx mason
#

For…?

pure wave
#

A fellow viper connoisseur

gilded nova
#

ah yes

#

big matto

west dock
#

is possible to make that a team can break a item but the other team cant?

mint kiln
#

Can I use prefix without installing EssentialsX

vague plume
#

you can give groups prefixes even without any chat plugin installed, however chat plugins are what puts them into the chat. so no chat plugin = no prefixes in chat. what chat plugin you use doesnt matter though

mint kiln
#

Do you know any good chatplugins?

vague plume
#

lpc is easy and still good since it has placeholder api support unlike essentials

mint kiln
#

ok thanks for your help

limber orbit
still ingot
#

Yo guys

#

I'm showing different prefix for players based on how much rank they have

#

so for example

#

a user has vote rank and it will shop vote prefix

#

if a user has vote rank and vip rank it will show both prefix

#

and i'm trying to make a function that basically shows/hide rank vote prefix for the player so they can customize it

#

Is it possible somehow?

thorny kernel
#

are you making a plugin for this?

still ingot
#

no idea on how to code with java

thorny kernel
#

i dont remember if skript has get/set prefix but you could have a permission for if a certain prefix is allowed to be set

#

eg prefixes.vote if they can use the vote prefix

still ingot
#

but the thing is

#

how can i hide just one prefix?

#

like the vote one

thorny kernel
#

you dont

#

dont have the prefix and then give if you want it to show up instead of giving it and trying to "hide" it

forest helm
#

!stacking this seems like our meta stacking already covers it?

outer vesselBOT
still ingot
#

but the thing is

#

how can i remove a prefix just for a player?

thorny kernel
#

you could also just handle prefixes on your own with skript instead of using luckperms prefixes

still ingot
#

that's what i'm trying to understand

still ingot
#

because i should edit a couple of things for making a custom prefixes sytem with skript

thorny kernel
#

i made my own chat with skript a long time ago lol

still ingot
#

It's not hard but if there's a way with luck perms i prefer 100% doing it with it

thorny kernel
#

not sure how its better to use luckperms but ok

still ingot
#

for example there's vip rank and vote rank

#

if a player has both and want just to show vip one in chat

#

is there a way?

thorny kernel
#

if you want it chosen by the player, no

still ingot
#

wym?

#

I just want to hide/show the vote one of the player

#

just that rank

thorny kernel
#

if vip inherits from vote, vips prefix will show instead of votes prefix

still ingot
#

no because i did set that if a player has both both will be shown

#

with meta stacking

#

and i'm wondering if there's a way to hide one without editing meta stacking option

#

just for one player

thorny kernel
still ingot
#

rip

thorny kernel
#

your already using skript, so just do prefixes yourself

#

its harder to manipulate luckperms prefix stacking than to just do it yourself

rapid tide
#

Maybe someone has come across this.
That you have a server on version 1.17.1 but you want players with version 1.16.5 to be able to log in. But in version 1.17.1 they added slate and much more. Is it possible to somehow replace the textures for those who play on version 1.16.5, for example, slate-renamed cobblestone, amethysts-renamed corals, copper-renamed iron

scarlet light
#

viaversion/viabackwards!

#

There’s also protocolsupport, but m not sure of anyone that actually uses that

rapid tide
#

Does it replace blocks?

scarlet light
#

It will show a different block and say something like 1.18 <block>

rapid tide
#

Thank you!

thorny kernel
#

how does viabackwards deal with the world height change in 1.18 manythink

rapid tide
#

Xmmm

scarlet light
#

Not very well. There are messages In console saying it can cause problems.

thorny kernel
#

oh tharpyFine

rapid tide
#

Okay, I needed version 1.17.1

cerulean stirrup
#

hi how can i open ticket?

vague plume
#

theres no ticket system here

cerulean stirrup
#

how can op nerf vanila op? with luckperm?

vague plume
#

ehhh what

cerulean stirrup
#

i want to nerf * becuz it too op for bungee downer to grief my spawn

#

because they can bypass everything

thorny kernel
#

thats the point of giving *. if you dont want someone doing anything dont give them *

cerulean stirrup
#

no i dont they can give them self by bypass bungeeguard

#

my backends server already have bungeegaurd and they still bypass it

proven saffron
#

Or just use Waterfall or Flamecord

cerulean stirrup
#

i already use xcord

trail shuttle
#

or your key is leaked

#

which means you should change it

gilded nova
#

yeah bungeeguard doesn't have a "bypass mode"

sharp gale
#

am i aloud to advertise

onyx mason
#

No

#

Thanks for asking tho!

sharp gale
#

ok

#

then dont look at my prfile discription

gilded nova
#

dw, wasn't gonna

thorny kernel
#

advertising by saying not to look at where the advertisement is tharpyWah

gilded nova
#

I mean this is a server full of admins and owners

#

Advertising makes no sense lol

sharp gale
#

yeah

thorny kernel
#

gotta stop running my own server to join someone elses server tharpyTroll

sharp gale
#

wow

onyx mason
#

Hi everyone.

forest helm
#

aber happeepoheart

onyx mason
#

Hope you’ve all had lucky days. luckpet

#

Underscore 🤩

#

An incredible dev, helper and community moderator.

charred plover
#

Хахлина

#

Хахол

#

Сало

#

@gilded nova сало

lime drift
#

How can I change the rank of the user while keeping the remaining time?

still ingot
#

Yo guys

#

Does luckpermes support velocity?

trail shuttle
#

yes

still ingot
still ingot
#

Yo guys

#

I'm trying to set up lp with velocity but in the wiki it talks about bungeecord

#

and nothing about velocity

#

there's no ip_forward in velocity config

vague plume
#

never seen velocitys configs but the base behind this one is that you need your proxy to authenticate and forward Payers identity to the subservers to avoid your proxy saying that your id is 36 while your backends do the same thing and say your id is 65. (figuratively speaking) im sure velocity has a similar setting.

#

player-info-forwarding Mode NONE This allows you to customize how player information such as IPs and UUIDs are forwarded to your server. See the “Player info forwarding” section for more information.

still ingot
#

yep i saw that

#

the thing is

#

wich one should i use?

#

I suppose modern

vague plume
#

read. it says use legacy if your server is 1.12 or lower. use modern for 1.13 or higher

still ingot
#

ty buddy

#

Anyone good with ubuntu and mysql guys?

oblique notch
#

does anyone know how to do rank color gradients in the web editor

sonic wyvern
#

depends on the format your chat plugin uses

oblique notch
#

oh ok

pure wave
#

&#084cfb[&#92d7fdB&#5e74d8O&#925194R&#ea5a57E&#da3139D&#a02c12]

#

For example

#

Go through the different formats until you find one what works

thorny kernel
#

<gr:light_blue:light_red>stuff</gr> styled-chat my beloved

scarlet light
#

MiniMessage is where it’s at

gilded nova
#

wdym don't you like &x&f&9&e&e&4&fp&x&f&3&d&d&4&9r&x&e&e&c&c&4&4e&x&e&8&b&b&3&et&x&e&2&a&a&3&8t&x&d&d&9&9&3&3y &x&d&1&7&7&2&7c&x&c&c&6&6&2&2o&x&c&6&5&5&1&cl&x&c&0&4&4&1&6o&x&b&b&3&3&1&1r&x&b&5&2&2&0&bs&x&a&f&1&1&0&5!&x&a&a&0&2&0&9!?

scarlet light
#

Ah yes, I love legacy format

#

And when you want to bold the letters, you have to go through it in hopes to not screw up the placement!

gilded nova
#

right?!?!

thorny kernel
#

tbf its pretty good for player set nicknames imo

scarlet light
#

Not legacy format. It’s literally the worst.

#

If anything, a custom format such as the one EssentialsX uses &#RRGGBB is better.

gilded nova
#

MM reigns supreme

still ingot
#

Yo guys

pure wave
#

Yo

still ingot
#

How can i import json.gz exported permission to mysql database?

pure wave
#

!switch

outer vesselBOT
still ingot
#

Amazing!

#

So

#

if i connect spigot server and velocity luck perms plugin to the same database they will have the same perms right?

scarlet light
#

Yes

still ingot
#

And if i leave all the permission to context global

#

Will velocity perms still works

#

and same with spigot ones?

scarlet light
#

they will work, yes. on the entire network

still ingot
#

amazing

#

ty buddy

gilded nova
#

Breathing is almost the most important thing, no?

still ingot
#

it is

scarlet light
#

Nope, Emily is.

gilded nova
#

incorrect

still ingot
#

So i just need to import the file with one server right?

scarlet light
#

yes

#

export > change to mysql > import

pure wave
#

someone needs to change soloman's nickname to Legitimate business man

still ingot
#

amazing

#

Ty

#

Why bro ahahahah

pure wave
#

It's a GTA5 reference

scarlet light
#

That's.. Simeon, but close enough i guess

pure wave
#

oh

still ingot
#

Oh simeon

pure wave
#

is 2 am lol

still ingot
#

I hate that guy dude

#

Solomon is closer

#

the guy from the disco

scarlet light
#

Soloman Richards is the movie dude

still ingot
#

Remember'

#

wasn't him from the disco?

scarlet light
#

Not that im aware of? Richards Majestic? Solomon Richards?

gilded nova
#

The suits!

#

And they don't even wear suits

sonic wyvern
#

Why would it be a virus lol

#

but no, it’s not

steady tangle
#

Other way around

#

Aternos have LP on their site

weary whale
steady tangle
#

?

#

Please don't ping randomly x)

scarlet light
steady tangle
#

People don't like free hosts

gilded nova
#

you pay with your sanity

weary whale
#

I love making plugins and with aternos you can't even use the plugins you create, you have to wait 2 months to get your plugin verified

#

That's all

#

(I don't use free server hosters, but in my opinion minehut is better, just for the fact you can upload your own plugins )

gilded nova
#

first and only time I asked for a plugin of mine to be in their ""exclusive"" list, their response was just "no"

weary whale
#

Yeah

#

That is how it goes...

gilded nova
#

not really

#

that's how they roll

#

ok

weary whale
woeful sonnet
#

@gilded nova you're on MY exclusive list

outer vesselBOT
#

Hey Emilia | Emily is a cutie! Please don't tag helpful/staff members directly.

gilded nova
#

so true

sacred panther
#

Hi, how can i use h2-mv.db file for my server?

#

i lose my mysql database

vague plume
#

you can just change 'storage-method' to h2 in your config.

visual kite
#

ik its not a luckperms plugin problem (thats y I am posting here) but maybe someone with knowledge may help:
for some reason name tag isn't showed above player heads
main plugins I have are: Essentials. Essentialschat, luckperms, TAB, vault

scarlet light
#

zero: RunningBaby

vague plume
#

Did you try debugging youself yet? /tab debug <player>?

#

Might as well. Used to help out there so some basics i do know lmao

visual kite
#

hm just did the debug

#

and the tagname should be working

scarlet light
#

are you using another account to see it? you can't see it if you press f5

visual kite
visual kite
vague plume
#

/tagpreview or smth

visual kite
#

bro I am so dumb

#

I should've used another account to check

#

thx guys

scarlet light
#

np

vague plume
scarlet light
#

confused by that, because it's f5 not f1

#

f1 hides HUD

visual kite
#

yea

vague plume
#

Yea kinda same principle

#

Iirc its also mentioned in the setup text

visual kite
#

but this one says that nametag is still visible on F1?

#

its the opposite here

scarlet light
#

For other people, it'll still be there.

#

ex: if you have 2 accounts, and your second account looks at your main, and you press f1, you will still see the other persons nametag.

vague plume
#

Thats the article for it.

scarlet light
#

they should just give us a packet to see if the players hud is hidden

thorny kernel
#

transfer packet while they're at it? tharpyTroll

scarlet light
#

Please

vague plume
#

Tbh i never knew tablist plugins are or can be so much work until reading the entire wiki here. No wonder nez wants to drop development on this minus simple version adjustments/fixes

visual kite
#

ehh another question

#

deluxe tags can be used? (not included in PAPI)

vague plume
#

In tab?

visual kite
#

in both

#

I tried {deluxetags_tag} and %deluxetags_tag%

#

but doesn't work

vague plume
#

Does /papi parse me return anything with the % ones?

visual kite
#

oh wait

#

I figured out smth lemme try rq

vague plume
#

Iirc it depends on your dtags version. I remember older versions had a papi expansion, newer ones had them built in.

visual kite
#

I am in the newer one

#

and the built-in don't work

vague plume
#

Does it return empty line or the placeholder

visual kite
#

it works in essentials

#

ehh what?

#

hmm

vague plume
#

/papi parse me %deluxetags_tag%

visual kite
#

{deluxetags_tag} this return the placeholder name***

#

%deluxetags_tag%

visual kite
vague plume
#

The squiggly brackets one is only for use in essentials

#

Since ess has no papi support

visual kite
#

oh

vague plume
#

So whats the error say

#

!paste

outer vesselBOT
#
Please use pastebin!

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

visual kite
#

ig this line Caused by: java.lang.NoClassDefFoundError: me/clip/deluxetags/DeluxeTag

vague plume
#

I literally just put exactly that line into search in papi discord

visual kite
#

oh

vague plume
#

Not sure if you do have the expansion still

#

Maybe?

visual kite
#

I have it yea

#

resatrting server

vague plume
#

Yeet

#

Idk shit about papi really xD

visual kite
#

lol

vague plume
#

Using it sure. Debugging it ehh

visual kite
#

ayo that works :DDD

#

thanksssss

vague plume
#

Thank jesus. Id be lost from here on otherwise

rugged hare
#

I have a server based on 1.16.5(forge) someone can send me the luckperms for this version?
Thanks

vague plume
#

Forge was the latest addition of luckperms version and does not exist for 1.16.5

charred plover
#

@gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova @gilded nova

Че замолк Че замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолкЧе замолк

pure wave
#

wut

wet vale
#

Anyone has suggestions about a good punishments plugin?

idle bane
#

@wet vale LiteBans

#

Is absolutely amazing

#

I myself was curious if anyone uses any alternatives to EssentialsXChat

wet vale
idle bane
#

I haven't ever personally needed any placeholders with it

idle bane
# wet vale wdym?

I was just curious if anyone uses anything other than EssentialsXChat

wet vale