Natalie Trinket
AAdmincraft
•Created by Nuttapillar on 8/1/2024 in #questions
How to get working trial chambers in an older world?
I'm at a loss then 😭
16 replies
AAdmincraft
•Created by Nuttapillar on 8/1/2024 in #questions
How to get working trial chambers in an older world?
They're still inactive in fresh chunks?
16 replies
AAdmincraft
•Created by Nuttapillar on 8/1/2024 in #questions
How to get working trial chambers in an older world?
Sounds like regenerating via world edit is still wonky. I generally use MCAselector to remove the whole chunk or just expand the world border.
In either case, the whole chunk gets regenerated instead of just the blocks, that allows for the structure box to generate correctly as well. The old issue of world generation clashing has been fixed and you'll get a nice transition between old/new generation, so don't worry about massive walls or sudden oceans.
16 replies
AAdmincraft
•Created by riso on 7/29/2024 in #questions
assigning permissions on join based on CSV file?
Ah, yeah, that's out of scope for Minecraft Authentication.
You might be able to do this with Skript, but I don't have any direct advice on that.
It seems like you'd be dependent on being able to trigger the permissions event after they've used whatever method of email verification you landed on. It seems like it'd be a really easy plugin to make tbh.
I'm assuming that if they haven't verified their email online then they can't join the server, in which case all the plugin would have to do is this
1. When the player joins, check if the uuid exists in the SQL DB, if not then kick them.
2. If they do exist, check the year and format it into a luckperms group name
3. Check if the user has that group, if not then add it.
27 replies
AAdmincraft
•Created by riso on 7/29/2024 in #questions
assigning permissions on join based on CSV file?
It sounds like you're trying to grant permissions based on the user's status on something like Patreon. You'd be better off using the Minecraft Authentication mod/plugin than having the user manually verify their email when they join.
https://minecraftauth.me/
I made a companion Spigot plugin that allows you to grant roles based on the information Minecraft Authentication provides. If you're not running Spit/Paper, then you should be able to use the API calls I have in my plugin as an example for getting the information you need.
https://modrinth.com/plugin/minecraftauthenticationroles
27 replies