#general
1 messages · Page 293 of 1
No
You downloaded infected plugins
❤️
I have turned off luckperms on one of my servers and now it's not sending this
it can be any plugin that hooks to LP (and any can)
but i can tell you it's not LP itself
You can download LuckPerms for Bukkit/Spigot/Paper, BungeeCord, Sponge, Fabric, Nukkit and Velocity.
literally any plugin installed can access each other classes, did you test with only luckperms installed?
Its also possible that your server software is one the being infected
or the computer hosting the mc server
It doing luckperms.
I tested it.
prove?
.
lol
did you not read any of our messages?
I disabled all plugins.
thats funny
you can look at the source code of LP to see what it's doing lol
also, lp code is open source, check, build and compile yourself https://github.com/lucko/LuckPerms
lp has nothing to hide lol
Okay wait.
yea id be curious to decompile it
idk man luckperms is fucking huge and that is not helping me 😂
I think intelliJ can search by text?
If its something in lp code, the discord link will be in the code
look for javaassist stuff?
yeah there's nothing about that
Not in its_regen's
there's javassist stuff in uQlel's LP jar lmao
in my 5.3.3 jar there is class me.lucko.luckperms.bukkit.loader.BukkitLoaderPluginL10
Thats fine
but in latest from website there isn't
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
What does it do?
Definitely something injected code
Mind dming me the jar also?
getDataFolder().getParent() looks like something to exploit the entire plugins folder
Please use https://paste.lucko.me to send files in the future. I have automatically uploaded message.txt for you: https://paste.lucko.me/HcUZXuhT4S
its_regen's might have had it too but i can't find anything about that.. 
yes
mhm
bcu getDataFolder().getParent() is the plugin folder
nice plugin 🤣
and its running something on it, likely getting the .jars and doing something

