commit 7b74e6a2f458dbbbc5b195e766ff6191fd4e5ad7 Author: 3944Realms Date: Sat May 30 15:49:07 2026 +0800 初始化 diff --git a/.gitea/workflows/delopy.yml b/.gitea/workflows/delopy.yml new file mode 100644 index 0000000..1fb4d14 --- /dev/null +++ b/.gitea/workflows/delopy.yml @@ -0,0 +1,345 @@ +name: Deploy to Remote Server + +on: + push: + branches: [ main, master ] + workflow_dispatch: + +env: + REMOTE_HOST: "f2.leisuretimedock.top" + REMOTE_USER: "root" + REMOTE_PATH: "/opt/filebrowser/ltd v10-test" + SSH_PORT: "22" + # 保留文件配置 + KEEP_FILES: "" + +jobs: + deploy: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: https://gitee.com/actions-mirror/checkout@v4 + + - name: Set executable permissions + run: | + echo "=== 设置文件执行权限 ===" + if [ -f "./packet/packwiz" ]; then + chmod +x ./packet/packwiz + echo "✅ packet/packwiz 执行权限已设置" + ls -la ./packet/packwiz + else + echo "⚠️ 未找到 packet/packwiz 文件" + # 列出 packet 目录内容,帮助调试 + echo "packet 目录内容:" + ls -la packet/ + fi + + - name: Read project configuration + id: project-config + run: | + echo "=== 读取项目配置 ===" + if [ -f ".project/globe.json" ]; then + echo "找到 .project/globe.json 文件" + cat .project/globe.json + + # 使用 jq 解析 JSON 文件 + VERSION=$(jq -r '.version // "0.0.0.0"' .project/globe.json) + INITIALIZED=$(jq -r '.initialized // "false"' .project/globe.json) + NAME=$(jq -r '.name // "MyPack"' .project/globe.json) + AUTHOR=$(jq -r '.author // "Unknown"' .project/globe.json) + MC_VERSION=$(jq -r '.["mc-version"] // "1.20.1"' .project/globe.json) + MODLOADER=$(jq -r '.modloader // "forge"' .project/globe.json) + MODLOADER_VERSION=$(jq -r '.["modloader-version"] // "47.1.0"' .project/globe.json) + INDEX_FILE=$(jq -r '.["index-file"] // "index.toml"' .project/globe.json) + + echo "版本: $VERSION" + echo "已初始化: $INITIALIZED" + echo "名称: $NAME" + echo "作者: $AUTHOR" + echo "MC版本: $MC_VERSION" + echo "模组加载器: $MODLOADER" + echo "模组加载器版本: $MODLOADER_VERSION" + echo "索引文件: $INDEX_FILE" + + # 设置输出变量 + echo "version=$VERSION" >> $GITHUB_OUTPUT + echo "initialized=$INITIALIZED" >> $GITHUB_OUTPUT + echo "name=$NAME" >> $GITHUB_OUTPUT + echo "author=$AUTHOR" >> $GITHUB_OUTPUT + echo "mc-version=$MC_VERSION" >> $GITHUB_OUTPUT + echo "modloader=$MODLOADER" >> $GITHUB_OUTPUT + echo "modloader-version=$MODLOADER_VERSION" >> $GITHUB_OUTPUT + echo "index-file=$INDEX_FILE" >> $GITHUB_OUTPUT + + # 根据配置决定是否使用保留文件 + if [ "$INITIALIZED" = "true" ]; then + echo "项目已初始化,将使用保留文件: $KEEP_FILES" + echo "use_keep_files=true" >> $GITHUB_OUTPUT + else + echo "项目未初始化,不使用保留文件" + echo "use_keep_files=false" >> $GITHUB_OUTPUT + fi + else + echo "⚠️ 未找到 .project/globe.json 文件,使用默认配置" + echo "version=0.0.0.0" >> $GITHUB_OUTPUT + echo "initialized=false" >> $GITHUB_OUTPUT + echo "name=MyPack" >> $GITHUB_OUTPUT + echo "author=Unknown" >> $GITHUB_OUTPUT + echo "mc-version=1.20.1" >> $GITHUB_OUTPUT + echo "modloader=forge" >> $GITHUB_OUTPUT + echo "modloader-version=47.1.0" >> $GITHUB_OUTPUT + echo "index-file=index.toml" >> $GITHUB_OUTPUT + echo "use_keep_files=false" >> $GITHUB_OUTPUT + fi + + - name: Update pack.toml if initialized is true + if: steps.project-config.outputs.initialized == 'true' + run: | + echo "=== 更新 pack.toml 版本 ===" + if [ -f "packet/pack.toml" ]; then + echo "找到 packet/pack.toml 文件,更新版本..." + CURRENT_VERSION=$(grep '^version =' packet/pack.toml | head -1 | cut -d'"' -f2) + NEW_VERSION="${{ steps.project-config.outputs.version }}" + echo "当前版本: $CURRENT_VERSION" + echo "新版本: $NEW_VERSION" + + # 更新版本号 + if [ "$CURRENT_VERSION" != "$NEW_VERSION" ]; then + sed -i "s/version = \"$CURRENT_VERSION\"/version = \"$NEW_VERSION\"/" packet/pack.toml + echo "✅ pack.toml 版本已更新为: $NEW_VERSION" + else + echo "版本相同,无需更新" + fi + + # 显示更新后的文件内容 + echo "=== 更新后的 pack.toml ===" + cat packet/pack.toml + else + echo "⚠️ 未找到 packet/pack.toml 文件" + fi + + - name: Update all mods if initialized is true + if: steps.project-config.outputs.initialized == 'true' + run: | + echo "=== 更新所有模组 ===" + # 进入 packet 目录执行命令 + cd packet + chmod +x ./packwiz + ./packwiz update --all + cd .. + echo "✅ 模组更新完成" + + - name: Initialize pack if initialized is false + if: steps.project-config.outputs.initialized == 'false' + run: | + echo "=== 初始化 packwiz 项目 ===" + echo "名称: ${{ steps.project-config.outputs.name }}" + echo "作者: ${{ steps.project-config.outputs.author }}" + echo "版本: ${{ steps.project-config.outputs.version }}" + echo "MC版本: ${{ steps.project-config.outputs.mc-version }}" + echo "模组加载器: ${{ steps.project-config.outputs.modloader }}" + echo "模组加载器版本: ${{ steps.project-config.outputs.modloader-version }}" + echo "索引文件: ${{ steps.project-config.outputs.index-file }}" + + # 进入 packet 目录执行初始化 + cd packet + + # 给 packwiz 添加执行权限 + echo "=== 设置 packwiz 执行权限 ===" + chmod +x ./packwiz + ls -la ./packwiz + + # 执行 packwiz 初始化命令 + ./packwiz init \ + --name "${{ steps.project-config.outputs.name }}" \ + --author "${{ steps.project-config.outputs.author }}" \ + --version "${{ steps.project-config.outputs.version }}" \ + --mc-version "${{ steps.project-config.outputs.mc-version }}" \ + --modloader "${{ steps.project-config.outputs.modloader }}" \ + --${{ steps.project-config.outputs.modloader }}-version "${{ steps.project-config.outputs.modloader-version }}" \ + --index-file "${{ steps.project-config.outputs.index-file }}" \ + --reinit + + echo "✅ packwiz 初始化完成" + + # 显示生成的 pack.toml + echo "=== 生成的 pack.toml ===" + cat pack.toml + + # 返回上级目录 + cd .. + + - name: Display repository files + run: | + echo "=== 自动挂载的仓库文件 ===" + echo "当前目录: $PWD" + ls -la + echo "=== packet 目录内容 ===" + ls -la packet/ + echo "=== 项目配置 ===" + echo "版本: ${{ steps.project-config.outputs.version }}" + echo "已初始化: ${{ steps.project-config.outputs.initialized }}" + echo "使用保留文件: ${{ steps.project-config.outputs.use_keep_files }}" + echo "保留文件列表: $KEEP_FILES" + echo "=== packet 目录文件详情 ===" + find packet/ -type f 2>/dev/null | head -20 || true + echo "packet 目录文件数: $(find packet/ -type f 2>/dev/null | wc -l || echo 0)" + echo "packet 目录数: $(find packet/ -type d 2>/dev/null | wc -l || echo 0)" + + - name: Setup SSH + run: | + mkdir -p ~/.ssh + chmod 700 ~/.ssh + echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa + chmod 600 ~/.ssh/id_rsa + cat > ~/.ssh/config << EOF + Host $REMOTE_HOST + HostName $REMOTE_HOST + User $REMOTE_USER + Port $SSH_PORT + StrictHostKeyChecking no + UserKnownHostsFile /dev/null + EOF + + - name: Clean remote directory (conditionally) + if: steps.project-config.outputs.use_keep_files == 'true' + run: | + ssh $REMOTE_HOST " + mkdir -p '$REMOTE_PATH' + echo '=== 清理目录(保留文件不会被删除)===' + echo '保留文件: $KEEP_FILES' + cd '$REMOTE_PATH' + + # 获取当前目录的所有文件和文件夹(除了隐藏文件和保留文件) + find . -mindepth 1 -not -path '*/\.*' | while read item; do + should_keep=false + for pattern in $KEEP_FILES; do + # 检查是否匹配保留模式 + if [[ \"\$item\" == *\"\$pattern\"* ]] || [[ \"\$item\" == \"\$pattern\" ]] || [[ \"\$pattern\" == *\"*\"* && \"\$item\" == \${pattern%%/*}* ]]; then + should_keep=true + break + fi + done + + if [ \"\$should_keep\" = \"false\" ]; then + echo \"删除: \$item\" + rm -rf \"\$item\" 2>/dev/null || true + else + echo \"保留: \$item\" + fi + done + echo '目录清理完成' + " + + - name: Clean remote directory (full cleanup) + if: steps.project-config.outputs.use_keep_files == 'false' + run: | + ssh $REMOTE_HOST " + mkdir -p '$REMOTE_PATH' + echo '=== 完全清理目录(无保留文件)===' + find '$REMOTE_PATH' -mindepth 1 -delete 2>/dev/null || true + echo '目录清理完成' + " + + - name: Deploy packet directory + run: | + echo "开始部署 packet 目录..." + echo "项目版本: ${{ steps.project-config.outputs.version }}" + echo "已初始化: ${{ steps.project-config.outputs.initialized }}" + + # 进入 packet 目录进行打包 + cd packet + + # 如果有保留文件,创建排除列表 + if [ "${{ steps.project-config.outputs.use_keep_files }}" = "true" ]; then + echo "使用保留文件: $KEEP_FILES" + echo "=== 创建排除列表 ===" + + echo ".git" > exclude_list.txt + echo ".gitea" >> exclude_list.txt + + # 添加保留文件到排除列表 + for pattern in $KEEP_FILES; do + if [[ "$pattern" == *"*"* ]]; then + # 对于通配符模式,找到所有匹配的文件并排除 + for file in $pattern; do + if [ -e "$file" ]; then + echo "$file" >> exclude_list.txt + fi + done + else + echo "$pattern" >> exclude_list.txt + fi + done + + echo "排除列表:" + cat exclude_list.txt + + # 使用排除列表打包 packet 目录内容 + tar czf - --exclude-from=exclude_list.txt . | ssh $REMOTE_HOST "cd '$REMOTE_PATH' && tar xzf -" + rm -f exclude_list.txt + else + # 没有保留文件,直接打包 packet 目录所有文件 + echo "无保留文件,部署 packet 目录所有文件" + tar czf - --exclude='.git' --exclude='.gitea' . | ssh $REMOTE_HOST "cd '$REMOTE_PATH' && tar xzf -" + fi + + echo "✅ packet 目录部署完成" + + - name: Update project configuration on server + run: | + echo "=== 更新服务器上的项目配置 ===" + # 创建项目配置目录并上传配置信息 + ssh $REMOTE_HOST " + mkdir -p '$REMOTE_PATH/.project' + cat > '$REMOTE_PATH/.project/globe.json' << 'EOF' + { + \"version\": \"${{ steps.project-config.outputs.version }}\", + \"initialized\": ${{ steps.project-config.outputs.initialized }}, + \"name\": \"${{ steps.project-config.outputs.name }}\", + \"author\": \"${{ steps.project-config.outputs.author }}\", + \"mc-version\": \"${{ steps.project-config.outputs.mc-version }}\", + \"modloader\": \"${{ steps.project-config.outputs.modloader }}\", + \"modloader-version\": \"${{ steps.project-config.outputs.modloader-version }}\", + \"index-file\": \"${{ steps.project-config.outputs.index-file }}\" + } + EOF + echo '服务器项目配置已更新' + cat '$REMOTE_PATH/.project/globe.json' + " + + - name: Verify deployment + run: | + ssh $REMOTE_HOST " + echo '=== 部署验证 ===' + echo '目录: $REMOTE_PATH' + echo '大小: \$(du -sh \"$REMOTE_PATH\")' + echo '文件数量: \$(find \"$REMOTE_PATH\" -type f | wc -l)' + echo '=== 项目配置 ===' + if [ -f \"$REMOTE_PATH/.project/globe.json\" ]; then + cat \"$REMOTE_PATH/.project/globe.json\" + else + echo '⚠️ 未找到项目配置文件' + fi + echo '=== pack.toml 内容 ===' + if [ -f \"$REMOTE_PATH/pack.toml\" ]; then + cat \"$REMOTE_PATH/pack.toml\" + else + echo '⚠️ 未找到 pack.toml 文件' + fi + echo '=== 目录结构 ===' + ls -la '$REMOTE_PATH' + echo '=== 保留文件状态 ===' + if [ \"${{ steps.project-config.outputs.use_keep_files }}\" = \"true\" ]; then + for pattern in $KEEP_FILES; do + if [ -e \"$REMOTE_PATH/\$pattern\" ]; then + echo \"✅ 保留文件: \$pattern\" + else + echo \"⚠️ 保留文件不存在: \$pattern\" + fi + done + else + echo '无保留文件设置' + fi + " \ No newline at end of file diff --git a/.project/globe.json b/.project/globe.json new file mode 100644 index 0000000..47f02b9 --- /dev/null +++ b/.project/globe.json @@ -0,0 +1,10 @@ +{ + "version": "1.0.3", + "initialized": false, + "name": "LTD V11", + "author": "3944Realms", + "mc-version": "1.20.1", + "modloader": "forge", + "modloader-version": "47.4.10", + "index-file" : "index.toml" +} \ No newline at end of file diff --git a/packet/README.md b/packet/README.md new file mode 100644 index 0000000..8ff445d --- /dev/null +++ b/packet/README.md @@ -0,0 +1,11 @@ +# LTD十周目测试整合包 + +## 更新日志 + +2026/05/30 - 1次 v1.0.3 + +初始化本项目git结构, 添加README和执行打包程序 + +## 注意事项 + +严禁对本包二次分发,违者必究 diff --git a/packet/config/carryon-common.toml b/packet/config/carryon-common.toml new file mode 100644 index 0000000..5b49468 --- /dev/null +++ b/packet/config/carryon-common.toml @@ -0,0 +1,81 @@ + +[settings] + #General Settings + #Maximum distance from where Blocks and Entities can be picked up + #Range: 0.0 ~ 1.7976931348623157E308 + maxDistance = 2.5 + #Max width of entities that can be picked up in survival mode + #Range: 0.0 ~ 10.0 + maxEntityWidth = 1.5 + #Max height of entities that can be picked up in survival mode + #Range: 0.0 ~ 10.0 + maxEntityHeight = 2.5 + #Slowness multiplier for blocks + #Range: 0.0 ~ 1.7976931348623157E308 + blockSlownessMultiplier = 1.0 + #Slowness multiplier for entities + #Range: 0.0 ~ 1.7976931348623157E308 + entitySlownessMultiplier = 1.0 + #Maximum stack limit for entities + #Range: > 1 + maxEntityStackLimit = 2 + #More complex Tile Entities slow down the player more + heavyTiles = true + #Allow all blocks to be picked up, not just Tile Entites. White/Blacklist will still be respected. + pickupAllBlocks = false + #Whether Blocks and Entities slow the creative player down when carried + slownessInCreative = true + #Whether hostile mobs should be able to picked up in survival mode + pickupHostileMobs = false + #Larger Entities slow down the player more + heavyEntities = true + #Allow babies to be carried even when adult mob is blacklisted (or not whitelisted) + allowBabies = true + #Use Whitelist instead of Blacklist for Blocks + useWhitelistBlocks = false + #Use Whitelist instead of Blacklist for Entities + useWhitelistEntities = false + #Use Whitelist instead of Blacklist for Stacking + useWhitelistStacking = false + #Whether the player can hit blocks and entities while carrying or not + hitWhileCarrying = false + #Whether the player drops the carried object when hit or not + dropCarriedWhenHit = false + #Use custom Pickup Scripts. Having this set to false, will not allow you to run scripts, but will increase your performance + useScripts = false + #Allows entities to be stacked on top of each other + stackableEntities = true + #Whether entities' size matters when stacking or not. This means that larger entities cannot be stacked on smaller ones + entitySizeMattersStacking = true + #Usually all the block state information is retained when placing a block that was picked up. But some information is changed to a modified property, like rotation or orientation. In this list, add additional properties that should NOT be saved and instead be updated when placed. Format: modid:block[propertyname]. Note: You don't need to add an entry for every subtype of a same block. For example, we only add an entry for one type of slab, but the change is applied to all slabs. + placementStateExceptions = ["minecraft:chest[type]", "minecraft:stone_button[face]", "minecraft:vine[north,east,south,west,up]", "minecraft:creeper_head[rotation]", "minecraft:glow_lichen[north,east,south,west,up,down]", "minecraft:oak_sign[rotation]", "minecraft:oak_trapdoor[half]"] + #Whether Players can be picked up. Creative players can't be picked up in Survival Mode + pickupPlayers = false + #Whether players in Survival Mode can pick up unbreakable blocks. Creative players always can. + pickupUnbreakableBlocks = false + +[whitelist] + #Whitelist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config + #Entities that CAN be picked up (useWhitelistEntities must be true) + allowedEntities = [] + #Blocks that CAN be picked up (useWhitelistBlocks must be true) + allowedBlocks = [] + #Entities that CAN have other entities stacked on top of them (useWhitelistStacking must be true) + allowedStacking = [] + +[blacklist] + #Blacklist. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Black---and-Whitelist-Config + #Blocks that cannot be picked up + forbiddenTiles = ["#forge:immovable", "#forge:relocation_not_supported", "minecraft:end_portal", "minecraft:piston_head", "minecraft:end_gateway", "minecraft:tall_grass", "minecraft:large_fern", "minecraft:peony", "minecraft:rose_bush", "minecraft:lilac", "minecraft:sunflower", "minecraft:*_bed", "minecraft:*_door", "minecraft:big_dripleaf_stem", "minecraft:waterlily", "minecraft:cake", "minecraft:nether_portal", "minecraft:tall_seagrass", "animania:block_trough", "animania:block_invisiblock", "colossalchests:*", "ic2:*", "bigreactors:*", "forestry:*", "tconstruct:*", "rustic:*", "botania:*", "astralsorcery:*", "quark:colored_bed_*", "immersiveengineering:*", "embers:block_furnace", "embers:ember_bore", "embers:ember_activator", "embers:mixer", "embers:heat_coil", "embers:large_tank", "embers:crystal_cell", "embers:alchemy_pedestal", "embers:boiler", "embers:combustor", "embers:catalzyer", "embers:field_chart", "embers:inferno_forge", "storagedrawers:framingtable", "skyresources:*", "lootbags:*", "exsartagine:*", "aquamunda:tank", "opencomputers:*", "malisisdoors:*", "industrialforegoing:*", "minecolonies:*", "thaumcraft:pillar*", "thaumcraft:infernal_furnace", "thaumcraft:placeholder*", "thaumcraft:infusion_matrix", "thaumcraft:golem_builder", "thaumcraft:thaumatorium*", "magneticraft:oil_heater", "magneticraft:solar_panel", "magneticraft:steam_engine", "magneticraft:shelving_unit", "magneticraft:grinder", "magneticraft:sieve", "magneticraft:solar_tower", "magneticraft:solar_mirror", "magneticraft:container", "magneticraft:pumpjack", "magneticraft:solar_panel", "magneticraft:refinery", "magneticraft:oil_heater", "magneticraft:hydraulic_press", "magneticraft:multiblock_gap", "refinedstorage:*", "mcmultipart:*", "enderstorage:*", "betterstorage:*", "practicallogistics2:*", "wearablebackpacks:*", "rftools:screen", "rftools:creative_screen", "create:*", "magic_doorknob:*", "iceandfire:*", "ftbquests:*", "waystones:*", "contact:*", "framedblocks:*", "vinery:*", "spirit:*", "villagersplus:occultist_table", "fastpaintings:painting"] + #Entities that cannot be picked up + forbiddenEntities = ["minecraft:end_crystal", "minecraft:ender_dragon", "minecraft:ghast", "minecraft:shulker", "minecraft:leash_knot", "minecraft:armor_stand", "minecraft:item_frame", "minecraft:painting", "minecraft:shulker_bullet", "animania:hamster", "animania:ferret*", "animania:hedgehog*", "animania:cart", "animania:wagon", "mynko:*", "pixelmon:*", "mocreatures:*", "quark:totem", "vehicle:*", "minecraft:villager", "endgoblintraders:end_goblin_trader", "goblintraders:vein_goblin_trader", "goblintraders:goblin_trader"] + #Entities that cannot have other entities stacked on top of them + forbiddenStacking = ["minecraft:horse"] + +[customPickupConditions] + #Custom Pickup Conditions. Read about the format here: https://github.com/Tschipp/CarryOn/wiki/Custom-Pickup-Condition-Config + #Custom Pickup Conditions for Blocks + customPickupConditionsBlocks = [] + #Custom Pickup Conditions for Entities + customPickupConditionsEntities = [] + diff --git a/packet/config/curios-common.toml b/packet/config/curios-common.toml new file mode 100644 index 0000000..e0bb6a3 --- /dev/null +++ b/packet/config/curios-common.toml @@ -0,0 +1,5 @@ +#List of slots to create or modify. +#See documentation for syntax: https://docs.illusivesoulworks.com/curios/configuration#slot-configuration +# +slots = ["id=hands;size=1", "id=charm;size=1"] + diff --git a/packet/config/daily_rewards-common.toml b/packet/config/daily_rewards-common.toml new file mode 100644 index 0000000..82ca01c --- /dev/null +++ b/packet/config/daily_rewards-common.toml @@ -0,0 +1,148 @@ + +#Daily Rewards (General configuration) +[General] + #Automatically reward players after the rewardTimePerDay is reached. (e.g. 30 minutes). If disabled the reward command needs to be executed manually to reward the players. + automaticRewardPlayers = true + #Automatically reward players with specials after the rewardTimePerDay is reached. (e.g. 30 minutes). If disabled the reward command needs to be executed manually to reward the players. + automaticRewardSpecialPlayers = true + #Time in minutes the players needs to be online on the server before receiving a reward for the day. + #Range: 1 ~ 1440 + rewardTimePerDay = 30 + #Shows a unclaimed rewards message when a player joins the server (if there are unclaimed rewards). + showUnclaimedRewardsOnPlayerJoin = true + #Shows a unclaimed special rewards message when a player joins the server (if there are unclaimed special rewards). + showUnclaimedRewardsSpecialOnPlayerJoin = true + #Shows a message when a player receives a reward. + showReceivedRewardMessage = true + #Shows a message when a player receives a special reward. + showReceivedRewardSpecialMessage = true + #Shows a message with the reward claim command to claim rewards. + showRewardClaimCommandMessage = true + #Shows the rewards menu when a player joins the server (if there are unclaimed rewards). + showRewardMenuOnPlayerJoin = false + #Type of the reward screen. + #Allowed Values: COMPACT, DEFAULT_OVERVIEW, SPECIAL_OVERVIEW + rewardScreenType = "DEFAULT_OVERVIEW" + +["Fill Items"] + #Use fill items if there are not enough valid items for a month. (e.g. if there are only 2 items for a month and the player claims 3 rewards, the 3rd reward will be a fill item) + useFillItems = true + #List of normal fill items which are used in the case we have not enough valid items for a month. + normalFillItems = ["minecraft:wheat_seeds", "minecraft:pumpkin_seeds", "minecraft:melon_seeds", "minecraft:torchflower_seeds", "minecraft:beetroot_seeds", "minecraft:sugar_cane", "minecraft:cactus", "minecraft:glow_berries", "minecraft:sweet_berries", "biomeswevegone:blueberries", "farmersdelight:tomato_seeds", "farmersdelight:cabbage_seeds", "farmersdelight:wild_onions", "farmersdelight:rice", "supplementaries:flax_seeds", "minecraft:oak_sapling", "minecraft:spruce_sapling", "minecraft:birch_sapling", "minecraft:jungle_sapling", "minecraft:acacia_sapling", "minecraft:cherry_sapling", "minecraft:dark_oak_sapling", "quark:ancient_sapling", "quark:blue_blossom_sapling", "quark:red_blossom_sapling", "biomeswevegone:aspen_sapling", "biomeswevegone:baobab_sapling", "biomeswevegone:blue_enchanted_sapling", "biomeswevegone:cika_sapling", "biomeswevegone:cypress_sapling", "biomeswevegone:ebony_sapling", "biomeswevegone:fir_sapling", "biomeswevegone:green_enchanted_sapling", "biomeswevegone:holly_sapling", "biomeswevegone:ironwood_sapling", "biomeswevegone:jacaranda_sapling", "biomeswevegone:mahogany_sapling", "biomeswevegone:maple_sapling", "biomeswevegone:palm_sapling", "biomeswevegone:pine_sapling", "biomeswevegone:rainbow_eucalyptus_sapling", "biomeswevegone:redwood_sapling", "biomeswevegone:white_sakura_sapling", "biomeswevegone:yellow_sakura_sapling", "biomeswevegone:skyris_sapling", "biomeswevegone:white_mangrove_sapling", "biomeswevegone:willow_sapling", "biomeswevegone:witch_hazel_sapling", "biomeswevegone:zelkova_sapling", "biomeswevegone:palo_verde_sapling", "biomeswevegone:araucaria_sapling", "biomeswevegone:blue_spruce_sapling", "biomeswevegone:orchard_sapling", "biomeswevegone:brown_zelkova_sapling", "biomeswevegone:brown_oak_sapling", "biomeswevegone:indigo_jacaranda_sapling", "biomeswevegone:orange_spruce_sapling", "biomeswevegone:orange_oak_sapling", "biomeswevegone:red_birch_sapling", "biomeswevegone:red_maple_sapling", "biomeswevegone:red_oak_sapling", "biomeswevegone:red_spruce_sapling", "biomeswevegone:silver_maple_sapling", "biomeswevegone:yellow_spruce_sapling", "biomeswevegone:yucca_sapling", "minecraft:dirt:2"] + #List of rare fill items which are used in the case we have not enough valid items for a month. + rareFillItems = ["minecraft:diamond", "minecraft:iron_ingot", "minecraft:cobblestone:64"] + #The chance to use a rare item instead of a regular one. e.g. 7 means every 7th items could be a rare item. (0 = disabled) + #Range: 0 ~ 100 + rareFillItemsChance = 1 + #List of loot bag fill items which are used in the case we have not enough valid items for a month. + lootBagFillItems = ["lootbagmod:lootbag"] + #The chance to use a loot bag item instead of a regular one. e.g. 15 means every 15th items could be a loot bag item. (0 = disabled) + #Range: 0 ~ 100 + lootBagFillItemsChance = 1 + +["Rewards Items"] + #Shuffle the rewards items instead of using the defined order. + shuffleRewardsItems = true + #Shuffle the special rewards items instead of using the defined order. + shuffleRewardsSpecialItems = false + #Preview the upcoming rewards items for the next days. + previewRewardsItems = true + #Preview the upcoming special rewards items for the next days. + previewRewardsSpecialItems = true + + ["Rewards Items"."January Rewards Items"] + #List of rewards items for January + rewardsJanuaryItems = [""] + #Single reward item or list of special streak rewards items for January. (Only used if rewardsJanuarySpecialItemsNeededDays is greater than 0) + rewardsJanuarySpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for January. (Use empty list to allow all players to get special rewards items for January) + rewardsJanuarySpecialUsers = [""] + + ["Rewards Items"."February Rewards Items"] + #List of rewards items for February + rewardsFebruaryItems = [] + #Single reward item or list of special streak rewards items for February. (Only used if rewardsFebruarySpecialItemsNeededDays is greater than 0) + rewardsFebruarySpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for February. (Use empty list to allow all players to get special rewards items for February) + rewardsFebruarySpecialUsers = [""] + + ["Rewards Items"."March Rewards Items"] + #List of rewards items for March + rewardsMarchItems = [] + #Single reward item or list of special streak rewards items for March. (Only used if rewardsMarchSpecialItemsNeededDays is greater than 0) + rewardsMarchSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for March. (Use empty list to allow all players to get special rewards items for March) + rewardsMarchSpecialUsers = [""] + + ["Rewards Items"."April Rewards Items"] + #List of rewards items for April + rewardsAprilItems = [] + #Single reward item or list of special streak rewards items for April. (Only used if rewardsAprilSpecialItemsNeededDays is greater than 0) + rewardsAprilSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for April. (Use empty list to allow all players to get special rewards items for April) + rewardsAprilSpecialUsers = [""] + + ["Rewards Items"."May Rewards Items"] + #List of rewards items for May + rewardsMayItems = ["minecraft:egg:16"] + #Single reward item or list of special streak rewards items for May. (Only used if rewardsMaySpecialItemsNeededDays is greater than 0) + rewardsMaySpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for May. (Use empty list to allow all players to get special rewards items for May) + rewardsMaySpecialUsers = [""] + + ["Rewards Items"."June Rewards Items"] + #List of rewards items for June + rewardsJuneItems = [] + #Single reward item or list of special streak rewards items for June. (Only used if rewardsJuneSpecialItemsNeededDays is greater than 0) + rewardsJuneSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for June. (Use empty list to allow all players to get special rewards items for June) + rewardsJuneSpecialUsers = [""] + + ["Rewards Items"."July Rewards Items"] + #List of rewards items for July + rewardsJulyItems = [] + #Single reward item or list of special streak rewards items for July. (Only used if rewardsJulySpecialItemsNeededDays is greater than 0) + rewardsJulySpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for July. (Use empty list to allow all players to get special rewards items for July) + rewardsJulySpecialUsers = [""] + + ["Rewards Items"."August Rewards Items"] + #List of rewards items for August + rewardsAugustItems = [] + #Single reward item or list of special streak rewards items for August. (Only used if rewardsAugustSpecialItemsNeededDays is greater than 0) + rewardsAugustSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for August. (Use empty list to allow all players to get special rewards items for August) + rewardsAugustSpecialUsers = [""] + + ["Rewards Items"."September Rewards Items"] + #List of rewards items for September + rewardsSeptemberItems = [] + #Single reward item or list of special streak rewards items for September. (Only used if rewardsSeptemberSpecialItemsNeededDays is greater than 0) + rewardsSeptemberSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for September. (Use empty list to allow all players to get special rewards items for September) + rewardsSeptemberSpecialUsers = [""] + + ["Rewards Items"."October Rewards Items"] + #List of rewards items for October + rewardsOctoberItems = [] + #Single reward item or list of special streak rewards items for October. (Only used if rewardsOctoberSpecialItemsNeededDays is greater than 0) + rewardsOctoberSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for October. (Use empty list to allow all players to get special rewards items for October) + rewardsOctoberSpecialUsers = [""] + + ["Rewards Items"."November Rewards Items"] + #List of rewards items for November + rewardsNovemberItems = [] + #Single reward item or list of special streak rewards items for November. (Only used if rewardsNovemberSpecialItemsNeededDays is greater than 0) + rewardsNovemberSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for November. (Use empty list to allow all players to get special rewards items for November) + rewardsNovemberSpecialUsers = [""] + + ["Rewards Items"."December Rewards Items"] + #List of rewards items for December + rewardsDecemberItems = ["minecraft:firework_rocket:32"] + #Single reward item or list of special streak rewards items for December. (Only used if rewardsDecemberSpecialItemsNeededDays is greater than 0) + rewardsDecemberSpecialItems = ["minecraft:cookie:1", "supplementaries:candy:1", "farmersdelight:pumpkin_slice:1", "farmersdelight:cabbage_leaf:1", "farmersdelight:cake_slice:1", "farmersdelight:apple_pie_slice:1", "farmersdelight:sweet_berry_cheesecake_slice:1", "farmersdelight:chocolate_pie_slice:1", "farmersdelight:sweet_berry_cookie:1", "farmersdelight:honey_cookie:1", "farmersdelight:melon_popsicle:1"] + #List of users which will get the special rewards items for December. (Use empty list to allow all players to get special rewards items for December) + rewardsDecemberSpecialUsers = [""] + diff --git a/packet/config/easyanvils-server.toml b/packet/config/easyanvils-server.toml new file mode 100644 index 0000000..6af76b6 --- /dev/null +++ b/packet/config/easyanvils-server.toml @@ -0,0 +1,64 @@ + +[miscellaneous] + #Chance the anvil will break into chipped or damaged variant, or break completely after using. Value is set to 0.12 in vanilla. + #Range: 0.0 ~ 1.0 + anvil_break_chance = 0.05 + #Solely renaming items in an anvil will never cause the anvil to break. + risk_free_anvil_renaming = true + #Edit name tags without cost nor anvil, simply by sneak + right-clicking. + edit_name_tags_no_anvil = true + #The naming field in anvils and the name tag gui will support formatting codes for setting custom text colors and styles. + #Check out the Minecraft Wiki for all available formatting codes and their usage: https://minecraft.fandom.com/wiki/Formatting_codes#Usage + renaming_supports_formatting = true + #Allow using iron blocks to repair an anvil by one damage stage. Can be automated using dispensers. + anvil_repairing = true + +#Most default value represents vanilla behavior. +[costs] + #Multiplier for each level of a rare enchantment being applied. + #Range: > 1 + rare_enchantment_multiplier = 4 + #The additional cost in levels for combining an item with another item of the same kind when the first item is not fully repaired. + #Range: > -2147483648 + repair_with_other_item_cost = 2 + #Multiplier for each level of a common enchantment being applied. + #Range: > -2147483648 + common_enchantment_multiplier = 1 + #Multiplier for each level of a very rare enchantment being applied. + #Range: > 1 + very_rare_enchantment_multiplier = 8 + #Multiplier for each level of a uncommon enchantment being applied. + #Range: > 1 + uncommon_enchantment_multiplier = 2 + #Costs for applying enchantments from enchanted books are halved. + halved_book_costs = true + #The additional cost in levels for each valid repair material an item is repaired with in an anvil. + #Range: > -2147483648 + repair_with_material_unit_cost = 1 + #Max cost of enchantment level allowed to be spent in an anvil. Every operation exceeding the limit will show as 'Too Expensive!' and will be disallowed. + #If set to '-1' the limit is disabled. + #Set to '40' enchantment levels in vanilla. + #Range: > -1 + too_expensive_limit = -1 + #Renaming any item in an anvil no longer costs any enchantment levels at all. Can be restricted to only name tags. + #Allowed Values: OFF, ALL_ITEMS, NAME_TAGS_ONLY + free_renames = "ALL_ITEMS" + +[prior_work_penalty] + #FIXED: When renaming / repairing, ignore any prior work penalty on the item. Makes prior work penalty only relevant when new enchantments are added. + #LIMITED: When renaming / repairing cost exceeds max anvil repair cost, limit cost just below max cost. + #VANILLA: Renaming / repairing increase with prior work penalty and will no longer be possible when max cost is exceeded. + #Allowed Values: VANILLA, FIXED, LIMITED + rename_and_repair_costs = "FIXED" + #Controls how working an item in the anvil multiple times affects the cost of future operations. + #FIXED: A constant value is added every time the item is worked. + #VANILLA: Penalty doubles every time an item is worked. + #DISABLED: Penalty stays at 0 and does not increase. + #Allowed Values: DISABLED, VANILLA, FIXED + prior_work_penalty = "FIXED" + #Prevents the prior work penalty from increasing when the item has only been renamed or repaired. + penalty_free_renames_and_repairs = true + #Constant to use when "prior_work_penalty" is set to "FIXED". Every subsequent operation will increase by this value in levels. + #Range: > 1 + prior_work_penalty_constant = 4 + diff --git a/packet/config/easymagic-server.toml b/packet/config/easymagic-server.toml new file mode 100644 index 0000000..c9a9c24 --- /dev/null +++ b/packet/config/easymagic-server.toml @@ -0,0 +1,30 @@ +#Amount of bookshelves required to perform enchantments at the highest level. +#Range: > 0 +max_enchanting_power = 15 +#Add a button in the enchanting screen to allow for re-rolling enchantments. +#This costs experience levels as well as lapis lazuli, or can be free when the costs are set to 0. +reroll_enchantments = true +#Blocks without a full collision shape (e.g. torches & carpet) do not block bookshelves placed behind from counting towards current enchanting power. +lenient_bookshelves = true +#Amount of catalyst item taken as a cost for re-rolling enchantments. Set to 0 to disable this kind of cost. +#The default re-roll catalyst is simply lapis lazuli as defined in 'easymagic:enchanting_catalysts'. +#Requires the re-rolling option to be enabled. +#Range: 0 ~ 64 +reroll_catalyst_cost = 1 +#Choose how many enchantments are shown on the enchanting tooltip, if any at all. +#Allowed Values: NONE, SINGLE, ALL +enchantment_hint = "SINGLE" +#Do chiseled bookshelves provide enchanting power to an enchanting table, one for every three contained books. +#NONE: Vanilla behavior, no power is provided. +#FACING: The bookshelf must face the enchanting table to provide any power. +#ALL: Chiseled bookshelves provide enchanting power regardless of where they are facing. +#Allowed Values: NONE, FACING, ALL +chiseled_bookshelf_enchanting_power = "FACING" +#Catalyst items for re-rolling are defined by the 'easymagic:reroll_catalysts' item tag instead of 'easymagic:enchanting_catalysts' (which includes just lapis lazuli by default). +#Unlocks an additional slot for providing those items in the enchanting table interface. +dedicated_reroll_catalyst = false +#Amount of experience points (not enchantment levels) taken as a cost for re-rolling enchantments. Set to 0 to disable this kind of cost. +#Requires the re-rolling option to be enabled. +#Range: > 0 +reroll_experience_points_cost = 5 + diff --git a/packet/config/fancymenu/assets/16x16.png b/packet/config/fancymenu/assets/16x16.png new file mode 100644 index 0000000..55663ac Binary files /dev/null and b/packet/config/fancymenu/assets/16x16.png differ diff --git a/packet/config/fancymenu/assets/32x32.png b/packet/config/fancymenu/assets/32x32.png new file mode 100644 index 0000000..83aa922 Binary files /dev/null and b/packet/config/fancymenu/assets/32x32.png differ diff --git a/packet/config/fancymenu/assets/blank.png b/packet/config/fancymenu/assets/blank.png new file mode 100644 index 0000000..7dfa6c9 Binary files /dev/null and b/packet/config/fancymenu/assets/blank.png differ diff --git a/packet/config/fancymenu/assets/forge.png b/packet/config/fancymenu/assets/forge.png new file mode 100644 index 0000000..215f122 Binary files /dev/null and b/packet/config/fancymenu/assets/forge.png differ diff --git a/packet/config/fancymenu/assets/icon32x32.icns b/packet/config/fancymenu/assets/icon32x32.icns new file mode 100644 index 0000000..65343ae Binary files /dev/null and b/packet/config/fancymenu/assets/icon32x32.icns differ diff --git a/packet/config/fancymenu/assets/info.png b/packet/config/fancymenu/assets/info.png new file mode 100644 index 0000000..b82459d Binary files /dev/null and b/packet/config/fancymenu/assets/info.png differ diff --git a/packet/config/fancymenu/assets/loading.png b/packet/config/fancymenu/assets/loading.png new file mode 100644 index 0000000..8afc2e6 Binary files /dev/null and b/packet/config/fancymenu/assets/loading.png differ diff --git a/packet/config/fancymenu/assets/ltd_11.png b/packet/config/fancymenu/assets/ltd_11.png new file mode 100644 index 0000000..0b71d54 Binary files /dev/null and b/packet/config/fancymenu/assets/ltd_11.png differ diff --git a/packet/config/fancymenu/assets/ltdsky.png b/packet/config/fancymenu/assets/ltdsky.png new file mode 100644 index 0000000..f275a9b Binary files /dev/null and b/packet/config/fancymenu/assets/ltdsky.png differ diff --git a/packet/config/fancymenu/assets/mac.icns b/packet/config/fancymenu/assets/mac.icns new file mode 100644 index 0000000..9ecb106 Binary files /dev/null and b/packet/config/fancymenu/assets/mac.icns differ diff --git a/packet/config/fancymenu/assets/mojang.png b/packet/config/fancymenu/assets/mojang.png new file mode 100644 index 0000000..67d1dd6 Binary files /dev/null and b/packet/config/fancymenu/assets/mojang.png differ diff --git a/packet/config/fancymenu/assets/performance.png b/packet/config/fancymenu/assets/performance.png new file mode 100644 index 0000000..f7b23c6 Binary files /dev/null and b/packet/config/fancymenu/assets/performance.png differ diff --git a/packet/config/fancymenu/assets/v5.png b/packet/config/fancymenu/assets/v5.png new file mode 100644 index 0000000..d38089b Binary files /dev/null and b/packet/config/fancymenu/assets/v5.png differ diff --git a/packet/config/fancymenu/config.txt b/packet/config/fancymenu/config.txt new file mode 100644 index 0000000..9e20ea8 --- /dev/null +++ b/packet/config/fancymenu/config.txt @@ -0,0 +1,73 @@ +##[general] + +[If menu background sounds added by FancyMenu should be played when a world is loaded.] +B:playbackgroundsoundsinworld = 'false'; +B:forcefullscreen = 'false'; +[If menu background sounds added by FancyMenu should be played or not.] +B:playbackgroundsounds = 'true'; +[A minecraft restart is required after changing this value.] +B:enablehotkeys = 'true'; +B:playmenumusic = 'true'; +S:variables_to_reset_on_launch = ''; +B:showdebugwarnings = 'true'; +[Sets the default GUI scale on first launch. Useful for modpacks. Cache data is saved in '/mods/fancymenu/'.] +I:defaultguiscale = '-1'; + + +##[customization] + +B:advancedmode = 'false'; +B:showcustomizationbuttons = 'false'; + + +##[loading] + +B:allowgameintroskip = 'true'; +B:showanimationloadingstatus = 'true'; +S:gameintroanimation = ''; +B:preloadanimations = 'false'; +S:customgameintroskiptext = ''; + + +##[minecraftwindow] + +[A minecraft restart is required after changing this value.] +S:customwindowtitle = 'Better MC [FORGE] 1.20.1'; +[A minecraft restart is required after changing this value.] +B:customwindowicon = 'true'; + + +##[world_loading_screen] + +B:showloadingscreenanimation = 'true'; +B:showloadingscreenpercent = 'true'; + + +##[multiplayer_screen] + +B:show_server_icons = 'true'; + + +##[singleplayer_screen] + +B:show_world_icons = 'true'; + + +##[layouteditor] + +I:gridsize = '10'; +B:editordeleteconfirmation = 'true'; +B:showgrid = 'false'; +[If the warning when trying to move an vanilla button without an orientation should be displayed or not.] +B:showvanillamovewarning = 'true'; + + +##[ui] + +B:show_unicode_warning = 'true'; +F:uiscale = '1.0'; + + +##[compatibility] + +B:allow_level_registry_interactions = 'true'; \ No newline at end of file diff --git a/packet/config/fancymenu/custom_gui_screens.txt b/packet/config/fancymenu/custom_gui_screens.txt new file mode 100644 index 0000000..57f690f --- /dev/null +++ b/packet/config/fancymenu/custom_gui_screens.txt @@ -0,0 +1,5 @@ +type = custom_gui_screens + +overridden_screens { +} + diff --git a/packet/config/fancymenu/customizablemenus.txt b/packet/config/fancymenu/customizablemenus.txt new file mode 100644 index 0000000..5557517 --- /dev/null +++ b/packet/config/fancymenu/customizablemenus.txt @@ -0,0 +1,65 @@ +type = customizablemenus + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +net.minecraft.client.gui.screens.PauseScreen { +} + +net.minecraft.client.gui.screens.ShareToLanScreen { +} + +net.minecraft.client.gui.screens.multiplayer.JoinMultiplayerScreen { +} + +com.aetherteam.aether.client.gui.screen.inventory.AccessoriesScreen { +} + +net.minecraft.client.gui.screens.worldselection.CreateWorldScreen { +} + +net.minecraft.client.gui.screens.TitleScreen { +} + diff --git a/packet/config/fancymenu/customization/aether.txt b/packet/config/fancymenu/customization/aether.txt new file mode 100644 index 0000000..86899f3 --- /dev/null +++ b/packet/config/fancymenu/customization/aether.txt @@ -0,0 +1,60 @@ +type = fancymenu_layout + +layout-meta { + identifier = com.aetherteam.aether.client.gui.screen.inventory.AccessoriesScreen + render_custom_elements_behind_vanilla = false + last_edited_time = 1717234161103 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:c98d9a13-e413-4150-a9c5-78d2146df0f9-1717234161103] = [groups:][instances:] +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false +} + +vanilla_button { + button_element_executable_block_identifier = 2a16585b-00ae-420f-aa5b-6182ebf60778-1717234161107 + [executable_block:2a16585b-00ae-420f-aa5b-6182ebf60778-1717234161107][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = 390419 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 0 + y = 0 + width = 0 + height = 0 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 0bc0d106-51f9-4a7c-821a-9899130d3db2-1717234161107 + [loading_requirement_container_meta:0bc0d106-51f9-4a7c-821a-9899130d3db2-1717234161107] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/packet/config/fancymenu/customization/error.txt b/packet/config/fancymenu/customization/error.txt new file mode 100644 index 0000000..b92bd08 --- /dev/null +++ b/packet/config/fancymenu/customization/error.txt @@ -0,0 +1,902 @@ +type = fancymenu_layout + +layout-meta { + identifier = title_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1779532623856 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:26a1a1c0-5191-42dd-b0c2-cbee596510ae-1779532598996] = [groups:error;][instances:] + [loading_requirement_group:error] = [group_mode:or] + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][group:error][req_id:d6b40eca-0d58-4be2-9668-0d47621754d41689477508732] = optifine + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][group:error][req_id:cf9abb3d-7aec-439b-87b9-fd107cd955c11689477524834] = tlskincape + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][group:error][req_id:e619ba19-0eb0-4508-a882-634882e022ea1689477516502] = essential +} + +menu_background { + image_path = [source:local]/config/fancymenu/assets/v5.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity = 0.02 + invert_parallax = false + background_type = image +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = de2c8b9c-d4a6-4419-9aa3-3522ff312bc8-1732589947246 + [executable_block:de2c8b9c-d4a6-4419-9aa3-3522ff312bc8-1732589947246][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = c63009d2-1115-4e74-8082-614eadf17341-1732589947246 + [loading_requirement_container_meta:c63009d2-1115-4e74-8082-614eadf17341-1732589947246] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = forge_titlescreen_mods_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 380 + y = 250 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 9cf79793-cb4b-4e28-bf60-f32a0ffba657-1732589947246 + [loading_requirement_container_meta:9cf79793-cb4b-4e28-bf60-f32a0ffba657-1732589947246] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = aa6128d0-30cd-4cf4-9674-3ade1ffbba6d-1732589947246 + [executable_block:aa6128d0-30cd-4cf4-9674-3ade1ffbba6d-1732589947246][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 7bf1512c-260b-40ff-bd22-bfe520f84f31-1732589947246 + [loading_requirement_container_meta:7bf1512c-260b-40ff-bd22-bfe520f84f31-1732589947246] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 97641 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 936 + y = 4 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 820a68d0-4e3a-465e-8d8c-aba7e8feb10d-1732589947246 + [loading_requirement_container_meta:820a68d0-4e3a-465e-8d8c-aba7e8feb10d-1732589947246] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = a620b3f4-65e4-4bdc-acd2-168c7fd529bf-1715521013849 + [executable_block:a620b3f4-65e4-4bdc-acd2-168c7fd529bf-1715521013849][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = c24779f1-10df-422d-8dfc-47ae39c99cb1-1732520818447 + [loading_requirement_container_meta:c24779f1-10df-422d-8dfc-47ae39c99cb1-1732520818447] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_accessibility_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 584 + y = 286 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 20abe2ec-4f7a-40bf-869f-1c988dea219c-1715521013849 + [loading_requirement_container_meta:20abe2ec-4f7a-40bf-869f-1c988dea219c-1715521013849] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 4b875230-515e-40cf-99be-0435edc0d789-1732589947246 + [executable_block:4b875230-515e-40cf-99be-0435edc0d789-1732589947246][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 3d6d13f9-0fdb-4976-b0d5-50c31cdc5814-1732589947246 + [loading_requirement_container_meta:3d6d13f9-0fdb-4976-b0d5-50c31cdc5814-1732589947246] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 976411 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 936 + y = 4 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = aa15d119-608b-4d38-9693-93d763656406-1732589947246 + [loading_requirement_container_meta:aa15d119-608b-4d38-9693-93d763656406-1732589947246] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 96a40a84-445f-4a94-b47e-23ffa533c1a8-1715521013849 + [executable_block:96a40a84-445f-4a94-b47e-23ffa533c1a8-1715521013849][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 3b6d7f07-7950-4834-8606-2898823cfb1e-1732520818447 + [loading_requirement_container_meta:3b6d7f07-7950-4834-8606-2898823cfb1e-1732520818447] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_language_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 356 + y = 286 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = fbfc85a4-7dc5-482f-8f29-fa62e9adf63b-1715521013849 + [loading_requirement_container_meta:fbfc85a4-7dc5-482f-8f29-fa62e9adf63b-1715521013849] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 85d68fa5-efaa-4891-840f-8553ec52c9fc-1715521013849 + [executable_block:85d68fa5-efaa-4891-840f-8553ec52c9fc-1715521013849][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 52ddd953-337a-40f3-8cc3-cc8ce7823b3f-1732520818447 + [loading_requirement_container_meta:52ddd953-337a-40f3-8cc3-cc8ce7823b3f-1732520818447] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_options_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 380 + y = 286 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 1a12f5c2-099a-4bfc-9c74-5b9c5f4b942d-1715521013849 + [loading_requirement_container_meta:1a12f5c2-099a-4bfc-9c74-5b9c5f4b942d-1715521013849] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 41d45b82-73d5-46b9-8a27-5e6da9d0a4b2-1732520818447 + [executable_block:41d45b82-73d5-46b9-8a27-5e6da9d0a4b2-1732520818447][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = ba20f85f-2899-42b5-938c-9ae1095de4fa-1732520818447 + [loading_requirement_container_meta:ba20f85f-2899-42b5-938c-9ae1095de4fa-1732520818447] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -49 + y = 37 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 6623f29d-5914-4b8c-b541-286d9f01bd8a-1732520818447 + [loading_requirement_container_meta:6623f29d-5914-4b8c-b541-286d9f01bd8a-1732520818447] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 844d578b-790c-409f-8431-89eeb33efac9-1732589947246 + [executable_block:844d578b-790c-409f-8431-89eeb33efac9-1732589947246][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 71691e9e-f38f-4654-8262-f16738c5349f-1732589947246 + [loading_requirement_container_meta:71691e9e-f38f-4654-8262-f16738c5349f-1732589947246] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 9764 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 936 + y = 4 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 9676df2b-053c-49cb-8042-14c2e87b28f0-1732589947246 + [loading_requirement_container_meta:9676df2b-053c-49cb-8042-14c2e87b28f0-1732589947246] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = f9b2212b-3e2c-402e-a1a4-a186e6d8d64d-1715521013849 + [executable_block:f9b2212b-3e2c-402e-a1a4-a186e6d8d64d-1715521013849][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 6d7b1c3b-4e54-4d34-9e4d-29f9e00bd6b1-1732520818447 + [loading_requirement_container_meta:6d7b1c3b-4e54-4d34-9e4d-29f9e00bd6b1-1732520818447] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_realms_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 380 + y = 226 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = bf4438a1-7235-4f53-ab0c-fb0e00b73945-1715521013849 + [loading_requirement_container_meta:bf4438a1-7235-4f53-ab0c-fb0e00b73945-1715521013849] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 692f67a8-b3e2-4e7b-821f-fbd15954fb16-1779532599000 + [executable_block:692f67a8-b3e2-4e7b-821f-fbd15954fb16-1779532599000][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 3b7266ec-720b-48d9-a78d-dc8529c71d51-1779532599000 + [loading_requirement_container_meta:3b7266ec-720b-48d9-a78d-dc8529c71d51-1779532599000] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_logo_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 352 + y = 18 + width = 256 + height = 51 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 72201ae6-23aa-4ede-a28d-e0f8ea2d4eb3-1779532599000 + [loading_requirement_container_meta:72201ae6-23aa-4ede-a28d-e0f8ea2d4eb3-1779532599000] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = d782a05c-20ba-4584-9f01-aeb24d87b43a-1779532599001 + [executable_block:d782a05c-20ba-4584-9f01-aeb24d87b43a-1779532599001][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 7503d078-1f52-4eef-8925-45e1cbdbce65-1779532599001 + [loading_requirement_container_meta:7503d078-1f52-4eef-8925-45e1cbdbce65-1779532599001] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = title_screen_copyright_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 762 + y = 561 + width = 196 + height = 10 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = eb4ccdbb-84ee-4a85-8861-d8c76fb9f01d-1779532599001 + [loading_requirement_container_meta:eb4ccdbb-84ee-4a85-8861-d8c76fb9f01d-1779532599001] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 505523c5-243d-4054-84d5-b254f5460f87-1715521013847 + [executable_block:505523c5-243d-4054-84d5-b254f5460f87-1715521013847][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = b6641582-e2d1-490a-b7a1-ff40354c4345-1732520818446 + [loading_requirement_container_meta:b6641582-e2d1-490a-b7a1-ff40354c4345-1732520818446] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 380 + y = 202 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 9c064c0c-ffa5-4ffa-bf43-4de9b9965a9c-1715521013847 + [loading_requirement_container_meta:9c064c0c-ffa5-4ffa-bf43-4de9b9965a9c-1715521013847] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = b34c4b70-5772-4777-9926-a091b2650f8c-1779532599000 + [executable_block:b34c4b70-5772-4777-9926-a091b2650f8c-1779532599000][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = b590bf0c-25e9-4787-b1a4-596301406b44-1779532599000 + [loading_requirement_container_meta:b590bf0c-25e9-4787-b1a4-596301406b44-1779532599000] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 521 + width = 128 + height = 49 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 41b0c092-1388-4616-9003-3491a274ced2-1779532599000 + [loading_requirement_container_meta:41b0c092-1388-4616-9003-3491a274ced2-1779532599000] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = aab97552-23db-4f73-acca-15ef13ca12db-1715521013849 + [executable_block:aab97552-23db-4f73-acca-15ef13ca12db-1715521013849][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = dc89029e-e3e7-47e3-a67d-44c7d687cc8f-1732520818447 + [loading_requirement_container_meta:dc89029e-e3e7-47e3-a67d-44c7d687cc8f-1732520818447] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_singleplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 380 + y = 178 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 5ba146f5-1d39-4298-91e3-930b7a35bb0b-1715521013849 + [loading_requirement_container_meta:5ba146f5-1d39-4298-91e3-930b7a35bb0b-1715521013849] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = ce11423f-ba54-4a91-a218-d1f55902b012-1779532599000 + [executable_block:ce11423f-ba54-4a91-a218-d1f55902b012-1779532599000][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 054408cd-1c07-402b-96ad-aa8ab068be23-1779532599000 + [loading_requirement_container_meta:054408cd-1c07-402b-96ad-aa8ab068be23-1779532599000] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_splash_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 553 + y = 37 + width = 100 + height = 40 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = b900147e-3fd8-41e2-991a-93525125f404-1779532599000 + [loading_requirement_container_meta:b900147e-3fd8-41e2-991a-93525125f404-1779532599000] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + diff --git a/packet/config/fancymenu/customization/escapemenu.txt b/packet/config/fancymenu/customization/escapemenu.txt new file mode 100644 index 0000000..9454b1b --- /dev/null +++ b/packet/config/fancymenu/customization/escapemenu.txt @@ -0,0 +1,776 @@ +type = fancymenu_layout + +layout-meta { + identifier = pause_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1779534188452 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:d6c8fa2e-2683-4dd5-9cbc-1e021d6af303-1779534002116] = [groups:][instances:] +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + button_element_executable_block_identifier = 0aaadc5b-c663-4cc3-ae56-165c73a5c85f-1717234161123 + [executable_action_instance:442b5a4e-3730-4cb0-b4b7-d94c5bf1e8bf-1717234161124][action_type:openlink] = https://qm.qq.com/q/fXtnhLpw0o + [executable_block:0aaadc5b-c663-4cc3-ae56-165c73a5c85f-1717234161123][type:generic] = [executables:442b5a4e-3730-4cb0-b4b7-d94c5bf1e8bf-1717234161124;] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + label = QQ 交流群 + navigatable = true + widget_active_state_requirement_container_identifier = 1f5de326-5169-424c-865d-62c0f3218a2b-1731568860248 + [loading_requirement_container_meta:1f5de326-5169-424c-865d-62c0f3218a2b-1731568860248] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = custom_button + instance_identifier = c5f7727a-0bef-4349-995c-4f7836eff82c1688731574703 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2196 + auto_sizing_base_screen_height = 1281 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -10 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 2575b1a3-d976-49ed-8466-b8c39ed6186e-1717234161124 + [loading_requirement_container_meta:2575b1a3-d976-49ed-8466-b8c39ed6186e-1717234161124] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + +vanilla_button { + button_element_executable_block_identifier = 6e339328-3e6f-4493-ab74-6e595d535229-1739854993665 + [executable_block:6e339328-3e6f-4493-ab74-6e595d535229-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + label = World Share + navigatable = true + widget_active_state_requirement_container_identifier = 28f30bd8-2f9e-4b45-8e00-b95e575aa4bb-1739854993665 + [loading_requirement_container_meta:28f30bd8-2f9e-4b45-8e00-b95e575aa4bb-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_share_to_lan_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2196 + auto_sizing_base_screen_height = 1281 + sticky_anchor = false + anchor_point = mid-centered + x = 4 + y = 14 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 68286ffd-3433-4837-b012-77d1710625b1-1739854993665 + [loading_requirement_container_meta:68286ffd-3433-4837-b012-77d1710625b1-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 2399de1b-7328-47dc-840a-f8e9a79554d8-1731568860248 + [executable_block:2399de1b-7328-47dc-840a-f8e9a79554d8-1731568860248][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = eff216ef-4d72-4976-97f1-c3f8cba3f01b-1731568860248 + [loading_requirement_container_meta:eff216ef-4d72-4976-97f1-c3f8cba3f01b-1731568860248] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 374282 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = vanilla + x = 240 + y = 139 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 6f5df7d7-688f-4fdd-971f-1522d57f18ce-1731568860248 + [loading_requirement_container_meta:6f5df7d7-688f-4fdd-971f-1522d57f18ce-1731568860248] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 6b501ce1-17d6-4140-bd12-4c9d33afb599-1739854993665 + [executable_block:6b501ce1-17d6-4140-bd12-4c9d33afb599-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = e7730020-a811-4af8-a683-04baf94b27d1-1739854993665 + [loading_requirement_container_meta:e7730020-a811-4af8-a683-04baf94b27d1-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_disconnect_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = 38 + width = 204 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 4d882479-fe35-4e10-bef2-64969a9b155c-1739854993665 + [loading_requirement_container_meta:4d882479-fe35-4e10-bef2-64969a9b155c-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 299ec86e-aa89-44a5-be29-58f2b9c0d4b3-1739854993665 + [executable_block:299ec86e-aa89-44a5-be29-58f2b9c0d4b3-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 9c793d54-88e4-49bb-bb13-392910d91799-1739854993665 + [loading_requirement_container_meta:9c793d54-88e4-49bb-bb13-392910d91799-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_send_feedback_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -22 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 6ba3d30e-256c-4c39-b309-7245837e84f2-1739854993665 + [loading_requirement_container_meta:6ba3d30e-256c-4c39-b309-7245837e84f2-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 4f4c2f38-9a66-4068-a638-9818b7d4dc74-1739854993665 + [executable_block:4f4c2f38-9a66-4068-a638-9818b7d4dc74-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 435446f1-e711-4d0e-b60d-b2e898d4a67b-1739854993665 + [loading_requirement_container_meta:435446f1-e711-4d0e-b60d-b2e898d4a67b-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_report_bugs_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = 4 + y = -22 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 420d8848-e677-40e2-bb0c-957bf669a55c-1739854993665 + [loading_requirement_container_meta:420d8848-e677-40e2-bb0c-957bf669a55c-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = f3fd653d-e8ad-4221-aa00-a76a020f05ba-1739854993665 + [executable_block:f3fd653d-e8ad-4221-aa00-a76a020f05ba-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 96e580db-5e42-4ba8-8546-3c93857ba191-1739854993665 + [loading_requirement_container_meta:96e580db-5e42-4ba8-8546-3c93857ba191-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_stats_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = 4 + y = -34 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = fccafd4e-0e65-4b9a-830b-d251a958c907-1739854993665 + [loading_requirement_container_meta:fccafd4e-0e65-4b9a-830b-d251a958c907-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 13ea361e-a644-4e4f-b3c6-c1cbe4745f8d-1720009105887 + [executable_block:13ea361e-a644-4e4f-b3c6-c1cbe4745f8d-1720009105887][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = f8c47f1b-e267-455d-890f-7118b125705f-1731568860248 + [loading_requirement_container_meta:f8c47f1b-e267-455d-890f-7118b125705f-1731568860248] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 20960 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -125 + y = -16 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 499a2c71-5b6a-4a6a-ad1e-b6b856432e06-1720009105887 + [loading_requirement_container_meta:499a2c71-5b6a-4a6a-ad1e-b6b856432e06-1720009105887] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 6cd38d1f-d746-4ad9-8fdf-04a595f39c50-1739854993665 + [executable_block:6cd38d1f-d746-4ad9-8fdf-04a595f39c50-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = ad203d5d-5372-4096-b5fc-40df99e7c2ff-1739854993665 + [loading_requirement_container_meta:ad203d5d-5372-4096-b5fc-40df99e7c2ff-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_return_to_game_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -57 + width = 204 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 0fd94a37-946f-4e66-8a9c-2cc2a6df179b-1739854993665 + [loading_requirement_container_meta:0fd94a37-946f-4e66-8a9c-2cc2a6df179b-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = fe428cf6-6af2-4385-ae94-e861a92ab897-1739854993665 + [executable_block:fe428cf6-6af2-4385-ae94-e861a92ab897-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 8e15d8c4-1d80-4b1f-86ba-8c1921cf6cbe-1739854993665 + [loading_requirement_container_meta:8e15d8c4-1d80-4b1f-86ba-8c1921cf6cbe-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_options_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = 14 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = ce9f4415-ef18-4b04-aaf7-3dd14aa863c9-1739854993665 + [loading_requirement_container_meta:ce9f4415-ef18-4b04-aaf7-3dd14aa863c9-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 93629e1f-f524-4c5d-bb22-8b05d7d3e1a2-1717238080383 + [executable_block:93629e1f-f524-4c5d-bb22-8b05d7d3e1a2-1717238080383][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = e8d9eabb-eab7-44c1-be2e-763288043f47-1731568860248 + [loading_requirement_container_meta:e8d9eabb-eab7-44c1-be2e-763288043f47-1731568860248] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 40 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -98 + width = 61 + height = 9 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 15dd8c1a-0c5f-4e8e-89cd-f51270db3519-1717238080383 + [loading_requirement_container_meta:15dd8c1a-0c5f-4e8e-89cd-f51270db3519-1717238080383] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = fdfe67cb-e019-4f98-b36e-d340619becd7-1717234161122 + [executable_block:fdfe67cb-e019-4f98-b36e-d340619becd7-1717234161122][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + label = Mods + navigatable = true + widget_active_state_requirement_container_identifier = c22753b8-72da-47d1-9c0e-41e4c35b01cf-1731568860248 + [loading_requirement_container_meta:c22753b8-72da-47d1-9c0e-41e4c35b01cf-1731568860248] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 398324 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = 4 + y = -10 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = c6dd6f5f-d632-49ed-a34a-14e62f0f015e-1717234161122 + [loading_requirement_container_meta:c6dd6f5f-d632-49ed-a34a-14e62f0f015e-1717234161122] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = e6da0dc5-4347-4db2-9c67-84a3e294e839-1739854993665 + [executable_block:e6da0dc5-4347-4db2-9c67-84a3e294e839-1739854993665][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = bafd3df8-6886-4192-8304-976a5bcad3b4-1739854993665 + [loading_requirement_container_meta:bafd3df8-6886-4192-8304-976a5bcad3b4-1739854993665] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = pause_advancements_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -34 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 849a3d85-eae0-48f3-817b-dbc5cb5ac7a2-1739854993665 + [loading_requirement_container_meta:849a3d85-eae0-48f3-817b-dbc5cb5ac7a2-1739854993665] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + diff --git a/packet/config/fancymenu/customization/loading.txt b/packet/config/fancymenu/customization/loading.txt new file mode 100644 index 0000000..1b38c69 --- /dev/null +++ b/packet/config/fancymenu/customization/loading.txt @@ -0,0 +1,200 @@ +type = fancymenu_layout + +layout-meta { + identifier = drippy_loading_overlay + render_custom_elements_behind_vanilla = false + last_edited_time = 1779532492094 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:08584b0e-d1f7-487f-8a2e-424041c948f3-1779532207362] = [groups:][instances:] +} + +menu_background { + image_path = [source:local]/config/fancymenu/assets/v5.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity = 0.02 + invert_parallax = false + background_type = image +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + bar_color = #5295FFFF + bar_texture = [source:local]/config/fancymenu/assets/ltd_11.png + background_color = #ABC8F7FF + background_texture = [source:local]/config/fancymenu/assets/blank.png + direction = right + progress_for_element_anchor = false + progress_source = 100 + value_mode = percentage + smooth_filling_animation = true + element_type = progress_bar + instance_identifier = 90fcc616-2b8c-4bb6-a430-fe8c28a62ea2-1722523671528 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = -110 + y = 177 + width = 250 + height = 50 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 44694a36-d671-4a07-aa51-e5a1e161d9d9-1722523671528 + [loading_requirement_container_meta:44694a36-d671-4a07-aa51-e5a1e161d9d9-1722523671528] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + +vanilla_button { + button_element_executable_block_identifier = 11ba05dc-054e-45e0-8152-b21aaa203868-1717234161128 + [executable_block:11ba05dc-054e-45e0-8152-b21aaa203868-1717234161128][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = bff3ba54-63a5-4c21-9a2c-803b3fdc1ee8-1779532183122 + [loading_requirement_container_meta:bff3ba54-63a5-4c21-9a2c-803b3fdc1ee8-1779532183122] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = progress_bar + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 195 + y = 470 + width = 570 + height = 10 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = cd18e115-cc1a-4aa4-bb9c-267bee70f229-1717234161128 + [loading_requirement_container_meta:cd18e115-cc1a-4aa4-bb9c-267bee70f229-1717234161128] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 9b504ea6-1ace-4921-b160-1b113deaaf8b-1717234161128 + [executable_block:9b504ea6-1ace-4921-b160-1b113deaaf8b-1717234161128][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = bcf8c209-4ad4-400b-8819-d30556ef0c09-1779532183122 + [loading_requirement_container_meta:bcf8c209-4ad4-400b-8819-d30556ef0c09-1779532183122] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mojang_logo + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 195 + y = 214 + width = 570 + height = 142 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 249a112e-b837-4b5e-b76e-d011ad650dca-1717234161128 + [loading_requirement_container_meta:249a112e-b837-4b5e-b76e-d011ad650dca-1717234161128] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + diff --git a/packet/config/fancymenu/customization/luna_screen.txt b/packet/config/fancymenu/customization/luna_screen.txt new file mode 100644 index 0000000..3b29027 --- /dev/null +++ b/packet/config/fancymenu/customization/luna_screen.txt @@ -0,0 +1,319 @@ +type = fancymenu_layout + +layout-meta { + identifier = share_to_lan_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1779534213382 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:9d62d5b5-e3fa-4951-959b-353c15482b17-1779534203594] = [groups:][instances:] +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = e95f2c66-794b-46ef-af49-d03362e4dd53-1715521013866 + [executable_block:e95f2c66-794b-46ef-af49-d03362e4dd53-1715521013866][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = f260ac60-ca12-4208-8ae9-945afc3a1ad4-1732521337685 + [loading_requirement_container_meta:f260ac60-ca12-4208-8ae9-945afc3a1ad4-1732521337685] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 505972 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -130 + y = 27 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = c8a5d9c1-b405-4c06-944d-092c30d7c4ff-1715521013866 + [loading_requirement_container_meta:c8a5d9c1-b405-4c06-944d-092c30d7c4ff-1715521013866] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = ae768b5f-c154-4836-9494-fefa651f4549-1715521013866 + [executable_block:ae768b5f-c154-4836-9494-fefa651f4549-1715521013866][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 5b1a9c35-d8f5-480b-8c54-001b85614e75-1732521337685 + [loading_requirement_container_meta:5b1a9c35-d8f5-480b-8c54-001b85614e75-1732521337685] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 345100 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = 10 + y = -33 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 35f5fbe8-6078-40de-bf8c-173e02b71861-1715521013866 + [loading_requirement_container_meta:35f5fbe8-6078-40de-bf8c-173e02b71861-1715521013866] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = e1f8f39c-7434-42c1-a1f7-e7b5be4d7d20-1715521013866 + [executable_block:e1f8f39c-7434-42c1-a1f7-e7b5be4d7d20-1715521013866][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + label = Share World + navigatable = true + widget_active_state_requirement_container_identifier = dee2dd18-9a55-4a7a-b331-e7119ded304d-1732521337685 + [loading_requirement_container_meta:dee2dd18-9a55-4a7a-b331-e7119ded304d-1732521337685] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 345972 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = 10 + y = 27 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = b0131d44-8e49-4b4c-89f4-f3dbcbe42e4c-1715521013866 + [loading_requirement_container_meta:b0131d44-8e49-4b4c-89f4-f3dbcbe42e4c-1715521013866] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 8c29d307-0099-40ba-a4a8-2a9de88be34b-1715521013866 + [executable_block:8c29d307-0099-40ba-a4a8-2a9de88be34b-1715521013866][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 81caec6f-fafc-4e1c-a7e3-d3505683ba75-1732521337685 + [loading_requirement_container_meta:81caec6f-fafc-4e1c-a7e3-d3505683ba75-1732521337685] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 425160 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 405 + y = 160 + width = 150 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = be14af31-2db1-4309-a489-5c11c8f567cb-1715521013866 + [loading_requirement_container_meta:be14af31-2db1-4309-a489-5c11c8f567cb-1715521013866] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = aa407507-5e98-45d3-bc26-3f6ede0f32bb-1715521013866 + [executable_block:aa407507-5e98-45d3-bc26-3f6ede0f32bb-1715521013866][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 7f8420f4-246a-4e0b-932d-2883f2d70e31-1732521337685 + [loading_requirement_container_meta:7f8420f4-246a-4e0b-932d-2883f2d70e31-1732521337685] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 505100 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = mid-centered + x = -130 + y = -33 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = c27a3d42-0279-48f7-a941-708dee88c2f8-1715521013866 + [loading_requirement_container_meta:c27a3d42-0279-48f7-a941-708dee88c2f8-1715521013866] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + diff --git a/packet/config/fancymenu/customization/mpuc.txt b/packet/config/fancymenu/customization/mpuc.txt new file mode 100644 index 0000000..190b17a --- /dev/null +++ b/packet/config/fancymenu/customization/mpuc.txt @@ -0,0 +1,60 @@ +type = fancymenu_layout + +layout-meta { + identifier = com.jab125.mpuc.client.gui.screen.changelog.ChangelogScreen + render_custom_elements_behind_vanilla = false + last_edited_time = 1717234161141 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:7d7a8d67-e5dc-4425-9ec0-8485364aaf44-1717234161141] = [groups:][instances:] +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false +} + +vanilla_button { + button_element_executable_block_identifier = f6bb6152-fb53-4210-9e2d-0b3cbfca49c6-1717234161141 + [executable_block:f6bb6152-fb53-4210-9e2d-0b3cbfca49c6-1717234161141][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = 9773 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 0 + y = 0 + width = 0 + height = 0 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 39b6088c-e495-46d8-b88f-6b97980ffd4d-1717234161141 + [loading_requirement_container_meta:39b6088c-e495-46d8-b88f-6b97980ffd4d-1717234161141] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/packet/config/fancymenu/customization/multi.txt b/packet/config/fancymenu/customization/multi.txt new file mode 100644 index 0000000..a8d739b --- /dev/null +++ b/packet/config/fancymenu/customization/multi.txt @@ -0,0 +1,403 @@ +type = fancymenu_layout + +layout-meta { + identifier = join_multiplayer_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1779626958189 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:8b484244-9913-432c-a4fb-78f15af16644-1779626875747] = [groups:][instances:] +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = 8a41b81e-020b-42f7-b8e2-fece54c008e1-1732519014256 + [executable_block:8a41b81e-020b-42f7-b8e2-fece54c008e1-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 6c7cc890-3111-4874-bc8b-7cfe21df4482-1732519014256 + [loading_requirement_container_meta:6c7cc890-3111-4874-bc8b-7cfe21df4482-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 346970 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 273 + y = 427 + width = 74 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 66ba35dd-64d2-4e7c-af1f-cebf844343ab-1732519014256 + [loading_requirement_container_meta:66ba35dd-64d2-4e7c-af1f-cebf844343ab-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 6775e7b4-a0f6-4f37-b937-91a7adcf7804-1732519014256 + [executable_block:6775e7b4-a0f6-4f37-b937-91a7adcf7804-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 7f533708-3147-42a8-971d-12d4aa017e91-1732519014256 + [loading_requirement_container_meta:7f533708-3147-42a8-971d-12d4aa017e91-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 33 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 3 + y = 3 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = e7bcfd21-e21b-461a-8252-acbf4a5dcc92-1732519014256 + [loading_requirement_container_meta:e7bcfd21-e21b-461a-8252-acbf4a5dcc92-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 5f261c31-e3d9-4086-af0f-e777e74d86c1-1732519014256 + [executable_block:5f261c31-e3d9-4086-af0f-e777e74d86c1-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 004a88b2-6724-42eb-8dda-17226828e345-1732519014256 + [loading_requirement_container_meta:004a88b2-6724-42eb-8dda-17226828e345-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 554946 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 481 + y = 403 + width = 100 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 05be81ed-0156-405d-8040-73a2ff99da26-1732519014256 + [loading_requirement_container_meta:05be81ed-0156-405d-8040-73a2ff99da26-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = ce457d31-5f71-423e-b581-7e4db7443205-1732519014256 + [executable_block:ce457d31-5f71-423e-b581-7e4db7443205-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = aedf31d7-fc36-4e6c-84fb-82e7f0f629fa-1732519014256 + [loading_requirement_container_meta:aedf31d7-fc36-4e6c-84fb-82e7f0f629fa-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 346946 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 273 + y = 403 + width = 100 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = c8d916c0-4d54-4f8a-af12-011e82e8abea-1732519014256 + [loading_requirement_container_meta:c8d916c0-4d54-4f8a-af12-011e82e8abea-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = c827f6a3-630f-44d0-b30f-1fefdd121d67-1732519014256 + [executable_block:c827f6a3-630f-44d0-b30f-1fefdd121d67-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = b729cfe3-55f5-4d18-9b96-90a620bf1aa6-1732519014256 + [loading_requirement_container_meta:b729cfe3-55f5-4d18-9b96-90a620bf1aa6-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 450946 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 377 + y = 403 + width = 100 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 148e5ebb-f520-4918-b3da-9c961f29deeb-1732519014256 + [loading_requirement_container_meta:148e5ebb-f520-4918-b3da-9c961f29deeb-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 7f6700c8-06f9-409c-9e09-375b8225d7f5-1732519014256 + [executable_block:7f6700c8-06f9-409c-9e09-375b8225d7f5-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = e54066ac-744d-48ce-861f-5074a99e24c6-1732519014256 + [loading_requirement_container_meta:e54066ac-744d-48ce-861f-5074a99e24c6-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 580970 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 507 + y = 427 + width = 74 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 3acc38ff-18d4-4342-99cd-0716c9d68b70-1732519014256 + [loading_requirement_container_meta:3acc38ff-18d4-4342-99cd-0716c9d68b70-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 56346c0c-fc46-4a34-aba1-22d3252ea27c-1732519014256 + [executable_block:56346c0c-fc46-4a34-aba1-22d3252ea27c-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 9395f4c2-9f94-427a-ab00-968371fc44e3-1732519014256 + [loading_requirement_container_meta:9395f4c2-9f94-427a-ab00-968371fc44e3-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 424970 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 351 + y = 427 + width = 74 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 7b6d2871-f02b-4450-a6d1-69902b128462-1732519014256 + [loading_requirement_container_meta:7b6d2871-f02b-4450-a6d1-69902b128462-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 88165af3-f055-4d8c-b071-31c4c0fc9cc1-1715521013885 + [executable_block:88165af3-f055-4d8c-b071-31c4c0fc9cc1-1715521013885][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + label = Bisect Servers + navigatable = true + widget_active_state_requirement_container_identifier = 79c21d6f-0f84-43ef-922f-6a7b336ff324-1732519014256 + [loading_requirement_container_meta:79c21d6f-0f84-43ef-922f-6a7b336ff324-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 660946 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2562 + auto_sizing_base_screen_height = 1371 + sticky_anchor = false + anchor_point = top-right + x = -123 + y = 3 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 1ecd2bf2-ca0c-4aab-94e5-f706f6884cdd-1715521013885 + [loading_requirement_container_meta:1ecd2bf2-ca0c-4aab-94e5-f706f6884cdd-1715521013885] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 34d60b59-44f9-4699-a62b-ca9c0d4e449f-1732519014256 + [executable_block:34d60b59-44f9-4699-a62b-ca9c0d4e449f-1732519014256][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 4477440f-149c-4ce1-8c6f-4c7226331a5c-1732519014256 + [loading_requirement_container_meta:4477440f-149c-4ce1-8c6f-4c7226331a5c-1732519014256] = [groups:][instances:] + element_type = vanilla_button + instance_identifier = 502970 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 429 + y = 427 + width = 74 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 884a992c-a939-44d6-9d57-a50a06d25e60-1732519014256 + [loading_requirement_container_meta:884a992c-a939-44d6-9d57-a50a06d25e60-1732519014256] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/packet/config/fancymenu/customization/multiplayer.txt b/packet/config/fancymenu/customization/multiplayer.txt new file mode 100644 index 0000000..a533249 --- /dev/null +++ b/packet/config/fancymenu/customization/multiplayer.txt @@ -0,0 +1,61 @@ +type = fancymenu_layout + +layout-meta { + identifier = com.bisecthosting.mods.bhmenu.modules.servercreatorbanner.screens.BHMultiplayerScreen + render_custom_elements_behind_vanilla = false + last_edited_time = 1715521013888 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:23879fcb-3470-4de7-8f20-7b74465fcc95-1715521013888] = [groups:][instances:] +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false +} + +vanilla_button { + button_element_executable_block_identifier = 389897eb-7d17-4044-97c4-bdcc5db5cf21-1715521013888 + [executable_block:389897eb-7d17-4044-97c4-bdcc5db5cf21-1715521013888][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + label = Bisect Public Servers + navigatable = true + element_type = vanilla_button + instance_identifier = 660946 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = top-right + x = -123 + y = 3 + width = 120 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = a2c003fc-b19d-4462-9325-48eeaec93526-1715521013888 + [loading_requirement_container_meta:a2c003fc-b19d-4462-9325-48eeaec93526-1715521013888] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/packet/config/fancymenu/customization/safety.txt b/packet/config/fancymenu/customization/safety.txt new file mode 100644 index 0000000..049ae17 --- /dev/null +++ b/packet/config/fancymenu/customization/safety.txt @@ -0,0 +1,295 @@ +type = fancymenu_layout + +layout-meta { + identifier = create_world_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1718112002843 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:a2916cb5-b6a5-4d79-a51d-bb1fa9e11282-1718111329337] = [groups:][instances:5b7e078a-c197-4ae9-befe-841b5ccbdd36-1718111337454;] + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][req_id:5b7e078a-c197-4ae9-befe-841b5ccbdd36-1718111337454] = essential +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false +} + +element { + interactable = true + source = You have added an extra mod to the modpack which is incompatible, which may cause major issues!%n%The purpose of this warning is to ensure you have a stable experience without any unexpected problems.%n%If you are unsure what mod you added to cause this warning, you can ask for support in discord.gg/lunapixel + source_mode = direct + shadow = true + scale = 1.0 + base_color = #FFFFFFFF + text_border = 2 + line_spacing = 2 + enable_scrolling = true + auto_line_wrapping = true + remove_html_breaks = true + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + quote_color = #818181FF + quote_indent = 8.0 + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + bullet_list_indent = 8.0 + bullet_list_spacing = 3.0 + parse_markdown = true + element_type = text_v2 + instance_identifier = bfa2c337-5637-4132-beea-8099f0c15d45-1718111423537 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = mid-centered + x = -178 + y = -23 + width = 366 + height = 125 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 7bf4d056-ef2b-4079-a39c-bb1b7ea54c79-1718111423537 + [loading_requirement_container_meta:7bf4d056-ef2b-4079-a39c-bb1b7ea54c79-1718111423537] = [groups:][instances:] +} + +vanilla_button { + button_element_executable_block_identifier = 3e9dae1c-15b4-4f2e-b307-f2c3fe7f6140-1718111329337 + [executable_block:3e9dae1c-15b4-4f2e-b307-f2c3fe7f6140-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = cancel_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = bottom-centered + x = -75 + y = -20 + width = 150 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = d1245040-a362-46f5-ae52-ef91c14738df-1718111329337 + [loading_requirement_container_meta:d1245040-a362-46f5-ae52-ef91c14738df-1718111329337] = [groups:][instances:] + is_hidden = false + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = db7655f7-5e69-4b76-b0fd-1c6bcf71e925-1718111329337 + [executable_block:db7655f7-5e69-4b76-b0fd-1c6bcf71e925-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = difficulty_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 322 + y = 142 + width = 210 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = fc1978ea-13f9-4c7b-9737-40f670d02df8-1718111329337 + [loading_requirement_container_meta:fc1978ea-13f9-4c7b-9737-40f670d02df8-1718111329337] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 4a92e641-7084-4ddc-bb3c-d2d4a80e2cf5-1718111329337 + [executable_block:4a92e641-7084-4ddc-bb3c-d2d4a80e2cf5-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = name_label + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 323 + y = 71 + width = 55 + height = 9 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 2804abc3-31a5-4db9-8468-1906544b4b7f-1718111329337 + [loading_requirement_container_meta:2804abc3-31a5-4db9-8468-1906544b4b7f-1718111329337] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = ed777aff-a570-477e-8b98-888180ee5799-1718111329337 + [executable_block:ed777aff-a570-477e-8b98-888180ee5799-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = create_world_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 272 + y = 426 + width = 150 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 195670f4-95b7-4084-a9c0-e987e7324e54-1718111329337 + [loading_requirement_container_meta:195670f4-95b7-4084-a9c0-e987e7324e54-1718111329337] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = ea7a9699-4bfa-4993-a1f9-f4be59fe0f2f-1718111329337 + [executable_block:ea7a9699-4bfa-4993-a1f9-f4be59fe0f2f-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = allow_cheats_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 322 + y = 170 + width = 210 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = e14f7358-f02b-42b8-ac14-ae3430fc1d6d-1718111329337 + [loading_requirement_container_meta:e14f7358-f02b-42b8-ac14-ae3430fc1d6d-1718111329337] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 8d258f68-3d25-4497-8f64-c0b446fad14a-1718111329337 + [executable_block:8d258f68-3d25-4497-8f64-c0b446fad14a-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = gamemode_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 322 + y = 114 + width = 210 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 93efccf2-eeee-4d82-963d-825fdf5763ad-1718111329337 + [loading_requirement_container_meta:93efccf2-eeee-4d82-963d-825fdf5763ad-1718111329337] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 18f7b8b3-13e3-4b10-9d61-593a31668224-1718111329337 + [executable_block:18f7b8b3-13e3-4b10-9d61-593a31668224-1718111329337][type:generic] = [executables:] + restartbackgroundanimations = true + loopbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + element_type = vanilla_button + instance_identifier = world_name_field + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in = false + fade_in_speed = 1.0 + anchor_point = vanilla + x = 323 + y = 85 + width = 208 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 7141dea4-1f83-47f5-9632-bdadf6c2f2cf-1718111329337 + [loading_requirement_container_meta:7141dea4-1f83-47f5-9632-bdadf6c2f2cf-1718111329337] = [groups:][instances:] + is_hidden = true + automated_button_clicks = 0 + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/packet/config/fancymenu/customization/title_screen_layout.txt b/packet/config/fancymenu/customization/title_screen_layout.txt new file mode 100644 index 0000000..75d7ece --- /dev/null +++ b/packet/config/fancymenu/customization/title_screen_layout.txt @@ -0,0 +1,1058 @@ +type = fancymenu_layout + +layout-meta { + identifier = title_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1780053279355 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:4ec8c4bc-2c47-4fd3-86cf-0270be6012fc-1780053254983] = [groups:][instances:] +} + +menu_background { + panorama_name = ltdpanorama + background_type = panorama +} + +customization { + action = backgroundoptions + keepaspectratio = false +} + +scroll_list_customization { + preserve_scroll_list_header_footer_aspect_ratio = true + render_scroll_list_header_shadow = true + render_scroll_list_footer_shadow = true + show_scroll_list_header_footer_preview_in_editor = false + repeat_scroll_list_header_texture = false + repeat_scroll_list_footer_texture = false + show_screen_background_overlay_on_custom_background = false + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + source = null + source_mode = vanilla + scale = 1.0 + shadow = true + rotation = 20.0 + base_color = #FFFF00FF + refresh = false + bouncing = true + element_type = splash_text + instance_identifier = e3dff1b7-da1d-4721-902b-d23d75c515a2-1720270442480 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = e7afe975-1746-4504-93b1-86993cae14cc-1726497869623 + x = 145 + y = -3 + width = 100 + height = 30 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 71c8dc95-792a-48ef-ae17-15568d738c57-1720270442480 + [loading_requirement_container_meta:71c8dc95-792a-48ef-ae17-15568d738c57-1720270442480] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + +element { + source = [source:local]/config/fancymenu/assets/ltdsky.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + image_tint = #FFFFFF + element_type = image + instance_identifier = e7afe975-1746-4504-93b1-86993cae14cc-1726497869623 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = -120 + y = -103 + width = 245 + height = 100 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 8fbaad1c-e50d-4d10-90f0-37299485aa08-1726497869623 + [loading_requirement_container_meta:8fbaad1c-e50d-4d10-90f0-37299485aa08-1726497869623] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + +element { + copy_client_player = true + playername = R3944Realms + auto_skin = false + auto_cape = false + slim = true + skin_source = R3944Realms + scale = 60 + parrot = false + parrot_left_shoulder = false + is_baby = false + crouching = false + showname = true + head_follows_mouse = true + body_follows_mouse = false + headrotationx = -20.324148 + headrotationy = 0.0 + bodyrotationx = -20.12966 + bodyrotationy = 0.48622367 + head_z_rot = 0.0 + left_arm_x_rot = -0.09724473 + left_arm_y_rot = 0.0 + left_arm_z_rot = 0.0 + right_arm_x_rot = 0.0 + right_arm_y_rot = 0.0 + right_arm_z_rot = 0.0 + left_leg_x_rot = 0.0 + left_leg_y_rot = 0.0 + left_leg_z_rot = 0.0 + right_leg_x_rot = 0.0 + right_leg_y_rot = 0.0 + right_leg_z_rot = 0.0 + body_x_rot_advanced_mode = false + body_y_rot_advanced_mode = false + head_x_rot_advanced_mode = false + head_y_rot_advanced_mode = false + head_z_rot_advanced_mode = false + left_arm_x_rot_advanced_mode = false + left_arm_y_rot_advanced_mode = false + left_arm_z_rot_advanced_mode = false + right_arm_x_rot_advanced_mode = false + right_arm_y_rot_advanced_mode = false + right_arm_z_rot_advanced_mode = false + left_leg_x_rot_advanced_mode = false + left_leg_y_rot_advanced_mode = false + left_leg_z_rot_advanced_mode = false + right_leg_x_rot_advanced_mode = false + right_leg_y_rot_advanced_mode = false + right_leg_z_rot_advanced_mode = false + element_type = fancymenu_customization_player_entity + instance_identifier = cdd93b2c-01c8-4772-be20-7bc75cefccdc-1780052254677 + appearance_delay = first_time + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1012 + sticky_anchor = false + anchor_point = mid-centered + x = -205 + y = -40 + width = 36 + height = 108 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 212cb44b-a878-4236-a461-b596242aa51b-1780052254677 + [loading_requirement_container_meta:212cb44b-a878-4236-a461-b596242aa51b-1780052254677] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false +} + +vanilla_button { + button_element_executable_block_identifier = bda83ba2-d95c-480a-8c36-fe03d17893d9-1720269570510 + [executable_block:bda83ba2-d95c-480a-8c36-fe03d17893d9-1720269570510][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 3c11257a-e068-4af3-8342-16a7fb2a2c40-1779530466787 + [loading_requirement_container_meta:3c11257a-e068-4af3-8342-16a7fb2a2c40-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_options_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = -100 + y = 67 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 198e91e7-4039-4fab-9435-d99427fc4d72-1720269570510 + [loading_requirement_container_meta:198e91e7-4039-4fab-9435-d99427fc4d72-1720269570510] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 7a1aef6a-865c-4dda-b57a-553bb5225889-1720270812598 + [executable_block:7a1aef6a-865c-4dda-b57a-553bb5225889-1720270812598][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 87dd14ad-56b2-4ef6-baae-1e212724d35b-1779530466787 + [loading_requirement_container_meta:87dd14ad-56b2-4ef6-baae-1e212724d35b-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_language_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = -125 + y = 67 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 1e9387f2-20e5-44fa-ad60-6882a5bb8dca-1720270812598 + [loading_requirement_container_meta:1e9387f2-20e5-44fa-ad60-6882a5bb8dca-1720270812598] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 01e6485c-d86c-4ed9-9a33-a7c3d83187f9-1720269570510 + [executable_block:01e6485c-d86c-4ed9-9a33-a7c3d83187f9-1720269570510][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 81a18687-e606-4b4c-8182-eb51f3353738-1779530466787 + [loading_requirement_container_meta:81a18687-e606-4b4c-8182-eb51f3353738-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = 2 + y = 67 + width = 98 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = f7fefe3e-31e4-4d80-ad2b-d7a43d09ebb9-1720269570510 + [loading_requirement_container_meta:f7fefe3e-31e4-4d80-ad2b-d7a43d09ebb9-1720269570510] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 8a76d330-9fef-417d-b704-8ff907ffccd6-1720269570510 + [executable_block:8a76d330-9fef-417d-b704-8ff907ffccd6-1720269570510][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 8c5fdadf-30b8-4d37-8761-c0f62edefafd-1779530466786 + [loading_requirement_container_meta:8c5fdadf-30b8-4d37-8761-c0f62edefafd-1779530466786] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_realms_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 147 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 34bbfb1c-3cf0-4f6c-8349-8559cf3934b4-1720269570510 + [loading_requirement_container_meta:34bbfb1c-3cf0-4f6c-8349-8559cf3934b4-1720269570510] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = bff8609c-746e-4601-b26e-4f45fe8df9de-1779530466787 + [executable_block:bff8609c-746e-4601-b26e-4f45fe8df9de-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 006905cc-57a4-491a-a5bf-c2578bfe17d6-1779530466787 + [loading_requirement_container_meta:006905cc-57a4-491a-a5bf-c2578bfe17d6-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_splash_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 313 + y = 37 + width = 100 + height = 40 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 25c15915-6893-49db-ba85-4fcb87d501a2-1779530466787 + [loading_requirement_container_meta:25c15915-6893-49db-ba85-4fcb87d501a2-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 7cc159c2-23fe-4e6d-afcb-8ddd84adb40c-1779530466787 + [executable_block:7cc159c2-23fe-4e6d-afcb-8ddd84adb40c-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 177e2166-385c-4196-9383-f87784c47d3f-1779530466787 + [loading_requirement_container_meta:177e2166-385c-4196-9383-f87784c47d3f-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 97641 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 456 + y = 4 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 2e94c296-bdd0-4b45-b538-4e44da71b4b2-1779530466787 + [loading_requirement_container_meta:2e94c296-bdd0-4b45-b538-4e44da71b4b2-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = b0e73b3e-c2b4-453d-ba29-4c69899b32cf-1722521485012 + [executable_block:b0e73b3e-c2b4-453d-ba29-4c69899b32cf-1722521485012][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 13a0e261-287b-4935-aea3-d82beac9b68b-1779530466787 + [loading_requirement_container_meta:13a0e261-287b-4935-aea3-d82beac9b68b-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = forge_titlescreen_mods_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 171 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = ec6bf991-a962-4898-bcfe-48b2419e91fe-1722521485012 + [loading_requirement_container_meta:ec6bf991-a962-4898-bcfe-48b2419e91fe-1722521485012] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = b79d29af-0b61-44dd-99a1-876c46961639-1720269570510 + [executable_block:b79d29af-0b61-44dd-99a1-876c46961639-1720269570510][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 3e523bd6-d6ef-4476-84b8-117104b8e66e-1779530466787 + [loading_requirement_container_meta:3e523bd6-d6ef-4476-84b8-117104b8e66e-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_singleplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = -100 + y = 17 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 3a070045-2118-4225-b80a-d777ec84a807-1720269570510 + [loading_requirement_container_meta:3a070045-2118-4225-b80a-d777ec84a807-1720269570510] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 389e2b66-2fd4-4b68-a77f-f6341d0c7792-1779530466787 + [executable_block:389e2b66-2fd4-4b68-a77f-f6341d0c7792-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 267e903f-58a5-4f59-abae-efe8cdafeaaa-1779530466787 + [loading_requirement_container_meta:267e903f-58a5-4f59-abae-efe8cdafeaaa-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 976411 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 456 + y = 4 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 09b0f18a-517b-4d48-a5a3-89046a1367e5-1779530466787 + [loading_requirement_container_meta:09b0f18a-517b-4d48-a5a3-89046a1367e5-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = fc9ab5f6-a635-4bda-9592-0f2fa7ed4110-1779530466787 + [executable_block:fc9ab5f6-a635-4bda-9592-0f2fa7ed4110-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 4d1b1838-60c7-480c-aea1-4fbf3009160f-1779530466787 + [loading_requirement_container_meta:4d1b1838-60c7-480c-aea1-4fbf3009160f-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = title_screen_copyright_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 282 + y = 243 + width = 196 + height = 10 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = d5db1acf-2f3b-4cd5-bd1e-771c4a3fec32-1779530466787 + [loading_requirement_container_meta:d5db1acf-2f3b-4cd5-bd1e-771c4a3fec32-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = af98b05c-f2f5-4003-9291-085ffbd52767-1779530466787 + [executable_block:af98b05c-f2f5-4003-9291-085ffbd52767-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = ec91e3f9-cf02-437f-8f25-ca90bf531c39-1779530466787 + [loading_requirement_container_meta:ec91e3f9-cf02-437f-8f25-ca90bf531c39-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = 9764 + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 456 + y = 4 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = 81cf7bdd-c1df-43ec-a1fb-1f112d8900bd-1779530466787 + [loading_requirement_container_meta:81cf7bdd-c1df-43ec-a1fb-1f112d8900bd-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = cc583147-d32d-4d2f-b12f-cfab564445a9-1779530466787 + [executable_block:cc583147-d32d-4d2f-b12f-cfab564445a9-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 70177fd5-a07b-4061-9f5d-be08270c7dbd-1779530466787 + [loading_requirement_container_meta:70177fd5-a07b-4061-9f5d-be08270c7dbd-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 203 + width = 128 + height = 49 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = d233c3d4-9c2d-43fd-938f-b907ed7aca27-1779530466787 + [loading_requirement_container_meta:d233c3d4-9c2d-43fd-938f-b907ed7aca27-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = 46664c3b-bff1-4990-9232-2ae2b9e1149c-1779530466787 + [executable_block:46664c3b-bff1-4990-9232-2ae2b9e1149c-1779530466787][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 9f3bc7f6-0753-4c80-a273-f49160c41eeb-1779530466787 + [loading_requirement_container_meta:9f3bc7f6-0753-4c80-a273-f49160c41eeb-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = minecraft_logo_widget + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 112 + y = 18 + width = 256 + height = 51 + stretch_x = false + stretch_y = false + stay_on_screen = false + element_loading_requirement_container_identifier = 5d8c412a-a7b1-40d4-8e11-47a5a7c3bb1e-1779530466787 + [loading_requirement_container_meta:5d8c412a-a7b1-40d4-8e11-47a5a7c3bb1e-1779530466787] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = true + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = da4c08e5-c7be-4eae-8ef6-d115fe3d8bfe-1720270812598 + [executable_block:da4c08e5-c7be-4eae-8ef6-d115fe3d8bfe-1720270812598][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 0fb4b2ca-1d07-44cc-879b-a361f2e1d466-1779530466786 + [loading_requirement_container_meta:0fb4b2ca-1d07-44cc-879b-a361f2e1d466-1779530466786] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_accessibility_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = 105 + y = 67 + width = 20 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = c5e25ef3-4290-4727-be36-d0258783ddc5-1720270812598 + [loading_requirement_container_meta:c5e25ef3-4290-4727-be36-d0258783ddc5-1720270812598] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + +vanilla_button { + button_element_executable_block_identifier = c77d3f99-9e06-4078-9eda-a81cb343892f-1720269570510 + [executable_block:c77d3f99-9e06-4078-9eda-a81cb343892f-1720269570510][type:generic] = [executables:] + restartbackgroundanimations = true + nine_slice_custom_background = false + nine_slice_border_x = 5 + nine_slice_border_y = 5 + navigatable = true + widget_active_state_requirement_container_identifier = 16172b68-f393-4637-b335-016ddd7791b8-1779530466787 + [loading_requirement_container_meta:16172b68-f393-4637-b335-016ddd7791b8-1779530466787] = [groups:][instances:] + is_template = false + template_apply_width = false + template_apply_height = false + template_apply_posx = false + template_apply_posy = false + template_apply_opacity = false + template_apply_visibility = false + template_apply_label = false + template_share_with = buttons + nine_slice_slider_handle = false + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + appearance_delay_seconds = 1.0 + fade_in_v2 = no_fading + fade_in_speed = 1.0 + fade_out = no_fading + fade_out_speed = 1.0 + base_opacity = 1.0 + auto_sizing = false + auto_sizing_base_screen_width = 2880 + auto_sizing_base_screen_height = 1713 + sticky_anchor = false + anchor_point = mid-centered + x = -100 + y = 41 + width = 200 + height = 20 + stretch_x = false + stretch_y = false + stay_on_screen = true + element_loading_requirement_container_identifier = ce3341dc-553a-4680-bc97-cc3a60bd8151-1720269570510 + [loading_requirement_container_meta:ce3341dc-553a-4680-bc97-cc3a60bd8151-1720269570510] = [groups:][instances:] + enable_parallax = false + parallax_intensity = 0.5 + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + in_editor_color = #FFC800FF + layer_hidden_in_editor = false + is_hidden = false + automated_button_clicks = 0 +} + diff --git a/packet/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget b/packet/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget new file mode 100644 index 0000000..57ed738 --- /dev/null +++ b/packet/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget @@ -0,0 +1,12 @@ +type = layout_editor_widget_settings + +settings { + offset_x = -212.0 + offset_y = 7.0 + inner_width = 200.0 + inner_height = 300.0 + snapping_side = top-right + expanded = true + visible = false +} + diff --git a/packet/config/fancymenu/legacy_checklist.txt b/packet/config/fancymenu/legacy_checklist.txt new file mode 100644 index 0000000..fd6fe0e --- /dev/null +++ b/packet/config/fancymenu/legacy_checklist.txt @@ -0,0 +1,3 @@ +##[legacy] + +B:custom_guis_ported = 'true'; \ No newline at end of file diff --git a/packet/config/fancymenu/locals/de_de.local b/packet/config/fancymenu/locals/de_de.local new file mode 100644 index 0000000..57b8ad2 --- /dev/null +++ b/packet/config/fancymenu/locals/de_de.local @@ -0,0 +1,397 @@ +loading.animation.loadingframes = Lade Animationsframes für {} +loading.animation.prerendering = Vorbereiten von Animation {} +loading.animation.done = Fertig! + +helper.button.menuinfo = Menü Info +helper.button.buttoninfo = Button Info +helper.button.reload = Neuladen +helper.button.createlayout = Layout erstellen + +helper.menuinfo.identifier = Menü Identifier + +helper.buttoninfo.idnotfound = +helper.buttoninfo.keynotfound =