开启辅助访问     
收藏本站

站内搜索

搜索

Minecraft(我的世界)苦力怕论坛

[游戏相关] 这怎么改啊 (sapi)

 发表于 2024-8-11 13:22:11 来自手机|显示全部楼层|阅读模式 IP:山东省
30铁粒
本帖最后由 qzusergjf 于 2024-8-11 14:11 编辑

 灵魂出窍4.mcaddon(446.85 KB, 下载次数: 4) 为什么老是报错呢
  1. import { world } from '@minecraft/server';

  2. // 定义一个对象来存储玩家的坐标点
  3. const savedLocations = {};

  4. // 保存玩家坐标点的函数
  5. function savePlayerLocation(player) {
  6.     const location = {
  7.         x: player.location.x,
  8.         y: player.location.y,
  9.         z: player.location.z,
  10.         dimension: player.dimension.name
  11.     };
  12.     // 使用玩家名作为键来存储坐标
  13.     savedLocations[player.nameTag] = location;
  14. }

  15. // 传送玩家到保存的坐标点并删除坐标点信息的函数
  16. function teleportAndRemoveSavedLocation(player) {
  17.     const location = savedLocations[player.nameTag];
  18.     if (location) {
  19.         // 获取正确的维度对象
  20.         const dimension = world.getDimension(location.dimension);
  21.         // 执行传送
  22.         player.teleport(dimension, { x: location.x, y: location.y, z: location.z });
  23.     } else {
  24.     }
  25.     // 删除保存的坐标点信息
  26.     delete savedLocations[player.nameTag];
  27. }

  28. // 监听玩家聊天事件
  29. world.afterEvents.chatSend.subscribe((event) => {
  30.     const { message } = event;
  31.     const player = event.sender;

  32.     // 玩家输入“开启”时保存当前坐标点
  33.     if (message === "开启") {
  34.         savePlayerLocation(player);
  35.         // 执行开启功能的相关命令
  36.         world.runCommand('function jh');
  37.     }

  38.     // 玩家输入“关闭”时传送到保存的坐标点并删除坐标点信息
  39.     if (message === "关闭") {
  40.         teleportAndRemoveSavedLocation(player);
  41.         // 执行关闭功能的相关命令
  42.         world.runCommand('function gb');
  43.     }
  44. });
复制代码

