#I have a problem with the manifest

1 messages · Page 1 of 1 (latest)

teal creek
#

The error say what you need to do

#

You're still use 1.0.0-beta, while the version now at 1.3.0-beta

flint sail
#

he might edited the wrong file

#

like the ones on global behavior packs folder

#

not on the local world folder

teal creek
#

That's why you should develop on development_behavior_packs, not on behavior_packs

flint sail
wanton bay
flint sail
wanton bay
flint sail
#

just read the logs carefully

wanton bay
flint sail
#

check your manifest inside your skyblock bp that is located inside your world

wanton bay
#

and i have to disable beta api

flint sail
wanton bay
#
{
    "format_version": 2,
    "header": {
        "name": "§a§l[§l§sSky§dBlock§a]§r",
        "description": "§ooriginal products",
        "uuid": "bc402479-c042-4fa9-b499-4befa96aee30",
        "min_engine_version": [
            1,
            20,
            0
        ],
        "version": [
            1,
            0,
            0
        ]
    },
    "modules": [
        {
            "type": "script",
            "language": "javascript",
            "entry": "scripts/main.js",
            "uuid": "3c3710d9-1c43-4169-8e90-5509016517b9",
            "version": [
                1,
                0,
                0
            ]
        },
        {
            "type": "data",
            "uuid": "8399f351-8978-4633-8b06-8507b9a9c2b1",
            "version": [
                1,
                0,
                0
            ]
        }
    ],
    "dependencies": [
        {
            "module_name": "@minecraft/server",
            "version": "1.4.0-beta"
        },
        {
            "module_name": "@minecraft/server-ui",
            "version": "1.1.0-beta"
        }
    ]
}```
flint sail
#

@wanton bay that should fix it

wanton bay
flint sail
wanton bay
teal creek
#

Did you have createland.js file inside gametests folder?

flint sail
#

if you're trying to update packs, then you should ask the owner of it

wanton bay
#
import { world } from "@minecraft/server";
import * as ui from "@minecraft/server-ui";

async function forceShow(player, form) {
    while (true) {
        const showForm = await form.show(player);
        if (showForm.cancelationReason !== 'userBusy') return showForm;
    };
};

const form2 = new ui.ActionFormData()
    .title("§dTworzenie")
    .body("§dCzy chcesz zalozyc wyspe?")
    .button(`§aTak`)
    .button(`§cNie`)

world.events.beforeChat.subscribe((e) => {
    const player = e.sender
    if (e.message.toLowerCase().startsWith(`!stworz wyspe`)) {
        forceShow(player, form2).then((test) => {
            switch (test.selection) {
                case 0:
                    player.runCommandAsync(`tp @s ~ ~10 ~`)
                    break;
                case 1:
                    break;
            }
        })
    };
});```
wanton bay
flint sail
wanton bay
#

only unfortunately used bridge

flint sail
#

may i see your main.js

wanton bay
flint sail
#

let me check your world file, send it

#

@wanton bay

wanton bay
flint sail
#

kindly make it quick, im bout'a sleep

wanton bay
flint sail
wanton bay
wanton bay
flint sail
#

why 2 files

wanton bay
#

I'm sending one now

wanton bay
flint sail
wanton bay
wanton bay
wanton bay
#

because there is nothing there

#

but in minecraft it is

flint sail
#

does mediafire warns about the files? maybe they removed it on your upload

wanton bay