Ranks #542
Replies: 5 comments 5 replies
-
I agree, the In the
This is an example with only 3 nodes, 1 possible ranking-up path:
Sets the
For a given |
Beta Was this translation helpful? Give feedback.
-
|
Can you please create an example with just default -> verified? Using luckperms parent add command |
Beta Was this translation helpful? Give feedback.
-
|
I don't want the players to be placed in a none rank though. I just want it to make players verified through luckperms after 24 hours of playing as long as their current rank on luckperms is default |
Beta Was this translation helpful? Give feedback.
-
|
Would it be possible to change the autorank system to be more like the plugin on spigot? It's a lot more simple and will do wonders to help new server owners using fuji. The current system is more complicated than it needs to be. It should just link directly to luckperms like how autorank does and if the player has default, they auto get put to Verified using the luckperms command and play a broadcast, that's it |
Beta Was this translation helpful? Give feedback.
-
|
Do I use this instead of the previous code? This doesn't have any lp parent add command (that's the command to add a group) |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
I don't know how to setup this rank up config... It's a lot more complex than it should be compared to the autorank plugin on spigot.
All I want to do is let default players rank up to Verified after playing for 24 hours. Everyone who joins the server is auto in the default group of luckperms.
I don't know why there's all "on leave rank node" stuff, it makes no sense
This is my code:
{
"starting_rank_node_id": "default",
"no_rank_status_text": "[Passed Verified Rank]",
"graph": [
{
"enable": true,
"id": "default",
"display_name": "Default",
"description": "Current Rank:\nDefault",
"next_rank_nodes": [
"Verified"
],
"requirements": [],
"events": {}
},
{
"enable": true,
"id": "Verified",
"display_name": "Verified",
"description": "This is the first line.\nThis is the second line.",
"next_rank_nodes": [],
"requirements": [
{
"description": "Play for 24 Hours.",
"commands": [
"<=? %player:name% 1728000 %player:statistic_raw minecraft:play_time%"
]
}
],
"events": {
"on_enter_this_rank_node_commands": [
"lp user %player:name% parent add Verified",
"send-broadcast <#FFA1F5>Player %player:name% has played for 24 Hours and has become Verified"
],
"on_first_enter_this_rank_node_commands": [
"when-online %player:name% send-message %player:name% You have become Verified",
"when-online %player:name% give %player:name% minecraft:diamond 5"
]
}
}
],
"MOD_VERSION": "12.31.0"
}
Beta Was this translation helpful? Give feedback.
All reactions