javassist can literally change the bytecode wow
also yeah absolutely nothing about discord
the discord is just to blow things up
#support-1 ;/
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...
No
looks like its poor server host provider tho, I see there is https://docs.oracle.com/javase/7/docs/api/java/nio/file/FileSystem.html#getRootDirectories()
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?
eh not really to do with the host, Java FileSystem does not directly equate to the OS file system
I found a link http://docs.oracle.com/javase/tutorial/essential/io/dirs.html
with a example:
Iterable<Path> dirs = FileSystems.getDefault().getRootDirectories();
for (Path name: dirs...
but with properly setup of the server, it shouldnt happen
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?
use one of the consumer methods e.g. thenAccept() instead of .get()
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
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?
No, you will probably need to use .thenAccept
Okay, thank you 💚
Yea to do async things, quite a bit of code change need to be done if not planned beforehand
yes naively i assumed all Users were available at all times when i started the plugin 
Unfortunately not the case haha
I answered you in enginehub...
i am asking on some server, so i am not reading the messages
then.. read them?
ok
awoo
uwuwuwuuw
@onyx mason 👀
@onyx mason are u back in stupidbc
Can I mass update the context for every permission every player already has?
!bulk
Quickly update a large amount of user and group permissions by using the bulkupdate command.
thanks
yo dose anyone know why my server icon dose not work its named server-icon.png and its 64x64
that is waaaaay larger than 64x64 lmao
this should work :)
now that's more like it
Thanks! i used a website to convert it lol since photoshop keeps crashing
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
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
!def
LuckPerms provides a group that every player is added to upon joining the server, called default. You can use multiple methods to change the default group or change the name of it.
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
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.
so what plugin do u recommend to give ppl the name members with luck perms or if luck perms offer that tell me the command
!chat
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!
!prefix
You can set prefixes, suffixes and other meta data in LuckPerms for players and groups. Note that LuckPerms does not manage chat. You need to use another plugin to show prefixes/suffixes in chat.
dose name tag + work with luck perms
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
will essentailsx chat will work
okay i already have vault
so now after i removed the plugin now the perms in the default group i cant type them
No
so now after i removed the plugin now the perms in the default group i cant type them
the plugin is powerranks
Don't reply just to ping lmao
Hey AFOUND! Please don't tag helpful/staff members directly.
@gilded nova
Hey AFOUND! Please don't tag helpful/staff members directly.
help
stop pinging staff
i'm busy
so now after i removed the plugin now the perms in the default group i cant type them
plz
could there be some warning into LP added when two or more groups have the same weight?
put in a suggestion and see if luck is interested in the idea
Hey, can you help me because I don't work luck prems please help me
don't post in multiple channels pls
okay
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
how do I do that? just github?
If you would like to request a feature for LuckPerms, or report a bug, feel free to open an issue on GitHub!
d;spigot Material
public enum Material
extends Enum<Material>
implements Keyed```
Material has 1542 fields, 5 all implementations, 28 methods, 1 implementations, and 1 extensions.
An enum of all material IDs accepted by the official server and client
!offtopic
Sorry! I do not understand the command offtopic
Type !help for a list of commands
This
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.
@gilded nova 
Hey Samosa (do not ping)! Please don't tag helpful/staff members directly.
!usage
Here's a guide to help users understand and use LuckPerms for the first time.
hello
@steady tangle❤️
❤️
@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 🙂
discord pls discord.gg/helpchat
this is like super off topic but
im trying to make custom armor and i can;t figure out why this is not working 😦
Hey Evident! Please don't tag helpful/staff members directly.
i-
@gilded nova
Hey Evident! Please don't tag helpful/staff members directly.
smh
I WAS TAGGED FIRST
Lies
#github-spam ?
hmph. doesn't have the message i need.
How unfortunate
well, it sounds like a great idea.
Hey guys, how do I set a different chat color for each group in my server?
Hey ! Nympêx`! Please don't tag helpful/staff members directly.
Display data such as user prefixes and groups from LuckPerms in other plugins.
Hey! Don't mass ping, ever. Reading and following the rules (rule 1) is very important! Thanks. @gilded nova
Oh mass ping?
Nēàtus.´#7657 was muted
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
Hey. Is mariadb recomend over postgresql, for using luckperms?
Or do you recommend mariadb for the plugin?
I use MySQL. I dont know if it is the best choise. But it usually works fine
Use whatever is easiest for you. Personally I prefer psql but mariadb is also good and has more support when it comes to plugins
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
Is there a speed difference?
Anyone want to help me move my ranks over from my standalone server to bungee? (Paid)
This server is not a marketplace, please use other servers more appropriate for that matter such as discord.gg/helpchat
Good... discord.gg/helpchat
:)
- i found someone
- I checked the rules and it didn't say i couldn't
It literally says this server is not a marketplace
yea we figured that one
I can tell...
Rude

Welp sorry for break the rules
@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
Hey BomBardyGamer! Please don't tag helpful/staff members directly.
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
Did you also update shadowjar?
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]
!paste the build files
Seeing a paste of the problem makes everything so much easier! Use https://paste.lucko.me/ for easy pasting!
Pastebin any relevant segments of the console log. If it's a startup error, this includes the entire startup log!
Pastebin the entire LuckPerms config file (passwords removed) as well as any other relevant files!
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
Does it work with archiveName?
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
Yeah idk, i had problems with that too
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'
}
}
Try to only check fabric.mod.json? And not every file?
how do you even do that? lol
Idk
I mean, I'd just use the ReplaceTokens filter for this personally
maybe that's what we should do here
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
Ignore or block them!!!
If you like to report DMs they sent you, please DM them to me. Otherwise, public accusations are useless
has anyone ever got luckperms to work with ftb teams commands ?
"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?
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?
do you need a server specifically?
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
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
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
LuckPerms is as complex as you make it be
*
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
!verbose 
LuckPerms provides a verbose command to help you find out what permissions a command/plugin is checking.
I'm confused on how to use the verbose command
Im trying to use this command /reskillable toggletrait Alexplay188 reskillable.hungry_farmer
that's why we've written a fairly extensive wiki page on it!
Does this work for Forge? can't see it mentioned in the FAQ
spongeforge
sponge is a mod that can load 'ore', which are like plugins, and luckperms has a sponge version
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
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)
ahhh okay thank you!
I've tried installing and it keeps shutting down my server. I'm not using AuthMe like the FAQ says
Please grab your latest server log (found in logs/latest.log) and put it on https://paste.lucko.me/
Make sure to send the link to the logs to this channel.
Nevermind I'm just an idiot. I thought I had uninstalled FTB utilities but it was still in the mod folder 😂

