Behaviour pakettien/Addonien asennus.

Ennen addoneiden asentamista, muista varmistaa, että ne ovat yhteensopivia oman palvelinversiosi kanssa. Farssi.net tarjoaa aina uusimman palvelinversion. Päivitysten yhteydessä jotkut addonit saattavat hajota väliaikaisesti. Mutta tarkkaavaisuudesta on aina hyötyä.

Muista myös, että jotkut behaviour packit käyttävät hyväkseen samoja tiedostoja. Ne eivät toimi yhdessä! Esimerkkinä, jotkut paketit voivat käyttää player.json tiedostoa. Vain ensimmäisenä asennettu paketti tulee toimimaan oikein!

Addoneiden asennus uuteen maailmaan:

  1. Pysäytä serverisi.

  2. Luo uusi maailma clientilläsi ja lataa kaikki addonit joita tahdot maailmassasi käyttää. Käytä "Resource Packs" ja "Behavior Packs" osioita "world creation menussa.
  3. Seuraa ohjeita, miten ladata oma bedrock maailma palvelimelle (ohjeet tulossa).

 

(käännöstä tulossa)

Installing addons onto an already existing world:

  1. Stop your server.

  2. Create a world in the Bedrock client and load all addons that you would like to use on your server.

  3. Export the world to somewhere on your computer.

  4. Right click the .mcworld file that was exported, hover over "Open With", then open the file with an unzip program of your choice like 7-zip or Bandizip.

  5. Extract all of the files and folders somewhere onto your computer.

  6. Open the world folder that was extracted onto your computer, and you should see these folders: behavior_packs, resource_packs, db, as well as a few loose files. NOTE: If the behavior_packs folder is missing, that just means that no behavior packs were installed on the world. The same goes for the resource_packs folder with resource packs.

  7. Login to your server with an FTP client like WinSCP.

  8. Upload the contents of the behavior_packs folder on your computer to the behavior_packs folder on your server. Repeat this process with the resource_packs folder if needed.

  9. Navigate to the worlds folder, then open the folder with the same name as your active world.

  10. Upload the world_behavior_packs.json and world_resource_packs.json files to this folder. The world_behavior_pack_history.json and world_resource_pack_history.json files can be skipped.

  11. Startup your server to load the addons.

Advanced: Installing addons onto an already existing world:

NOTE: We highly recommend giving the above sections a try first. The two methods above will work regardless of what format your addons are in, as long as you're able to import them into your Minecraft client.

 

Before getting started: if your addons are in .mcpack or .mcaddon format, before you'll be able to follow these steps, you'll need to extract the folders from inside these files. To do this, follow these steps:

  1. Right click the addon .mcpack or .mcaddon file on your computer, hover over "Open With", then open the file with an unzip program of your choice like 7-zip or Bandizip.

  2. Extract the folder addon folder to somewhere on your computer.

To verify that every extracted properly, open the folder that was extracted and you should see a manifest.json file along with other files and folders.

 

Setting up for installing addons:

  1. Stop your server.

  2. Login to your server with an FTP client like WinSCP, you can find our guide on how to use WinSCP.

  3. Upload any behavior packs to the behavior_packs folder on your server, and upload any resource_packs to the resource_packs folder on your server.

  4. Open the worlds folder, then open the folder with the same name as your active world.

  5. Right click anywhere in the empty area on the right of the WinSCP window that contains a list of your server's files and folders, hover over "New", click "File", then type in "world_behavior_packs.json" if you're creating adding behavior packs. Repeat this process if you're adding resource packs, but name the file "world_resource_packs.json". NOTE: If you already have these files, you can skip this step.

  6. Right click the .json files files that you created and click "Edit" to open the files in your system's text editor. We recommend using Notepad++. Be sure to keep these files open for the remaining steps.

Locating addon UUIDs and versions.

  1. Navigate to the behavior_packs or resource_packs folder on your server, open the behavior pack or resource pack you'd like to load, then right click the manifest.json file and click "Edit" and keep these files open.

  2. Copy the lines in the header that contain the uuid and the version. They'll likely look like this:

"uuid": "e65d24fc-3154-42be-915f-45b9005eea40",
"version": [3, 5, 0]

or this:

"uuid": "10017b89-cbdf-41f9-ba28-123abca8e07d",
"version": [
1,
0,
0
]

 

Adding your first addon to the .json files

1. Taking the uuid and version that were copied in the above section, paste them into the respective .json file. If you copied the uuid and version of a behavior pack, paste it into the world_behavior_packs.json file. The same goes for resource packs. If this is your first time adding a pack to the .json file, it should look something like this:

"uuid": "e65d24fc-3154-42be-915f-45b9005eea40",
"version": [3, 5, 0]

or this:

"uuid": "10017b89-cbdf-41f9-ba28-123abca8e07d",
"version": [
1,
0,
0
]

NOTE: If your version section takes up multiple lines, you can consolidate it by getting rid of the extra spaces and lines like this, however, you're welcome to leave it as is.:

"uuid": "10017b89-cbdf-41f9-ba28-123abca8e07d",
"version": [ 1,0,0 ]

 

2. Change the "uuid" text to "pack_id", then remove the comma at the end of the version line so that it looks like this:

"pack_id": "e65d24fc-3154-42be-915f-45b9005eea40",
"version": [3, 5, 0]

 

3. Add square brackets ("[" and "]") at the start of and end of the file along with curly brackets ("{" and "}") surrounding the addon information like this:

[
{
"pack_id": "e65d24fc-3154-42be-915f-45b9005eea40",
"version": [3, 5, 0]
}
]

4. Save the changes, then startup your server to load the addon!

 

Adding additional addons to the .json files

1. Inside the world_behavior_packs.json or world_resource_packs.json, add a comma after the last curly bracket, then create two more curly brackets just like you did with the first section. It should look something like this:

[
{
"pack_id": "e65d24fc-3154-42be-915f-45b9005eea40",
"version": [3, 5, 0]
},
{

}
]

2. Copy and paste the uuid and version from a manifest.json file into the blank space between the two new curly brackets, then rename "uuid" to "pack_id" and remove the comma at the end of the version section so that it looks like this:

[
{
"pack_id": "e65d24fc-3154-42be-915f-45b9005eea40",
"version": [3, 5, 0]
},
{
"uuid": "10017b89-cbdf-41f9-ba28-123abca8e07d",
"version": [ 1,0,0 ]
}
]

3. Repeat this process until you add all of the behavior or resource packs that you'd like to load on your server, then save the changes and restart your server to load the addons.

 

Running into problems with the addons loading?

Try copying the .json file that was edited and paste it into a .json parser like this one. If there are any json formatting issues, it'll tell you where the problem is so that it can be fixed.

  • 0 Bu dökümanı faydalı bulan kullanıcılar:
Bu cevap yeterince yardımcı oldu mu?