#general
1 messages ยท Page 187 of 1
Ujelly Larry
Only a little bitt
little but
I got a new m.2 nvme 1tb drive like a week ago
naise
Data is neat
Biiiig data
one of these is for the database and webserver
the other is for idek yet
stuff :L
the i'l have a 4tb for backups and another 2tb for backups
Wow big disc
who pinged
You can scroll up to see ๐
o
Anyone to recommend cool plugins for survival servers?
Live demo of my Kotlin Script project called Bukkript for Bukkit Servers.
The focus is tooling, I want to be able to use the full power of the @intellijidea and @kotlin when creating simple Scripts. You can use NMS if you have the server jar
Details below.
https://t.co/lCos4E...
@gentle harness wut
wut wut? haha
Do that be an ad of some sort?
I'm confused on why you send that tbch, and while I don't need to know, in this case it sure does look like an ad
I remove the link and post the video here, if you want
Lucko help me with dependencies system that I was looking for this project
Pretty neat
Yeh, I kinda pretty happy with the result
And why would I use it over just writing my own commands with existing frameworks?
Is still a demo, and is to released yet, but is pretty cool
@unborn mantle you could write your on commands with existing frameworks, if they are in a maven repository.
Because this is Kotlin, you can do anything that a plugin can do
is compiled to Bytecode
so...
I'm aware. I write my plugins in Kotlin...
this DSL to create command is from a separed API of mine called KotlinBukkitAPI
I'm asking why would I use your system rather than just a regular command framework like MF
The point is not the command framework, this is not for create commands, is to create ANYTHING
you can build a menu, you can listen to events, you can do ANYTHING
you can use even the default Bukkit API for registring commands
the command DSL is just a easy way from my other API
I will get some prints to you
Ok, but I can do all that with the bukkit API anyway
So why would I go out of my way to use your framework
I'm not trying to be an ass btw, I genuinely would like to know why I should or should not use this
This is all foreign to me since I have absolutely no idea how to code in java lol
@velvet swan yeah I can tell you dont, especially since were on about kotlin
xD
Like, if you have a server, and you want to have just one thing, you can add it to one of your plugins
like, disable weather in a Prision server
but the same plugin that disable weather you are using in the Factions server
you can make configurable and disable in the configuration
but weather is just a example
sometimes you just want little things to add
in this is for the script in kotlin
Yeah but, my point is, to me atm that looks useless. I can do all of what your example shows in about as many lines using MF, and it probably has more features
write full performant code (compiled to bytecode) for do simple things, like a custom menu that have more logic
I'm gonna hop back in #support-1 lol
What is MF?
(compiled to bytecode)
What else is it gonna be compiled to lol.
MF is a command framework, MF-GUI is a GUI framework
what's the full name just out of interest?
The point of the Bukkript is not the be a framework to build stuff
Matt's Framework
The point is to be a script system that has Tooling
You can do that with MF, sure, but you will need to do in a plugin
With Bukkript, you can still use MF, but in a Script
Wait a second
Define script for me. How are you loading these scripts
Is this taking Skript and making it Java, since Skript takes Java and makes it Skript?
I'm compiling it and loading in a new classloader @unborn mantle
Ok good
hahaha Skript
That would be stupid tbch
Skript is a sin
This is LIKE a plugin, but in one file
catch a boomer up. tbch?
fuck skript lol
and that you don't need to compile
To be completely honest @velvet swan
Skript deserves to be hit by a truck and fall into an endless pit of hell
the Bukkript will compile and cache the result when the server starts
oh why not just tbh xD
Now you understand @unborn mantle ?
kids and their fancy text lingo
Although to be fair, skript does have it's place (small simple custom things i.e. a simple command)
well yes I'm aware
Sort of, but not really the use cases. People who cant code will use Skriot, which I despise. Or, people that can code, will make their own plugins
This is the point, you don't lose a powerful language and performance
You can though
yeah exactly kat
That's the thing
I can code in anything but java XD
if anyone has pointers for making a minecraft plugin, im all ears tbch
In ur lib I could write a while loop that infinitely blocks. That's not efficient or performant
Yeh, but the point is for small things, people that don't know to code, could start learning it through this
I dont see how you can claim it will be
In ur lib I could write a while loop that infinitely blocks. That's not efficient or performant
same applies for bukkit and skript
Yes you could, but you could do that in plugin as well
yes that
Bukkit vs Skript
Yep, but I'm talking about this comment specifically
This is the point, you don't lose a powerful language and performance
You can lose all the performance of Kotlin (which, btw, is slightly slower than Java due to the native null safety)
slightly
The point of the Bukkript is not to you stop writing Plugins, is to do small things with a powerful language
I have a private plugin of mine for Quests, the quests have HOLE DSL structure to create
And I use the Bukkript to create the quest for my server
Is it Skript but in Java
I don't create a new type of "script" in a config file like MyCommands
Like how it should have been done
Overall I dont really see a use case for your library. I'm sure someone will find it interesting, but like I said, people who dont code will probably default to skript rather than learning Kotlin in your lib, by which time they could make their own plugins.
Skript that not suck
Oh I c
Well it may have a use case but Skript is certainly more popular and at that point why not just use kotlin?
I have a friend that start developing for Skript, and know he develops Kotlin and have a BIG Discord Bot
I'm not exactly sure what that was meant to convey to us
This project can help people to learn develop
because is much easy to just create a file and open the server
Was that a 2) ?
To sync data between servers, you need to connect each LuckPerms plugin to the same database (for example MySQL) and set up a messaging service.
No, it cant. Providing people a way to write shorter code will most likely reduce the quality of their code and turn them against conventions. For learning to code in a language, that's not what you want.
Is opensource and write in kotlin
And my friend start develop
with Skript
Is not write shorter code, have libraries to help with that
Is to have a simple envroment
which isnt going to help them learn a langauge, if you dont teach them the core principles first
Bukkit plugin for disable weather -> bukkit dependency, plugin.yml, main class, JavaPlugin extension and Listener, onEnable, register listener, create a method with a magic @EventHandler, compile
Main classes should not implement Listener
don't the Bukkit ecosystem at the moment
Or contain events
I know that
But is just example of a simple plugin
in Bukkript is just this:
event<PlayerJoinEvent> {
player.sendMessage("Hello!")
}
see also IJ's Minecraft Development plugin, generates the entire env with just a small form that asks for the basic info
Yes, they do
But the difference is that you need to know the stuff that is generating for you
But what I'm trying to get at here, is that if people want to learn to code their own plugins in Kotlin and go to your lib rather than actual guides and documentation, they wont be following good practices, naming conventions, or really how to interact with much of the API at all
well for the boilerplate stuff i.e. plugin.yml, you don't really care about it
you do not need to learn my API, you could use just Bukkit API
Anyway, its 3 am for me, I'ma go get some sleep
doesnt promote because is much simpler to use it
I feel that
Skript is for pussies
Do you do the java-ing thooo
Java all the way ๐
Wait are you asking if I code?
Cause I do occasionally, but I cant say I'm amazing at it either but I can code fairly simple plugins pretty easily. Never attempted something big
Anyone to recommend cool plugins for survival servers?
preferably premium
1.16.1
Spawn protection
and that's about it really
Do you need people to fly on a survival server?
Anyone to recommend cool plugins for survival servers?
preferably premium
1.16.1
@gilded nova BRO YOU ask this like every hour I SWEAR lol
@gilded nova BRO YOU ask this like every hour I SWEAR lol
@gilded nova LOL bet
Hahaha
Anyone happen to know how can I get rid of players crafting a book and quill? (to avoid dupes)
Youโll most likely need a plugin that lets you tweak crafting recipes
Then you could block that recipe from being crafted
Worldguard
It will let you restrict items
i.e you can hold it
but not craft it
or you can not even craft it at all
e.g [tnt] ignore-perms=worldguard.allow.tnt on-use=deny,tell
Deny's usage/placing of tnt, tells the player that they are not able to use it.
So i have a new server
amd my scoreboard says:
%ping%
but its not shoeing my ping
ping me to help
where could i find a builder for my server?
but its not shoeing my ping
@gilded nova using the 'pinger' expansion for papi
yeha i got it already thanks though
gross
whats ur sr
and who do u main
tracer is one of the hardest characters to master, and its even harder to get into top 500 with her, don't know why you said gross? ๐ค
probs hardstuck masters player ๐
Imagine playing Overwatch
?
Does anyone know a online list of mc questions in a line if u know one ping me DM me that
I'm not talking about a trivia but a big list of minecraft questions to. Put in my bot so when a person does!topic it. Picks a random. Question and tells it
No one is active here I think
Anyone knows???
no.
This is off-topic
Yeah I don't think its luckperms
Last time I got told to put crashes in here. Incase someone knows whats going on
Basicly it closes the server whenever theres no one online. Everytime I try to log in after logging off. I have to restart the server.
Wait I think I found it myself. maybe citizens has an update
Well, I don't think its citizens. Updated it and the server is still crashing. Its also at 5 tps
latest paper version?
@modest compass okay ben i mess with luckperm and it not as bad anymore but it still not as easy as pex so
Hey MingolinaX! Please don't tag helpful/staff members directly.
sorry clappy i have to tell him something
Does anyone know how to fix this? Error:(73,44) java: diamond operator is not supported in -source 1.5 and Error:(23,51) java: lambda expressions are not supported in -source 1.5 etc, I'm getting this error when trying to compile a maven project.
Hey, do you guys have a good list of hub plugins I could use for 1.8?
I'm just starting to go bungee and don't know about hub/bungee stuff
Hey i keep getting this error spammed in console and idk why [14:48:36 ERROR]: [UserInterfaceAPI] Error in onPacketInAsync()
No need to use caps lock @gilded nova
You need a tab plugin
And no I don't have any recommendations
Other certainly have
WHAT, WHO SAID THAT
sorry
okay ben i mess with luckperm and it not as bad anymore but it still not as easy as pex so
@south anvil in what way other than the limitation for oneโs thinking?
Time goes by sooo fast on the week ends
That's definitely a type of advertisement (for services) and as such does not comply with our #rules @gusty hawk. As a result I am removing the message with a reminder to please consider the rules.
Bruh pex is fkn whack compared to LP wdym
^ thatโs facts
@topaz palm WHACK
what's the best plugin to protect chests? I've installed EssentialsX, Vault and LuckPerms so if any of those offers this...
Lockette
@modest compass mainly remove is replaced with unset and prefix's are funky rn that mainly it
Hey MingolinaX! Please don't tag helpful/staff members directly.
sorry clappy i must tell ben because he ping me
@south anvil this is your final warning. The no ping rule exists for a reason, and it's precisely to not get pinged at all hours of the day
oh okay ben wanted me to respond :/
he kept ping me so
i thought it was ok to ping him back
Typically, if he is part of the conversation, sure, but doing so rather randomly and consistently, not so much... would be much better if you just said Ben, and he can see it whenever he's available
alrighty well we have diff timezoone and kept messing eachother
and he wont add me as friend and has me blocked can only chat here
i wont ping anymore
Anyone knows where you can find ppl that will hold text for you
i remember few years ago there was ppl typing your text on paper and running around lambo
Hold text?
how can i make it for players cant craft im making a rpg world and i dont want them to craft
Ban the placing/usage of crafting tables? Lol
yk how hard that would be in inforce that and that means i can use any crafting tables for decoration
Huh
Essentials AntiBuild or Protect has block based permissions
Worldugard can blacklist block placement, usage, holding, crafting etc etc..
Griefdefender would work great for that as well
the world guard isnt working that well was i went into survival and i was deopped and it didnt work
oh
so this player_name
are you the owner of the server
yes
did someone make a prefix i think thats what their called
hmmm ?
so how ?
i have deluxechat
but i need rank ?
is good
but why name ?
- '&6Name: %player_name%'
So what do you need help with?
You need to ask a full question
Please translate from Arabic to English using google
ok wait
how do i turn off block selection like in the hypixle hub?
Gamemode adventure?
but i need people to be able to pvp
Gamemode adventure does not prevent pvp afaik
oh okay ty
Why do do you want to hide?
no lol
what ?
bukkit.command.plugins permission, set to false
Laarryy why you tell him there is no reason as per BrainStone's blogpost
There is indeed 0 reason
?
it's totally pointless
it's not completely pointless because he needs to hide skript to make sure that people don't see it and get scared away
You're trying to do wayyy to much
you need a tab plugin
you need to configure it properly
@dawn sun Are you trying to sort the tablist by rank?
Where are you from?
saudi arabia
Like this for example?
yes of course
@dawn sun
ูุง ูู
ููู ูุนู ุฐูู ุจุงุณุชุฎุฏุงู
LuckPerms ููุท. ูุนู
ู LuckPerms ูู
ุฏูุฑ ุฅุฐู ููู ูุณุงุนุฏู ูู ุชุนุฏูู ูุงุฆู
ุฉ ุนูุงู
ุงุช ุงูุชุจููุจ. ูู
ููู ุงุณุชุฎุฏุงู
ู ุฌูุจูุง ุฅูู ุฌูุจ ู
ุน ุงูู
ูููู ุงูุฅุถุงูู ููุงุฆู
ุฉ ุนูุงู
ุงุช ุงูุชุจููุจ ูุฅุฎุจุงุฑ ุงูู
ูููู ุงูุฅุถุงูู ููุงุฆู
ุฉ ุนูุงู
ุงุช ุงูุชุจููุจ ุจุงูู
ุฌู
ูุนุงุช ุงูุชู ุชุฐูุจ ุจุฃู ุชุฑุชูุจ.
ูู
ูู ุฃู ูุณุงุนุฏู ุงูู
ูููุงู ุงูุฅุถุงููุงู ุงููุฐุงู ุชู
ุฑุจุทูู
ุง ุฃุฏูุงู ูู ุฐูู (ุฃูุตู ุงูุฃูู). ูู
ูุนุชููู ุจูุงุฆู
ุฉ ุนูุงู
ุงุช ุงูุชุจููุจ ุงูุชู ุชุฑูุฏ ุชุนุฏูููุง ููู
ูู ุงุณุชุฎุฏุงู
ูุง ู
ุน LuckPerms ููุฑุฒ ุงููุงุฆู
ุฉ
You can't do it with just LuckPerms. LuckPerms works as a permission manager and won't help you with modifying the tablist. You can use it in combination with a tablist plugin and tell that tablist plugin which groups go in what order.
The 2 plugins I linked below can help you with that (I recommend the first one). They take care of the tablist you want to modify and can be used together with LuckPerms to sort the list
https://www.spigotmc.org/resources/tab-1-8-x-1-12-x.50065/
https://www.spigotmc.org/resources/nametagsplus-1-8-8-1-15-x-developerapi.46244/
Are you using this? https://www.spigotmc.org/resources/nametagedit.3836/
so ?
They've literally shown you how to do it
Go to your config file
so yeah, can someone help me again? luckperms again dont works. my plugins:
Define "doesn't work"
prefixes dont works
Not sure how this is off-topic either way but
!chat
LuckPerms is only able to send information to formatting plugins so that they display them properly. LuckPerms does not put the prefix in front of your name, you need a chat formatting plugin to do it, and you need Vault. Same goes for the tablist! If the information appears correctly when you run /lp user <user> info, LuckPerms is doing its job!
@real frigate
@dawn sun
you say me ?
Yes, go to your config
Look for SortPriority
groups.yml
so hard
people you want display at top
use 1
people u want to display below, use 2
and below that 3
so keep making number higher every time you move them down
so ?
so if you want this -
OWNER priority 1
ADMIN priority 2
NORMAL priority 4
yes
If you wanted to swap owner and normal you change this
wait
oh xd
low number means top, high number means bot.
1 goes first, 2 goes afterwards, etc
its cute nice emote @real frigate
hope that helps btw
Hello small kiddies
Hey, small kid
Oh i dont actually know anything about LP
oh xd
I just happen to be here and tried to help you understand
Hey, small kid
When did you get out of my basement?
ok hold on
they use another plugin to do it
Thats done through the chat plugins
so like essentialsX chat
i use ChatManager
use the " & " symbol followed by a number, like 2 5 6
it selects color
so ?
i know
but how
tab ?
where tab ?
i need tab
@real frigate
but how user ?
prefix
hmm prefix ?
then set how you want it displayed with the plugin you're using
oh
ok
!help
!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!cauldron
!chat
!colours
!commandequivalents
!commands
!config
!context
!default
!downloads
!editor
!errors
!essentials
!extensions
!extracontexts
!faq
!helpchat
!inheritance
!install
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!tracks
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki
!editor
LuckPerms offers an easy to use, powerful Web Editor, with which you can add, delete and change permissions of groups and players.
Man
download the tab plugin
get placeholderapi
add them to the tab config
Get vault
Add vault placeholder for prefix/suffix
add displayname for name
add everyrole you want
antone knows how to change a servers version?
change the .jar to the version you want?
@rigid widget
Hey Eclair62009! Please don't tag helpful/staff members directly.
help
Hey Eclair62009! Please don't tag helpful/staff members directly.
@outer vessel is right, please follow the #rules
Establishing SSL connection without server's identity verification is not recommended.
I put true / utf8 / false / false but it makes me the same message
utf8?
yes
if you put it in the right spot, the useSSL and verifyServerCertificate options will stop that particular error
i have no idea what you mean by utf-8
ok
Hmm this is weird. EssentialsX chat is updated to the latest and still not displaying the prefixes in the chat made in LuckPerms :/
what does /ess version show
okay so I have completed the perms on my server and I saved everything was fine and today I did /lp editor and the editor screen was completely empty all the progress i had made disappeared
Your permissions are stored, by default, in the luckperms-h2 file in the Luckperms folder
if you deleted that or the folder, your perms would be gone
if it got corrupted, there would be an error on startup
none of that happens, if its in the luckperms folder how do I bring all that info back into the editor screen again
then it's not in your LP folder, none of that info
I'm not sure what to say, LP can't delete things automatically
Its not the first time its happened
is there any way that I could have accidentally deleted anything
We connected a database for our custom plugin into the config file of luckyperms, would that have caused things to get deleted?
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.
gotta follow the first link
you switch back to h2, then follow those steps
Thank you for trying to help, I went back to a backup I made a couple minutes before the issue happened and everything is fixed
hey just wondering where I can find the permission so a player can press tab to autofill names or commands
what is it controlled by?
generally the server software and the client. i think it can be affected by permissions but i'm not entirely sure and there is probably some sort of caching that happens so it won't always be 100% accurate
basically i am no expert on the subject and have no idea what i'm talking about ๐
okay I will have a look to see where I can figure that out, thank you!
Im looking around for some help reading timings/Spark Sampler data. Ive been trying to pinpoint the issue and fix for quite some time now and its just been a really rough road. Hoping someone here knows a lot more than me
Timings: https://timings.aikar.co/?id=b96351a6a081462e92cab4b3b575f433
Spark Sampler: https://spark.lucko.me/#JcE259yROz
Nope remence
Plus my situation doesn't really allow the kind of server I would want to run
But maybe one day
Nope, but a quality one
That does cost quite a bit of $
I really donโt think my serverโs quality is outstanding which kinda sucks
I didnโt wanna pay for a dedi
The only way to make it better is to run it and try to make it better
Not much else to be done, but get experience
Yeah thatโs why Iโm in all these plugin discords
To learn off of peopleโs mistakes
And ask questions and stuff
Thanks, cya larry
what best tab pluigns ?
personally TAB imo
who best tab pluigns ?
youve asked this 3 times
ffs
Can Somebody German? I'm not good at Englisch ๐๐๐
Vielleicht
Kannst du?๐
Sieht so aus
Kann ich dich spรคter per pn anschreiben? Brauche sehr viel Hilfe๐๐
Bitte keine PN, und bei was brauchst du Hilfe?
Luckperms bungee
Da habe ich richtig verkackt, da geht fast nix ๐๐๐
Gibt es Plugins, die Bungee tauglich sind, dass der prefix im Chat und in der tablist angezeigt wird?
Klar. BungeeTabListPlus ist ziemlich gut fรผr Tablist, Chat-Plugins gibt's mehrere, habe persรถnlich aber immer BungeeChat benutzt
*TabPlugins natรผrlich auch, fand aber das BTLP immer die meisten Funktionen hat (auch wenn's ein bisschen schwer zum konfigurieren ist)
Habe einen root server und habe cloudnet drauf installiert, da es einfacher zum steuern ist. Habe in den configs cloudperms deaktiviert und luckperms bungee installiert, aber wenn ich auf cb1 gehe und etwas machen mรถchte (hab den owner rang mit *) steht da, dass ich keine rechte habe
i installed vault to my server but when i use /ess version command server says vault inst installed i shutdown my server an re open but still i have the same error i have vault in my plugin folder
how can i install vault
check for startup errors
how can i do that
see your startup logs for the word error...?
kรถnnen wir sprechen Tobi?
@glass gulch Since most players from my server is from Asia, so a server located in Asia will be better
The latency is not great too...
did someone set it up for you?
it depends on what package you got
if it's a full dedicated or not
says you can rent out 25, 50 , 75 or 100% of the server
Thanks!
Lol
Hey ASMR ZaidX2_! Please don't tag helpful/staff members directly.
who can speak german and can help me set up luckperms bungee? for me it doesn't work the way it should be
is there a plugin to help with chat formating ?
deluxechat
!chat second link
LuckPerms is only able to send information to formatting plugins so that they display them properly. LuckPerms does not put the prefix in front of your name, you need a chat formatting plugin to do it, and you need Vault. Same goes for the tablist! If the information appears correctly when you run /lp user <user> info, LuckPerms is doing its job!
any chat plugin that support vault will work
vault ?
do you have essentialsXChat?
oh no i dont it works with luck perms i assume?
no ?
@mighty mortar not sure what you mean
@dawn sun if you are using deluxechat:
HelpChat (DeluxeChat, PAPI, and General): https://discord.gg/FtArYRQ
for the love of god don't use mcpro
they're constantly down and have loans of FTP issues
they ignore the fuck out of you and will tell you to go fuck yourself if your server is forced shutdown for a week straight
all while threatening to ban you if you ask questions through their live chat because the ticket never gets responded to. Literally, 6 days server forced shut down without a single reply to 5 inquiries
stay the hell away
they switched owners about a yr ago and then went to shit straight after
Hey ASMR ZaidX2_! Please don't tag helpful/staff members directly.

Hab luckperms bungee und habe mir * gegeben aber kann weder op noch gamemode nutzen
Umm rankup plugin
no no no
And citizens
i mean when peopl buy rank
No
rip
That is the easiest
i dont think so
I have a prefix and i have chatex but It doesnโt Show it
Do you have vault?
Ok anyone have ideas
Allows permissions/groups/prefixes/etc to be assigned easily based on certain DiscordSRV states.
More information about contexts can be found here: https://github.com/lucko/LuckPerms/wiki/Context
T...
I have a survival server
click on that
Either I believe, also up to the chat plugin you use
Luckperms won't display hex colours unless you use the tedious bungee format. However a compatible chat plugin will, if you use the format it has set. It's up to each chat plugin to set the format. For example essx is &#rrggbb iirc
What i mean when I say LP won't display it, is it won't show properly in the lp user <name> info command etc
help me how do i use to make store like hypixel does?
which store?
I wonโt tell you here, alas. I'm not good at writing personal accounts
?
Sorry, I am writing through a translator
I wonโt be able to help with your problem
Everyone out here trying to be like the next Hypixel lol
@spring zinc they use xenforo (I think)
alr ty
I would suggest switching to waterfall too lol.
its the paper fork of Bungeecord
I mean not that Bungeecord is bad, but if theres something more optimized may as well use it
i need help
I need help, I don't know how to remove a prefix from a player, does anyone help me?
if anyone knows what the problem is, help me
@static jetty please don't cross post!!
Cyber you shouldnt post the same things in all channels
you've posted that in every channel. first warning
check the player group
im not sure what exactly you mean from just that line but check they are in the correct group
i need help
@rose portal is the problem his name colour?
/lp user carlosmax2273 meta setprefix โญ
i alr install essencials chat
@rose portal I am have de ControlChat
oh
I use ChatManager but they should all be fine
hablas espaรฑoรฑ?
Sip
Hola
sabes algo de configurar servers?
Daniel, you can simply remove that prefix using i believe unset instead of set
or remove it through the LP editor and find the prefix under the user permissions
yes vault is needed
oh okay
and before i install vault
I didnt realise why chat wouldnt work properly until i saw vault wasnt actually installed
Vault makes other plugins work
/lp user Carlosmax2273 meta unset <Nodo> [Context]
Que pongo en el "Nodo"
Y en el context" ?
What do I put in the node, and in context?
It does not let me
try use the editor instead
click users instead of groups, find the player, and look for prefix under the permissions list
delete it and save
@static jetty Maybe if you use the correct command it will work.
!commands Look under the meta section
Find all of the available LuckPerms commands on the wiki.
โ
THANKS BRO
!errors (copying link elsewhere)
Here's a page with some common storage system errors.
?
!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!cauldron
!chat
!colours
!commandequivalents
!commands
!config
!context
!default
!downloads
!editor
!errors
!essentials
!extensions
!extracontexts
!faq
!helpchat
!inheritance
!install
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!tracks
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki
!pasteit
Seeing a paste of the problem makes everything so much easier! Use https://bytebin.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!
analog error
i checked wiki
not help
Luck help pls
Last version
Database - localhost
!errors
Here's a page with some common storage system errors.
the errors simply means LP cant see/connect to your database
uh
anyone knows how to get a some sort of 'FactionsMoneyDepositEvent'
I mean the api doesn't have one, been looking for a solution how to 'make' one
still waiting for turbo to hit grandmaster ๐
not really
so u dont watch any of the 4.5k streamers?
no i prefer to play ๐
wtf ... ๐ฎ
ur missing out so much
when you watch them, you gain knowledge, and understand how they play to reach the rank
it's more than just for entertainment
it's actually interesting and engaging
lookup kabaji for example
one of the best tracers rn
guess ur right, luckperms ๐
i have like 400 hours on genji and still suck so ya know ๐
if i really wanted to i'd get in touch with a coach or something but i'm not that serious about it
yeah it would be nice to play at higher ranks but whatever lol
improving & grinding is always a mindset, in any game, time is just an obstacle and not real ๐
idk i feel like games are more fun when your improving, rather than playing for fun, must be different mindsets
true, but work makes it more real ๐
oh i totally agree with you
i just don't have the drive
i used to but i get salty very easily and give up so lmao
my highest rank is support and i don't really want to be a support main anymore
unlucky man, top 500 is a shitshow, but it's fun when you meet all those other top tier players, and fight them, it becomes more of a sleepover once u hit gm/top 500, you get someone on the opposite team you seen many times before, and you just fuck around, it's hella chill ๐
plus i feel like you don't really improve when you're constantly playing with people in the same skill range as you. that's the whole "elo hell" mentality i guess.
yeh but when u get the time, watch kabaji, even for fun, he's one of the nicest, most informative, skillful player, I've seen on tracer & probably on other heroes as well. his videos are a lot different compared to other gaming youtubers, it's just chill, idk the vibe is just good
at the end of the day it's a team based game so i can't rely on individual skill anyway
๐
"Reinhardt wtf are you doing!!! Charging into the enemy's spawn is never okay!! Mercy, pocket me pls. Tracer stop getting stun by mccree!! omg my team is so stupid, i should be in gm!!"
wow it's like you're in my head
reinhardts bind their charge key to left click in lower ranks ๐
Ok, hi.
Im trying to set up a group that can use only spectator and survival and not creative. I have set nukkit.command.gamemode.creative to false but it seems that I need to have essentialsnk.gamemode set to true to be able to switch gamemodes. When I have essentialsnk.gamemode on true, the group can use all gamemodes even though nukkit.command.gamemode.creative is false. Do you know how I can solve this?
!verbose then, see what permission nodes are checked
LuckPerms provides a verbose command to help you find out what permissions a command/plugin is checking.
Have you looked for a Discord server for support?
yes
Then ask if it's the right place...?
And it told me what I knew that essentialsnk.gamemode is controlling all gamemode changes.
the verbose I mean
Then either the plugin can't do that or there's a config settting
Alternatively check if you can disable the gamemode command from that essentials plugin
How would I do that?
Yes and there isnt really a config for it
Then that's how it is
Do you know of any other plugin that can manage gamemodes?
Only thing you can do is find a way to get to their plugin support
Do you know of any other plugin that can manage gamemodes?
@safe summit for nukkit?
No. Especially not for Nukkit
You're welcome
Ok, I found a plugin that can have gamemode commands but it seems that EssentialsNK is still taking control over the commands. Is there away to give a plugin higher priority to another so that it uses this other plugin instead?
Tobi, kรถnntest du mir bitte bei einer einstellung helfen?
'lp user <user> permission set DeluxeTags.Tag.ez true'
I have placeholders installed is there a player variable you support?
%player% dosnt work
can you help or should i reach vouchers support?
That depends on the plugin that ends up running the command
As I mentioned, reach out to their support
ok
thanks
https://github.com/badbones69/Vouchers/wiki/Placeholders
It says %player% works
does luckperms support %player% ?
'lp user %player% permission set DeluxeTags.Tag.ez true'
Should this work?
Reach out to their support
there support sucks u guys take 1 sec they are taking minutes ):
Well keep in mind it's all volunteers
no one is obliged to help you unless you've actually paid for a service that includes support ;P
just gotta be patient with these things
!colour
Sorry! I do not understand the command !colour
Type !help for a list of commands.
!color
Sorry! I do not understand the command !color
Type !help for a list of commands.
!colours
Hello, Are you guys support for LuckyPerm plugin or Am I wrong?
#support-1 or #support-2 for LuckPerms support.
!help
!advanced
!api
!argumentbased
!ask
!bulkupdate
!bungee
!cauldron
!chat
!colours
!commandequivalents
!commands
!config
!context
!default
!downloads
!editor
!errors
!essentials
!extensions
!extracontexts
!faq
!helpchat
!inheritance
!install
!locale
!meta
!migration
!notworking
!nowildcard
!pasteit
!permissions
!placeholders
!selfhosting
!stacking
!storage
!suggestions
!switchstorage
!sync
!tracks
!upgrade
!usage
!userinfo
!verbose
!weight
!whyluckperms
!wiki
!sync
To sync data between servers, you need to connect each LuckPerms plugin to the same database (for example MySQL) and set up a messaging service.
!notworking
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.
!download
You can download LuckPerms for Bukkit/Spigot, BungeeCord, Sponge, Nukkit and Velocity.
habe chatex auf meiner lobby, und da klappt es mit dem prefix, also, dass es im chat angezeigt wird. Beim cb01 aber ist auch chatex drauf, aber der prefix wird im chat nicht angezeigt. Hat jemand eine idee?
da ist vault drauf
Dann weiร ich es nicht
kannst es ja selber mal probieren
Ja. Mach ich aber nicht
I need help I looked on the lp wiki and I did all I could but it still does not show up next to my name
I have vault and essentials chat
Yea I have all of that
Does the prefix show when you run /lp use <user> info?
yes it does
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.
ok thanks
You're welcome
Anyone here kinda familiar with Skript?
Just ask your question
why does this not work https://hastebin.com/iditolegif.coffeescript
expected: message, what happens: nothing, it lets the user use the character
Hey what is a good portal plugins for paper servers
To teleport between different serves
@earnest willow You need them running on Bungee/Waterfall first, then use something like SimplePortals
Ight so is this for LP support only or does it also help Pex
its off topic my guy
if anyone knows your problem they can help in this chat
But i would recommend if you use Pex to simply migrate to LP (unless thats what you actually need help with)
LP is a bit hard for me need to learn that
This server, in general, doesn't know much about pex because it's LP support. While folks may try and help we don't really have full resources to properly aid with pex
The LP wiki is incredible and will help you learn LP, among several other videos online
yeah fair enough, but zml just said to come here :p
@celest dove do you have more than 1 server?
nope
Just use LP
Okay then it should be very very simple for you
!usage
Here's a guide to help users understand and use LuckPerms for the first time.
mmmm
!whyluckperms
Why should you choose LuckPerms? Read here to find out.
let me take my perm nodes real quick
If everything is already setup on Pex
then its fine
you dont need to manually copy perms
o?
!migration
Learn about the process of migrating from another permission plugin.
LP has its own migration tools. You just need to download LP, restart server properly once
Once LP is installed you can export your Pex perms, remove pex, and then import them into LP.
Not quite
Take a look at the wiki for the steps but it doesn't involve an import/export
eh?
I just came here because console said pex was fucked, let me migrate to lp and see if im having the same problem
Just look at the wiki I linked lol yoshy the actual steps are on there