报错内容
  1. [Actor][error]-我的世界 | actor_definitions | /storage/emulated/0/Android/data/com.mojang.minecraftpe/files/games/com.mojang/minecraftWorlds/xUW4ZlhxIAA=/behavior_packs/灵魂出窍[V1 | pa:npcts | minecraft:entity | components | pa:npcts's Component minecraft:transformed was not parsed.

  2. [Localization][warning]-Line: 70 - Invalid lang file format. New line character was found while parsing key: '//items'.

  3. [Localization][warning]-Line: 75 - Invalid lang file format. New line character was found while parsing key: '//spawn eggs//'.

  4. [Localization][warning]-Line: 113 - Invalid lang file format. New line character was found while parsing key: '//entities//'.

  5. [Localization][warning]-Line: 151 - Invalid lang file format. New line character was found while parsing key: '//new furni//'.

  6. [Localization][warning]-Line: 189 - Invalid lang file format. New line character was found while parsing key: '///'.

  7. [UI][warning]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: selector_area | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: settings.selector_stack_panel | UI Control: world_selector_pane | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/selector_area/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/settings.selector_stack_panel/world_selector_pane/game_button | Expected variable not found in ancestor tree: '$education_edition_china'

  8. [UI][warning]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: selector_area | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: settings.selector_stack_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/selector_area/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/settings.selector_stack_panel/addons_selector_panel | Expected variable not found in ancestor tree: '$education_edition_china'

  9. [UI][warning]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: world_sections | UI Control Key: game_section@world_section.game_section | Expected variable not found in ancestor tree: '$ios'

  10. [UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | UI Control: available_packs_section | UI Control: empty_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/available_packs_section/empty_panel/to_store_button | JSON UI parse failure: Must define a binding name!

  11. [UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | UI Control: available_packs_section | UI Control: empty_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/available_packs_section/empty_panel/to_store_button | Data bindings must have at least one property to bind!

  12. [UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/unowned_packs_title_button | JSON UI parse failure: Must define a binding name!

  13. [UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/unowned_packs_title_button | Data bindings must have at least one property to bind!

  14. [UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: addon_section | UI Control: available_packs_section | UI Control: empty_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_vi
复制代码

最佳答案

查看完整内容

因为连不上npm官网,只修了一点点bug
苦力怕论坛,感谢有您~
 发表于 2024-8-11 13:22:12 来自手机|显示全部楼层 IP:山西省
因为连不上npm官网,只修了一点点bug
 灵魂出窍.mcaddon(543.82 KB, 下载次数: 2)
2#2024-8-11 13:22:12收起回复
qzusergjf2024-8-11 15:12IP:山东省
回复
大体问题解决了吗
qzusergjf2024-8-11 15:16IP:山东省
回复
好谢谢
指令凋灵回复qzusergjf2024-8-11 15:16IP:山西省
回复
我这只有几个报错(sapi的报错,我1.21.30,api和你那个版本有区别)
苦力怕论坛,感谢有您~
回复

使用道具举报

 发表于 2024-8-11 13:25:14 来自手机|显示全部楼层 IP:山西省
本帖最后由 指令凋灵 于 2024-8-11 13:26 编辑

sapi没错(sapi报错是以[Scripting]开头的)
3#2024-8-11 13:25:14回复收起回复
苦力怕论坛,感谢有您~
回复

使用道具举报

 发表于 2024-8-11 13:32:20 来自手机|显示全部楼层 IP:江西省
在文件中,出现了换行字符,这不符合JSON格式的要求。需要检查并修正这些行,确保它们是有效的JSON格式。
4#2024-8-11 13:32:20回复收起回复
苦力怕论坛,感谢有您~
回复

使用道具举报

 楼主|  发表于 2024-8-11 13:42:51 来自手机|显示全部楼层 IP:山东省
指令凋灵 发表于 2024-8-11 13:25
sapi没错(sapi报错是以[Scripting]开头的)

ui的问题是吧,问题是我文件里也没有有关ui的啊?
5#2024-8-11 13:42:51回复收起回复
苦力怕论坛,感谢有您~
回复

使用道具举报

 楼主|  发表于 2024-8-11 13:44:14 来自手机|显示全部楼层 IP:山东省
指令凋灵 发表于 2024-8-11 13:25
sapi没错(sapi报错是以[Scripting]开头的)

一开始没改这个文件的时候没报错,改了以后接着报错
6#2024-8-11 13:44:14回复收起回复
苦力怕论坛,感谢有您~
回复

使用道具举报

 发表于 2024-8-11 13:51:19|显示全部楼层 IP:广东省
一、我没看到 错误日志 Script API 的报错。
二、翻译文件的注释是“#”开头。
三、如果你制作的包没有 UI 文件的,那么涉及 UI 的报错可能是其它材质包的。因为 MC 的错误日志(好像是)将所有包的错误收集到一份文件里面。
7#2024-8-11 13:51:19回复收起回复
苦力怕论坛,感谢有您~
回复

使用道具举报

 楼主|  发表于 2024-8-11 13:52:41 来自手机|显示全部楼层 IP:山东省
Sakarwei 发表于 2024-8-11 13:51
一、我没看到 错误日志 Script API 的报错。
二、翻译文件的注释是“#”开头。
三、如果你制作的包没有 UI  ...

json的文件不是//吗?
8#2024-8-11 13:52:41收起回复
Sakarwei2024-8-11 13:54IP:广东省
回复
翻译文件不是JSON
Sakarwei回复Sakarwei2024-8-11 13:54IP:广东省
回复
翻译文件是 lang
qzusergjf2024-8-11 14:05IP:山东省
回复
哦,我看看
qzusergjf2024-8-11 14:06IP:山东省
回复
是#啊
苦力怕论坛,感谢有您~
回复

使用道具举报

 楼主|  发表于 2024-8-11 13:53:23 来自手机|显示全部楼层 IP:山东省
Sakarwei 发表于 2024-8-11 13:51
一、我没看到 错误日志 Script API 的报错。
二、翻译文件的注释是“#”开头。
三、如果你制作的包没有 UI  ...

而且没加其他模组
9#2024-8-11 13:53:23收起回复
Sakarwei2024-8-11 13:55IP:广东省
回复
如果没有外来的修改UI的组件还有报错,或许是 MC 自带的 UI 文件有错误?这不应该呀……
指令凋灵2024-8-11 13:56IP:山西省
回复
看看全局资源和存档的资源包
指令凋灵2024-8-11 13:58IP:山西省
回复
除了第一个和下面五个都是ui
qzusergjf2024-8-11 14:04IP:山东省
回复
全局资源也没有
qzusergjf2024-8-11 14:04IP:山东省
回复
还是感觉是我这个模组的问题
还有 2 条回复, 点击查看
苦力怕论坛,感谢有您~
回复

使用道具举报

 楼主|  发表于 2024-8-11 15:22:34 来自手机|显示全部楼层 IP:山东省
指令凋灵 发表于 2024-8-11 13:22
因为连不上npm官网,只修了一点点bug

但是还是报错了
[UI][warning]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: selector_area | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: settings.selector_stack_panel | UI Control: world_selector_pane | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/selector_area/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/settings.selector_stack_panel/world_selector_pane/game_button | Expected variable not found in ancestor tree: '$education_edition_china'

[UI][warning]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: selector_area | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: settings.selector_stack_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/selector_area/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/settings.selector_stack_panel/addons_selector_panel | Expected variable not found in ancestor tree: '$education_edition_china'

[UI][warning]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: world_sections | UI Control Key: game_section@world_section.game_section | Expected variable not found in ancestor tree: '$ios'

[UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | UI Control: available_packs_section | UI Control: empty_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/available_packs_section/empty_panel/to_store_button | JSON UI parse failure: Must define a binding name!

[UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | UI Control: available_packs_section | UI Control: empty_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/available_packs_section/empty_panel/to_store_button | Data bindings must have at least one property to bind!

[UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/unowned_packs_title_button | JSON UI parse failure: Must define a binding name!

[UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: level_texture_pack_section | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/level_texture_pack_section/unowned_packs_title_button | Data bindings must have at least one property to bind!

[UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: addon_section | UI Control: available_packs_section | UI Control: empty_panel | On Control Path: /screen_world_controls_and_settings/variables_button_mappings_and_controls/safezone_screen_matrix/inner_matrix/safezone_screen_panel/root_screen_panel/stack_panel/content_panel/container/settings_common.dialog_content/content_area/control/scrolling_panel/scroll_touch/scroll_view/panel/background_and_viewport/scrolling_view_port/scrolling_content/packs_sections/addon_section/available_packs_section/empty_panel/to_store_button | JSON UI parse failure: Must define a binding name!

[UI][error]-UI Control: screen_world_controls_and_settings | UI Control: variables_button_mappings_and_controls | UI Control: safezone_screen_matrix | UI Control: inner_matrix | UI Control: safezone_screen_panel | UI Control: root_screen_panel | UI Control: stack_panel | UI Control: content_panel | UI Control: container | UI Control: settings_common.dialog_content | UI Control: content_area | UI Control: control | UI Control: scrolling_panel | UI Control: scroll_touch | UI Control: scroll_view | UI Control: panel | UI Control: background_and_viewport | UI Control: scrolling_view_port | UI Control: scrolling_content | UI Control: packs_sections | UI Control: addon_section | UI Control: available_packs_section | UI Control: empty_panel
10#2024-8-11 15:22:34回复收起回复
苦力怕论坛,感谢有您~
回复

使用道具举报

本版积分规则

本站
关于我们
联系我们
坛史纲要
官方
哔哩哔哩
技术博客
下载
网易版
安卓版
JAVA
反馈
意见建议
教程中心
更多
捐助本站
QQ群
QQ群

QQ群

访问手机版

访问手机版

手机版|小黑屋|系统状态|klpbbs.com

粤公网安备 44200002445329号 | 由 木韩网络 提供云服务 | GMT+8, 2024-10-21 03:33

声明:本站与Mojang以及微软公司没有从属关系

Powered by Discuz! X3.4 粤ICP备2023071842号