your current location:首页 > news>Configuration and instruction tutorial [FTBR] FTB RANKS MINECRAFT Game

Configuration and instruction tutorial [FTBR] FTB RANKS MINECRAFT Game

2024-12-10 17:45:12|Myriagame |source:minecraft skins

This tutorial is set by the author to use the CC By-NC-SA protocol.

I have not tried if the client does not install this MOD.

After the server starts, in the "World/ServerConfig/FTBRANKS" directory.Find the "Ranks.json" file (standard JSON structure, please pay attention to the comma when editing)

Power: Priority; if some players have multiple permissions, this parameter determines which authority group is effective (the larger the number, the higher the priority)

Condition: Application condition; applying this permissions group condition for players.Optional parameters: (ALWAYS_ACTIVE, OP, Dimension, Location, Spawn, FTBCHUNKS: Claimed_chunk) can be used to combine multiple conditions for combining multiple conditions

The Condition parameter, the official document said that most of the functions are not completed.Always_active and OP basically meet the needs.Always_active means that everyone will apply this permission group;

If this attribute is not configured, you can only add this permission group to the player through the/ftbranks ADD This instruction.

ftbranks.name_format: I won't say this, player name variable: {name}, supports color format symbol &.


The content of the right to add the right to the following is the instruction set listed in the file "Readme.txt" in the same directory (at the end I post a paragraph of example configuration for easy understanding).

After the editor is completed, save and execute/ftbranks reload loading configuration.

List of the ownership group:

/ftbranks list_all_ranks

Check the list of permissions group owned by a player

/ftbranks list_ranks_of

Check what players under the authority group

/ftbranks list_players_with

Add right to players

/FTBRANKS ADD

Remove the player's permissions group

/ftbranks remove


Example configuration, configure 4 permissions groups.

VIP authority group has Fly instruction permissions

Admin authority group has setting his own instruction permissions for the bystander (the permissions that did not switch him back to the survival mode, which means that as long as you enter the onlookers, you cannot come back)

DataPacks permissions can switch the game mode at will, which can execute the RELOAD instruction.

The MEMBER permissions are the default permissions group, and everyone will apply the permissions group, but there is no specific permissions content.

Configuration file content:

{{

"Member": {

"Name": "Member",

"Power": 1,

"Condition": {

"Type": "Always_active"

},

"Ftbranks.name_format": "<{name}>" ""

},

"Vip": {{

"Name": "vip",

"Power": 50,

"Ftbranks.name_format": "<& bvip {name} & r>",

"Command.fly": true},

"Admin": {

"Name": "admin",

"Power": 1000,

"Ftbranks.name_format": "<& 2op {name} & r>",

"Command.gamemode.spectator": TRUE

},

"Datapacks": {

"Name": "datapacks",

"Power": 999,

"Ftbranks.name_format": "<& 2 data package editor_ {name} & r>",

"Command.reload": true, True,

"Command.gamemode.*": true

}

}