I downloaded a texture pack (https://bdcraft.net/downloads/purebdcraft-minecraft/) for Minecraft Java Edition. Spoiler: TexturePack Zip subfolder structure Code: └───assets ├───minecraft │ ├───blockstates │ ├───font │ ├───lang │ ├───mcpatcher │ │ ├───cit │ │ │ └───elytra │ │ ├───colormap │ │ ├───ctm │ │ │ ├───extra_of │ │ │ │ ├───bricks │ │ │ │ │ ├───brick │ │ │ │ │ │ ├───cap │ │ │ │ │ │ └───sandstone │ │ │ │ │ │ └───cap │ │ │ │ │ ├───cobble │ │ │ │ │ │ ├───cap │ │ │ │ │ │ └───sandstone │ │ │ │ │ │ └───cap │ │ │ │ │ └───sandstone │ │ │ │ │ ├───red │ │ │ │ │ │ └───cap │ │ │ │ │ └───yellow │ │ │ │ │ └───cap │ │ │ │ ├───chiselled │ │ │ │ │ ├───quartz │ │ │ │ │ ├───red_sandstone │ │ │ │ │ ├───sandstone │ │ │ │ │ └───stone │ │ │ │ ├───endframe │ │ │ │ │ ├───side │ │ │ │ │ ├───side_alt │ │ │ │ │ ├───top │ │ │ │ │ ├───top2 │ │ │ │ │ ├───top2_alt │ │ │ │ │ └───top_alt │ │ │ │ └───stone │ │ │ │ ├───sandstone_tiles │ │ │ │ └───tiles │ │ │ ├───glass │ │ │ │ └───frame │ │ │ ├───hard_materials │ │ │ │ ├───brick │ │ │ │ ├───sandstone │ │ │ │ │ ├───chiseled_sandstone │ │ │ │ │ ├───cut_red_sandstone │ │ │ │ │ ├───cut_sandstone │ │ │ │ │ ├───red_sandstone │ │ │ │ │ └───sandstone │ │ │ │ └───terracotta │ │ │ │ ├───black │ │ │ │ ├───blue │ │ │ │ ├───brown │ │ │ │ ├───cyan │ │ │ │ ├───gray │ │ │ │ ├───green │ │ │ │ ├───light_blue │ │ │ │ ├───light_gray │ │ │ │ ├───lime │ │ │ │ ├───magenta │ │ │ │ ├───normal │ │ │ │ ├───orange │ │ │ │ ├───pink │ │ │ │ ├───purple │ │ │ │ ├───red │ │ │ │ ├───white │ │ │ │ └───yellow │ │ │ ├───minerals │ │ │ │ ├───diamond │ │ │ │ ├───emerald │ │ │ │ ├───gold │ │ │ │ ├───iron │ │ │ │ ├───lapis │ │ │ │ └───redstone │ │ │ │ ├───anim │ │ │ │ └───static │ │ │ ├───mushroom │ │ │ │ ├───brown │ │ │ │ ├───inside │ │ │ │ └───red │ │ │ ├───planks │ │ │ │ ├───acacia │ │ │ │ ├───birch │ │ │ │ ├───dark_oak │ │ │ │ ├───jungle │ │ │ │ │ └───alt │ │ │ │ ├───oak │ │ │ │ └───spruce │ │ │ ├───reeds │ │ │ └───transitions │ │ │ ├───0_clay │ │ │ ├───1_red_sand │ │ │ ├───2_sand │ │ │ ├───3_gravel │ │ │ ├───4_grass │ │ │ └───5_snow │ │ ├───line │ │ ├───mob │ │ │ ├───cow │ │ │ ├───creeper │ │ │ ├───enderman │ │ │ ├───ghast │ │ │ ├───illager │ │ │ ├───pig │ │ │ ├───skeleton │ │ │ ├───slime │ │ │ ├───spider │ │ │ ├───wolf │ │ │ └───zombie │ │ └───sky │ │ └───world0 │ ├───models │ │ ├───block │ │ │ └───_bdc │ │ │ ├───fences │ │ │ │ ├───acacia │ │ │ │ ├───birch │ │ │ │ ├───dark_oak │ │ │ │ ├───jungle │ │ │ │ ├───nether │ │ │ │ ├───oak │ │ │ │ └───spruce │ │ │ ├───pistons │ │ │ │ └───heads │ │ │ └───plank │ │ │ ├───acacia │ │ │ ├───birch │ │ │ ├───dark_oak │ │ │ ├───jungle │ │ │ ├───oak │ │ │ ├───spruce │ │ │ └───_all │ │ └───item │ │ └───_bdc │ │ ├───clock │ │ └───compass │ ├───optifine │ │ ├───cem │ │ └───gui │ │ └───container │ │ └───shulker_box │ ├───shaders │ │ ├───post │ │ └───program │ ├───sounds │ │ ├───item │ │ │ └───totem │ │ ├───mob │ │ │ ├───evocation_illager │ │ │ ├───villager │ │ │ ├───vindication_illager │ │ │ └───zombie_villager │ │ └───random │ ├───texts │ └───textures │ ├───block │ │ ├───3d │ │ ├───technology │ │ └───_bdc │ ├───block_alt1 │ │ └───_bdc │ ├───block_alt1_static │ ├───block_alt2 │ │ └───_bdc │ ├───block_alt3 │ ├───block_alt4 │ ├───block_alt5 │ ├───block_alt_static │ ├───colormap │ ├───entity │ │ ├───armorstand │ │ ├───banner │ │ ├───bear │ │ ├───bed │ │ ├───boat │ │ ├───cat │ │ ├───chest │ │ ├───conduit │ │ ├───cow │ │ ├───creeper │ │ ├───enderdragon │ │ ├───enderman │ │ ├───end_crystal │ │ ├───fish │ │ ├───ghast │ │ ├───horse │ │ │ └───armor │ │ ├───illager │ │ ├───llama │ │ │ └───decor │ │ ├───parrot │ │ ├───pig │ │ ├───projectiles │ │ ├───rabbit │ │ ├───sheep │ │ ├───shield │ │ ├───shulker │ │ ├───skeleton │ │ ├───slime │ │ ├───spider │ │ ├───turtle │ │ ├───villager │ │ ├───wither │ │ ├───wolf │ │ ├───zombie │ │ ├───zombie_villager │ │ └───_exof │ │ └───coloured_elytra │ ├───entity_alt │ ├───environment │ ├───font │ ├───gui │ │ ├───advancements │ │ │ └───backgrounds │ │ ├───container │ │ │ └───creative_inventory │ │ └───title │ │ └───background │ ├───item │ │ ├───3d │ │ ├───damaged │ │ ├───exof │ │ │ └───coloured_elytra │ │ └───_bdc │ ├───item_alt1 │ ├───item_alt2 │ ├───item_alt3 │ ├───map │ ├───misc │ ├───models │ │ ├───armor │ │ └───armor_alt │ ├───painting │ └───particle └───realms └───textures └───gui ├───realms └───title Unfortunately I don't know how to create a manifest.json file. I found this manifest and added it to my zip file. Code: { "format_version": 1, "header": { "description": "Tutorial Resource Pack", "name": "Tutorial Resource Pack", "uuid": "bc2a0bc9-e3a2-4702-9319-d4d3231dfdbc", "version": [0, 0, 1] }, "modules": [ { "description": "Tutorial Resource Pack", "type": "resources", "uuid": "891f5751-bb0e-47c6-91f0-fdc4e76949ef", "version": [0, 0, 1] } ] } (Code from https://minecraft.gamepedia.com/Tutorials/Creating_resource_pack_add-ons#manifest.json) If I start the server I get this error: Code: [17:41:38] [Server thread/CRITICAL]: Could not load resource pack "PureBD64.zip": Encountered ZipArchive error code 19 while trying to open /usr/games/minecraft/resource_packs//PureBD64.zip I think my config file is fine: Code: force_resources: false resource_stack: - PureBD64.zip Can someone please help me?
Yes, I think so too but I couldn't find any. I guess it must be possible to convert them from java edition
I downloaded that plugins https://github.com/onebone/EconomyS but I can't use them because they have API Level 4. What can I do now?
Meh, it's not really development related. According to "Where should my thread go?" it should go to "Plugin Help".
Thank you but now I get this error: Code: [Server thread/ERROR]: [English: couldn't load plugin. API not compatible] Konnte Plugin 'EconomyLand' nicht laden: Inkompatible API Version (Plugin benötigt folgende: 3.0.0-ALPHA7, 3.0.0-ALPHA8, 3.0.0-ALPHA9, 3.0.0-ALPHA10, 3.0.0-ALPHA11, 3.0.0-ALPHA12, 3.0.0-ALPHA13, 3.0.0-ALPHA14, 3.0.0-ALPHA15) [Server thread/CRITICAL]: Error: "Call to undefined method pocketmine\Server::getScheduler()" (EXCEPTION) in "EconomyAPI_v2.0.9-cd57afec.phar/src/onebone/economyapi/EconomyAPI" at line 308 Edit: EconomyAPI seems to be working but all the others (EconomyProperty, EconomyAirport and EconomyLand) not
Java texture pack structures and bedrock structures are WAY different. I found this website to be of some use, hope it helps other people Website