mutiBackpack

mutiBackpack 1.0.5

Compatible API Versions
1.0.9
Contributors
Superice666
MutiBackpack
Multiworld backpack plugin with high degree of customization
Based on BlocklyNukkit!

What is it?
A multi world backpack plug-in with high customization, based on blocklynukkit.
You can group the world freely. Then players will have different backpack inventories in different groups' worlds and players will have the same backpack inventories in worlds which is in same gruops. All the worlds which aren't grouped by you will be grouped into "default"group.
How to install?
First install the blocklynukkit plugin, then purchase and download this post file , put it into the ./plugins/BlocklyNukkit folder and restart the server to complete the installation.
How to use it?
1. Grouping
Under the./plugins/mutiBackpack folder, there is a file named groups.json. This is a grouping configuration file. Edit this file to group.
The default should look like this:
JSON:
{
  "groups": [
    {
      "name": "test",
      "worlds": [
        "world"
      ]
    }
  ],
  "played": []
}
You don't need to care about the "played" array. Let's look at the "groups" array.
The groups array records the grouping rules. Each JSON object in the array is a group. You will see that the system generates a group object by default:
JSON:
{
      "name": "test",
      "worlds": [
        "world"
      ]
}
In the group above, name corresponds to the name of the group, and worlds corresponds to the world contained in the group. "worlds" is an array. You can add any world you want, just follow the rules of JSON syntax. For example, the following example adds a new group named g1, and two worlds named aaa and hello are divided into this group:
JSON:
{
  "groups": [
    {
      "name": "test",
      "worlds": [
        "world"
      ]
    },
    {
      "name": "g1",
      "worlds": [
        "aaa","hello"
      ]
    }
  ],
  "played": []
}
Also experience bar can be also divided into groups, to enable it, just add "xp": true! For example:
JSON:
{
      "name": "test",
      "worlds": [
        "world"
      ],
      "xp": true
}
2. Run
Please do not let your players join the server immediately, restart the server first.
Author
superice666
Downloads
2,081
Views
2,904
First release
Last update
Rating
5.00 star(s) 1 ratings

More resources from superice666

Latest updates

  1. 1.0.5

    mutiworld-Experience supported!
  2. 1.0.4 Released

    Fix the bug that causes players' inventory cleared.
  3. 1.0.3 fix bugs

    Version 1.0.3 has been updated: Fix bug: 1. Players through the backpack synthesis transfer...

Latest reviews

It works well! Great! :D
One unfortunate thing is that each group shares an exp. Xd
Top