Hi
Who ping
No why
because
Yes
@gilded nova no ghost ping reeee
idk what you're talking about 🌝
@onyx mason r u???
@onyx mason ??
@onyx mason owner?
Hey Samosa! Please don't tag helpful/staff members directly.
@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
why not
i never found the application form
why not
because I use Bing
ew
looks all good
Please promote
just wait a few business months for your application to be reviewed
cant wait 🕐
what is the github for the Clippy bot, i remember seeing it somewhere
thx
@west lynx your status is using the wrong you're
Oh frick
!context 4 me
You can set a permission or group on a per-world/per-server basis, through what we call "contexts".
ping?
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!
If you think it’s a bug and not user config issue, you can open an issue on GitHub
But even so, yea, everyone here only reply on their free time
If i update luckperms will my permissions still be there?
gotcha
hi how can i give me op on my server with luckperms
@gilded nova
no
don't randomly dm people
I do not want to be a second owner 
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
I also got dmd lol
give me access to your server, and I could just break it
I wanna see if you get any responses to that lol
thanks, I'm thinking it might be and may have to open an issue on github. I was hoping it would be a simple solution seeing as the same errors have been posted many times but can't see what worked. never realised how complex luckperms bungee was before we decided to migrate lol
On github when posting an issue it says:
- 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.
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
If you wish to change your storage type (e.g. to YAML or MySQL) you may need to follow these instructions to ensure your groups and permissions are migrated to the new storage type.
But ideally everything will be set up at once when they are all hooked to the sb
Db*
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
That reminds me, I need to eat whilst I wait lol.
@gilded nova How much MB should my database be able to hold?
Hey Jxkeeee! Please don't tag helpful/staff members directly.
lets say it would need to store data for over 3000 unique players
I hope so, unless someone is actually cooking her.
!!!!
😦
pizza is my 2nd fav dish
1st is chicken parmesean
or however you spell
love a good chicken parma 
TIITY
How do I contact the mod team of the server I got something important?
Of what nature? If you need support, #support-1.
I been recieving a message from people in this discord server with "Accidently report steam account" Scam I can send you over evidence and their username in private rather then here so it's doesn't cluster up the chat
!chat
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!
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"
Screenshot /pl
how i change de time in console comand?
the time of what?
change the timo of night and day
Just Fucking Google It helps you help others to use Google and search on their own!
@steady tangle uwu
uuwuwuwuwuwuwu
damn finally a decent lmgtfy substitute
hi
wassup
anyone know the perm command to allow teleport?
LuckPerms provides a verbose command to help you find out what permissions a command/plugin is checking.
any1 know the plugin that hypixel uses for the levels and when a certain level the name changes?
Custom
yes but a similar plugin
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
are they all set to false?
yes
did you save and apply the changes in game?
well there has to be some plugin or group permission you're missing
try removing some of the plugins and see
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)
well how do you know people can use chat colors
is it through a command
or are they saying &b&lhello
no its through &bStuff
ahhh
i have an alt testing
remove chatmanager and restart
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
no clue
i mean yes if possible
Hi, can someone help me? I need to add permission fireball
Hey deadhorse! Please don't tag helpful/staff members directly.
Hmm
help permision
you'll have to provide more detail if you want others to help with something
we can't read minds
yet
Turbo's been slow with his web editor: mind reading update
and did you know if I would do this please when I put you op on minecraft servers and fix it there
What
sk
what?
takto mi rozumiete či
uh...
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?
thank you
damn the original wiki is still applicable
This page was last edited on 21 September 2012
hhhhhhhhhhhhhhh
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
run and screenshot /pl
Hey does anyone know of a good mob hopper plugin or maybe someone who could make one? ❤️
you don't have no essentialschat lmao
discord.gg/helpchat #request-paid #request-free
i mean i thought i did 🤣
U need essx also
"ServerEssentials" is not EssentialsX
check first jar
essentialsX and the chat one?
Yu
Hey is Luckperms updated for 1.17?
Gonna update all my plugins now :)
not explicitly, what platform?
Does luckperms assign permission nodes based off of uuid or ign? cause in the web editor it shows ign
Velocity
And I'm on purpur for my backends
Spigot I think is what it would be
@onyx mason 

just 88 days until owner
UUID 🙂
^
This way you can assign permissions to players who haven’t ever joined the server
Hey
HeY tHaTs AdVeRtIsInG
Hello @steel pelican i have a propossal for you
Hey MrDeathMatch_YT! Please don't tag helpful/staff members directly.
please, contact me by dm 🙂
!switchstorage
If you wish to change your storage type (e.g. to YAML or MySQL) you may need to follow these instructions to ensure your groups and permissions are migrated to the new storage type.
how do i demote a player and promote
Nah, I am good.
./lp user %player% parent set %rank%
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
The promote/demote commands only work with tracks. Otherwise you need to use the parent set/add/remove commands
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
pair your paypal to luckperms????
yeah
for like automatic promotions
if someone pays 20$ for a rank
i think that makes sense
You do that through something like BuyCraft or Enjins in-built store
Then just get those to run the luckperms commands.
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?
Yes it can
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
CratesReloaded
@rigid widget 
Hey Doctor Zod! Please don't tag helpful/staff members directly.
HECK YEAH
Ah yeah, forgot about clippy
If I had the power, the ability, I'd reinstate your role from before immediately
but I've contacted the powers that do be
Nbd, just happy to be feeling better 🙂
I'm so very glad you're back
Heh.. huge outage of so many websites.. not fun at all, now the internet is suddenly boring.
weeee
I picked up a new project recently and I've been pouring my time into that!
Now to wait for burnout
funny how much can break when someone trips over a wire eh
ah, the inevitable sweet release of burnout... sometimes... don't worry though any progress is epic progress
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.
you're amazing
afaik there's only two other D&D discord bots
at least, functional
so that's a feat
Imgur also dead?
yes
oh but you are a plugin developer sure?
Yes, I am a plugin developer.
d;paper PlayerInteractEvent#getItem
@Nullable
public ItemStack getItem()```
Returns the item in hand represented by this event
ItemStack the item used
can someone help me find a name for my minecarft server
Matthew sounds like a good name 🙂
for a minecarft server
i dont find a good ones
'caudex' sounds good to me
!tab (for me)
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!
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
Which plugin are you using?
Hello
i need help
with prefixed\s
i have my server setup
and luckperms installed but prefixes dont work
@gilded nova i need help
Hey NeoPlayz! Please don't tag helpful/staff members directly.
kk
!chat
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!
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!
how do i add it
Google "essentialsxchat"
just like you did with the other 3 plugins you have on your server
drop it in the plugins folder and fully restart
i just did /reload instead of restarting it
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
I will restart from now on i guess
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*
Please use https://paste.lucko.me to send files in the future. I have automatically uploaded latest.log for you: https://paste.lucko.me/Jwoizl34Wi
heree @royal wharf
corrupted world?
yeah
not sure why it's npe, but that's my best guess and best possibility
@potent prawn manchas is a cutie ❤️
AaWEeEeE
mood
4am support let's go baybee
I need to finish that damn API
:3
Orrrrr play with cat
5 years later
he's a cutie ❤️
Emily hand reveal 😳
Aber 😮
big brain gecko

LuckPerms need update ViaVersion new api.
What? I fail to see what LuckPerms needs to update when ViaVersion made an update
Hello
!latest
5.3.42
!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
yo any1 know similar mysterybox plugin that hypixel uses?
GadgetsMenu
okay
hello, how do I add a luckperms rank in scoreboard?
how the sheeet do i make a mystery box with gadgets menu?
check their wiki
i cant fin on how to set up mystery boxes
how do i show the current world i'm on the scoreboard?
mystery boxes are enabled by default i believe
you just need to play and the plugin will randomly award you one
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
the vault?
whatever its called u know what i mean right?
you want to view the gui that you open the box through ?
mhm
oh well... thx
you need to use a placeholder
what?
if you want the world you are in to show on a scoreboard, you need to use a placeholder
umm, you could try %player_online% @tawny tree
and %player_world%
omg spighot 1.17 has bin released!! https://bit.ly/355aXsc
I dont trust that link
probably Rick roll or jebaited
rick roll https://i.imgur.com/MGSW6g7.png
what site is that that you're using?
might be handy for when we get wacky links in our discord xD
:c
just kidding
:'c
samosa is ❤️
❤️
And my internet is 💩
same
wheregoes iirc
nice thank
!advanced
Discover some of the more advanced concepts of LuckPerms, such as permission calculation, shorthand permissions and more.
Yo is the lp editor down?
Its not working. It says unable to comminicate with the editor
same problem here
Went down for me ~5 min ago, but back up atm
@analog bison reason for add?
guys can you give me good perms for diff ranks
hi
gamemode.creative for the 10$ donator rank
@gilded nova hi
help
i made myself write tests for an app
it sucks but i cannot stop
that's unfortunate
@rigid widget
Aber wrote tests for an app
It sucks but he cannot stop
no
:C
AHAHAHA yes!!!
yea
will be worth it tho
im sure there are dozens of small issues around this thing
mined ?
yeah mined with small issues lol
Don't you offer your services?
Does Luckperms still have plans to upgrade to FabricMC 1.17? I can't find an announcement detailing it.
I do, if your're wanting something, just message and ask 🙂
He won't let me send you requests or messages, please add me 🙂
can someone help me?
I think omega meant to just ask here
with what?
protocol lib
can anyone help at #support-1
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 😍
Why not just update your plugins or tell the author to?
cause i was noob when i wrote the perms code 🤣 i hardly got it workin at all, i aint trynna do it all over again wit a new version of the api lol (wit that said i defo should at some point)
i want a help
Can't really help without info
@short warren see
Hey GarryGaming! Please don't tag helpful/staff members directly.
Yeah I can see
Read console
wait a sec i will give u wht is in console
wait Im booting server
@short warren im booting minecraft
Hey GarryGaming! Please don't tag helpful/staff members directly.
please hold on
Because Im About to Launch My SMP but luck perm isnt working
sorry now it is working
https://www.epicgames.com/store/en-US/p/discord
epic games giving free nitro
wow
just claimed 3 months of nitro bt from it xD 
you can check the link, its not a scam.
Tf lol
lol
fake
check your email maybe
After i press
"place order"
then waht
.....................\
....
Ima need support for this
How long does it take
.
haven't gotten anything yet, but it is legit
considering even the discord site announced it
Yep, its legit from epicgames
ye
but their terms state its only for new nitro buyers
I woulda still been given the code
how do they know ??
Meaning, if you had nitro before you gonna get nothing
your discord won't allow you to redeem it
They tell u sign up with Epic not Disc
if you have had nitro before
can
u
not
type
like
this
please
thank
you
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
for free nitro?
May take up to 24 hours to recieve the email
pretty cool of them to do so
watch someone do it on the 23 at 11:59 pm
I only use Epic for the free games 
then they miss it lol
Me too XD
I don't support them with any of my mons
fr, i despise their launcher
ye
Buying epic games : 
Using epic for fortnite : 
Using epic for free games : 
steam4life
LMAO
Their launcher is so inefficent, just because they just had to use the unreal engine to make it -.-
AND it breaks my mac's cpu
do you guys know
about epic giving free nitro







