diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..3dbdf10 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,331 @@ +# Publish the modpack to CurseForge, Modrinth, and (optionally) GitHub Releases. +# +# Triggers +# - Push a version tag: v0.2.0 (release) or v0.2.0-beta.1 / v0.2.0-alpha.1 +# - Manual run from Actions → Release (useful for dry runs) +# +# Before a release +# 1. Set pakku.json "version" yourself (must match the tag without the leading v) +# 2. Fill in CHANGELOG.md for that version +# 3. git tag v0.2.0 && git push origin v0.2.0 +# +# Repository variables +# CURSEFORGE_ID CurseForge project id +# MODRINTH_ID Modrinth project id (or slug) +# +# Repository secrets +# CURSEFORGE_TOKEN CurseForge upload token +# MODRINTH_TOKEN Modrinth PAT with project write access +name: Release + +on: + push: + tags: + - "v*" + workflow_dispatch: + inputs: + github_release: + description: Also create a GitHub Release + type: boolean + default: true + version_type: + description: Release type (auto = from pakku.json / tag) + type: choice + options: + - auto + - release + - beta + - alpha + default: auto + dry_run: + description: Build only; skip CurseForge, Modrinth, and GitHub publish + type: boolean + default: false + +permissions: + contents: write + +concurrency: + group: release-${{ github.ref }} + cancel-in-progress: false + +env: + PAKKU_VERSION: "1.5.0" + JAVA_VERSION: "21" + +jobs: + release: + name: Build and publish + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v7 + with: + fetch-depth: 0 + fetch-tags: true + + - name: Set up Java + uses: actions/setup-java@v5 + with: + distribution: temurin + java-version: ${{ env.JAVA_VERSION }} + + - name: Download Pakku + run: | + set -euo pipefail + curl -fsSL -o pakku.jar \ + "https://github.com/juraj-hrivnak/Pakku/releases/download/v${PAKKU_VERSION}/pakku.jar" + test -s pakku.jar + + - name: Collect metadata + id: meta + env: + EVENT_NAME: ${{ github.event_name }} + REF_TYPE: ${{ github.ref_type }} + REF_NAME: ${{ github.ref_name }} + INPUT_VERSION_TYPE: ${{ github.event.inputs.version_type || 'auto' }} + INPUT_GITHUB_RELEASE: ${{ github.event.inputs.github_release || 'true' }} + INPUT_DRY_RUN: ${{ github.event.inputs.dry_run || 'false' }} + run: | + set -euo pipefail + test -f pakku.json + test -f pakku-lock.json + test -f CHANGELOG.md + + NAME=$(jq -r '.name' pakku.json) + VERSION=$(jq -r '.version' pakku.json) + MC_VERSION=$(jq -r '.mc_versions[0]' pakku-lock.json) + LOADER_TYPE=$(jq -r '.loaders | keys[0]' pakku-lock.json) + LOADER_VERSION=$(jq -r --arg t "$LOADER_TYPE" '.loaders[$t]' pakku-lock.json) + + if [ -z "$NAME" ] || [ "$NAME" = "null" ]; then + echo "::error::pakku.json is missing name" + exit 1 + fi + if [ -z "$VERSION" ] || [ "$VERSION" = "null" ]; then + echo "::error::pakku.json is missing version" + exit 1 + fi + + if [ "$REF_TYPE" = "tag" ]; then + TAG_VERSION="${REF_NAME#v}" + if [ "$TAG_VERSION" != "$VERSION" ]; then + echo "::error::Tag ${REF_NAME} does not match pakku.json version ${VERSION}. Update the version (or the tag) before releasing." + exit 1 + fi + GITHUB_TAG="$REF_NAME" + else + GITHUB_TAG="v${VERSION}" + fi + + TYPE="$INPUT_VERSION_TYPE" + if [ "$TYPE" = "auto" ] || [ -z "$TYPE" ]; then + case "$VERSION" in + *-alpha*|*-Alpha*) TYPE=alpha ;; + *-beta*|*-Beta*|*-rc*|*-RC*) TYPE=beta ;; + *) TYPE=release ;; + esac + fi + + if [ "$EVENT_NAME" = "workflow_dispatch" ]; then + GITHUB_RELEASE="${INPUT_GITHUB_RELEASE:-true}" + DRY_RUN="${INPUT_DRY_RUN:-false}" + else + GITHUB_RELEASE=true + DRY_RUN=false + fi + + SAFE_NAME=$(echo "$NAME" | tr '[:upper:]' '[:lower:]' | tr -c 'a-z0-9' '-' | tr -s '-' | sed 's/-$//') + + { + echo "project_name=$NAME" + echo "project_version=$VERSION" + echo "project_full_name=${NAME} ${VERSION}" + echo "project_file_name=${SAFE_NAME}-${VERSION}" + echo "mc_version=$MC_VERSION" + echo "loader_type=$LOADER_TYPE" + echo "loader_version=$LOADER_VERSION" + echo "release_type=$TYPE" + echo "github_tag=$GITHUB_TAG" + echo "github_release=$GITHUB_RELEASE" + echo "dry_run=$DRY_RUN" + } >> "$GITHUB_OUTPUT" + + echo "Pack: ${NAME} ${VERSION} (${TYPE})" + echo "Minecraft: ${MC_VERSION} / ${LOADER_TYPE} ${LOADER_VERSION}" + + - name: Build changelog + env: + VERSION: ${{ steps.meta.outputs.project_version }} + CURRENT_TAG: ${{ steps.meta.outputs.github_tag }} + run: | + set -euo pipefail + + extract_section() { + local needle="$1" + awk -v needle="$needle" ' + BEGIN { found = 0 } + /^## / { + if (found) exit + heading = $0 + sub(/^##[[:space:]]+/, "", heading) + if (heading ~ /^\[/) { + sub(/^\[/, "", heading) + sub(/\].*$/, "", heading) + } else { + sub(/[[:space:]].*$/, "", heading) + } + if (tolower(heading) == tolower(needle)) found = 1 + next + } + found { print } + ' CHANGELOG.md | sed -e :a -e '/^\n*$/{$d;N;ba' -e '}' + } + + NOTES=$(extract_section "$VERSION") + if [ -z "$NOTES" ]; then + BASE_VERSION="${VERSION%%-*}" + if [ "$BASE_VERSION" != "$VERSION" ]; then + NOTES=$(extract_section "$BASE_VERSION") + fi + fi + if [ -z "$NOTES" ]; then + NOTES=$(extract_section "Unreleased") + fi + + git fetch --tags --force origin >/dev/null 2>&1 || true + PREV_TAG=$(git tag --list 'v*' --sort=-v:refname | grep -Fxv "$CURRENT_TAG" | head -n1 || true) + + DIFF="" + if [ -n "$PREV_TAG" ] && git cat-file -e "${PREV_TAG}:pakku-lock.json" 2>/dev/null; then + git show "${PREV_TAG}:pakku-lock.json" > pakku-lock-prev.json + java -jar pakku.jar diff -v --markdown PROJECTS_DIFF.md pakku-lock-prev.json pakku-lock.json + if [ -s PROJECTS_DIFF.md ]; then + DIFF=$(cat PROJECTS_DIFF.md) + echo "Mod diff against ${PREV_TAG}:" + cat PROJECTS_DIFF.md + fi + else + echo "No previous tag with pakku-lock.json; skipping pakku diff." + fi + + { + if [ -n "$NOTES" ]; then + printf '%s\n' "$NOTES" + fi + if [ -n "$DIFF" ]; then + if [ -n "$NOTES" ]; then + printf '\n' + fi + printf '%s\n' "$DIFF" + fi + if [ -z "$NOTES" ] && [ -z "$DIFF" ]; then + echo "No changelog available." + fi + } > RELEASE_CHANGELOG.md + + echo "===== Release changelog =====" + cat RELEASE_CHANGELOG.md + + - name: Export modpack + run: java -jar pakku.jar export --no-server + + - name: Rename artifacts + run: | + set -euo pipefail + FILE_NAME="${{ steps.meta.outputs.project_file_name }}" + + mkdir -p dist + if compgen -G "build/curseforge/*.zip" > /dev/null; then + mv build/curseforge/*.zip "dist/${FILE_NAME}-curseforge.zip" + else + echo "::error::CurseForge zip was not produced by pakku export" + exit 1 + fi + + if compgen -G "build/modrinth/*.mrpack" > /dev/null; then + mv build/modrinth/*.mrpack "dist/${FILE_NAME}-modrinth.mrpack" + else + echo "::error::Modrinth mrpack was not produced by pakku export" + exit 1 + fi + + ls -l dist/ + + - name: Upload artifacts + uses: actions/upload-artifact@v7 + with: + name: ${{ steps.meta.outputs.project_file_name }} + path: dist/* + if-no-files-found: error + retention-days: 14 + + - name: Job summary + run: | + { + echo "## ${{ steps.meta.outputs.project_full_name }}" + echo + echo "- **Type:** \`${{ steps.meta.outputs.release_type }}\`" + echo "- **Minecraft:** \`${{ steps.meta.outputs.mc_version }}\`" + echo "- **Loader:** \`${{ steps.meta.outputs.loader_type }} ${{ steps.meta.outputs.loader_version }}\`" + echo "- **GitHub tag:** \`${{ steps.meta.outputs.github_tag }}\`" + echo "- **GitHub release:** \`${{ steps.meta.outputs.github_release }}\`" + echo "- **Dry run:** \`${{ steps.meta.outputs.dry_run }}\`" + echo + cat RELEASE_CHANGELOG.md + } >> "$GITHUB_STEP_SUMMARY" + + - name: Validate publish config + if: steps.meta.outputs.dry_run != 'true' + env: + CURSEFORGE_ID: ${{ vars.CURSEFORGE_ID }} + MODRINTH_ID: ${{ vars.MODRINTH_ID }} + CURSEFORGE_TOKEN: ${{ secrets.CURSEFORGE_TOKEN }} + MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }} + run: | + set -euo pipefail + missing=0 + if [ -z "${CURSEFORGE_ID}" ]; then + echo "::error::Repository variable CURSEFORGE_ID is not set." + missing=1 + fi + if [ -z "${MODRINTH_ID}" ]; then + echo "::error::Repository variable MODRINTH_ID is not set." + missing=1 + fi + if [ -z "${CURSEFORGE_TOKEN}" ]; then + echo "::error::Secret CURSEFORGE_TOKEN is not set." + missing=1 + fi + if [ -z "${MODRINTH_TOKEN}" ]; then + echo "::error::Secret MODRINTH_TOKEN is not set." + missing=1 + fi + if [ "$missing" -ne 0 ]; then + exit 1 + fi + + - name: Publish to CurseForge, Modrinth, and GitHub + if: steps.meta.outputs.dry_run != 'true' + uses: Kir-Antipov/mc-publish@v3.3 + with: + curseforge-id: ${{ vars.CURSEFORGE_ID }} + curseforge-token: ${{ secrets.CURSEFORGE_TOKEN }} + curseforge-files: dist/*-curseforge.zip + + modrinth-id: ${{ vars.MODRINTH_ID }} + modrinth-token: ${{ secrets.MODRINTH_TOKEN }} + modrinth-files: dist/*-modrinth.mrpack + + github-token: ${{ steps.meta.outputs.github_release == 'true' && secrets.GITHUB_TOKEN || '' }} + github-tag: ${{ steps.meta.outputs.github_tag }} + github-commitish: ${{ github.sha }} + + name: ${{ steps.meta.outputs.project_full_name }} + version: ${{ steps.meta.outputs.project_version }} + version-type: ${{ steps.meta.outputs.release_type }} + changelog-file: RELEASE_CHANGELOG.md + loaders: ${{ steps.meta.outputs.loader_type }} + game-versions: ${{ steps.meta.outputs.mc_version }} + game-version-filter: none + environment: client diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c16eaa --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +pakku.jar +build +.idea \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..21ecb93 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,28 @@ +# Changelog + +## Unreleased +### Breaking Changes +### Changes +### Bug fixes + +## 0.2.0 - + +### Changes +* Refreshing all of the Pre-release contents for further supports and better visuals. +* Remastered Title Screen. +* Remastered Button Textures. +* No longger required additional resource pack. +* Fixing Continent and Asia Regions Screen to support GUI Scale up to 5x. +* Adding ReplayMod Support. +* Adding Replay Mode buttons on Paused Screen. +* Adding Stylized Replay Viewer button on Title Screen. +* Adding Introduction Screen. +* Removing slideshow backgrounds on Settings. +* Fixing Disconecting Screen due to Connections Error. +* Removed slideshow backgrounds from the settings menus, making it easier to see changes and adjust your point of view. +* Changed from [Mrpack](https://support.modrinth.com/en/articles/8802351-modrinth-modpack-format-mrpack) format to [Pakku format](https://juraj-hrivnak.github.io/Pakku/lock-file.html) for multi-platform support + * Added support for Curseforge +* + +### Bug fixes +* Fixed the disconnect screen layout when connection errors occur. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..4e9db6f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,247 @@ +# Contributing to the BuildTheEarth Modpack + +Thanks for contributing to the BuildTheEarth modpack! + +This guide explains how to set up a development environment, make changes, and submit a pull request. + +## Requirements + +### Required + +* [Git] — version control +* [Pakku] — dependency management and modpack building +* Java 17 or newer — required by Pakku + +### Recommended + +* [PrismLauncher] — for running the development instance +* [Visual Studio Code] — for editing files and working with Git +* [GitHub Desktop] — optional graphical Git client +* [GitHub Pull Requests] — recommended VS Code extension for managing pull requests + +## Setup + +### 1. Create a PrismLauncher instance + +1. Open [PrismLauncher] and select **Add Instance**. +2. Name the instance `BuildTheEarth`. +3. Select Minecraft `26.2`. +4. Select the latest compatible Fabric version. + +> [!TIP] +> Example instance setup: +> ![Creating a new PrismLauncher instance](https://github.com/TerraFirmaGreg-Team/.github/blob/main/wiki/new_instances.png?raw=true) + +### 2. Find the instance folder + +Open the instance folder from PrismLauncher by right-clicking the instance and selecting **Folder**. + +The Minecraft directory should be located inside the instance at: + +```text +BuildTheEarth/minecraft +``` + +> [!TIP] +> ![PrismLauncher instance folder](https://github.com/TerraFirmaGreg-Team/.github/blob/main/wiki/prism_folder.png?raw=true) + +### 3. Fork the repository + +1. Open the [BuildTheEarth/modpack] repository on GitHub. +2. Select **Fork**. +3. Create the fork under your GitHub account. + +You will make your changes in this fork and submit them back to the main repository with a pull request. + +### 4. Clone your fork + +Create a separate development folder outside your PrismLauncher instance. + +This prevents Minecraft from modifying files that should remain under version control. + +#### Visual Studio Code + +1. Open VS Code and sign in to GitHub. +2. Press Ctrl + Shift + P. +3. Select **Git: Clone**. +4. Choose **Clone from GitHub**. +5. Select your fork, for example `YourName/modpack`. +6. Choose your development folder. + +#### GitHub Desktop + +1. Open GitHub Desktop. +2. Select **File → Clone repository**. +3. Select your fork or enter: + +```text +https://github.com/YourName/modpack.git +``` + +4. Choose your development folder and select **Clone**. + +#### Terminal + +```bash +git clone https://github.com/YourName/modpack.git +``` + +## Connect the development files to PrismLauncher + +Keep your Git repository and PrismLauncher instance separate. + +Copy the required project files into the PrismLauncher `minecraft` folder, then replace folders you intend to edit with symbolic links pointing back to your development repository. + +On Windows, this can be done with `mklink`: + +```text +mklink Link Target +``` + +> [!TIP] +> This setup allows you to edit files in the Git repository without Minecraft modifying unrelated tracked files. +> +> Developing directly inside the PrismLauncher instance is possible, but discouraged. If you do, consider using `.git/info/exclude` for local files that should not be committed. + +## Install modpack dependencies + +Open a terminal in the PrismLauncher instance folder and run: + +```bash +pakku fetch +``` + +This downloads the files required by the modpack. + +> [!WARNING] +> `pakku fetch` does not update the BuildTheEarth modpack itself. + +## Branches + +The repository uses the following branch structure: + +### `main` + +The stable, tested, and released version of the modpack. + +Changes should normally reach `main` only after being tested in `dev`. + +### `dev` + +The main development branch. + +New features, fixes, and other changes should normally be submitted here first. + +### Feature and bugfix branches + +Create a separate branch for each change, based on `dev`. + +Examples: + +```text +feature/add-custom-quest +bugfix/fix-launch-crash +``` + +You can create branches freely in your own fork. + +## Making a contribution + +Before starting, make sure your local `dev` branch is up to date. + +If you have configured the main repository as the `upstream` remote: + +```bash +git checkout dev +git pull upstream dev +``` + +Create a new branch: + +```bash +git checkout -b feature/name-of-feature +``` + +Make and test your changes, then commit them: + +```bash +git add . +git commit -m "Brief description of the change" +``` + +Push the branch to your fork: + +```bash +git push origin feature/name-of-feature +``` + +You can perform the same operations through VS Code or GitHub Desktop if you prefer a graphical interface. + +## Creating a Pull Request + +After pushing your branch: + +1. Open your fork on GitHub. +2. Create a new pull request. +3. Set the main repository's `dev` branch as the target. +4. Give the pull request a clear title. +5. Explain what you changed and why. +6. Link related issues when applicable. +7. Submit the pull request. + +> [!TIP] +> If you use the [GitHub Pull Requests] VS Code extension, you can create and manage the pull request directly from VS Code. + +If you are unsure about the correct target branch or PR format, check the project documentation or ask the team on [Discord]. + +## Review and merging + +After submitting a pull request: + +1. A member of the Minecraft team will review it. +2. Reviewers may leave comments or request changes. +3. Make requested changes on the same branch and push them normally. The pull request will update automatically. +4. At least one approval from the Minecraft team is required before merging. +5. An authorized maintainer will merge the pull request according to the project's merge rules. +6. Once merged, the branch can usually be deleted. + +## Testing + +Before submitting a pull request: + +* Make sure the modpack works before applying your changes. +* Test your changes in PrismLauncher. +* Check PrismLauncher logs for errors. +* Verify that your changes do not break existing functionality. + +## Git guidelines + +* Use a separate branch for each feature or fix. +* Keep your fork synchronized with the main repository. +* Write clear, descriptive commit messages. +* Avoid including unrelated changes in the same pull request. + +## Versioning + +The project follows [Semantic Versioning](https://semver.org/): + +* **Patch:** bug fixes and small changes (`1.0.0` → `1.0.1`) +* **Minor:** new backwards-compatible features (`1.0.0` → `1.1.0`) +* **Major:** breaking changes (`1.0.0` → `2.0.0`) + +## Questions + +If you need help: + +* Check the repository's Issues and Discussions. +* Ask the team on [Discord]. +* Review existing pull requests for examples of previous contributions. + +## Video guide + +A related setup guide is available here: + +https://www.youtube.com/watch?v=vLL7jTtuOuw + +> [!NOTE] +> Some steps in the video are specific to TerraFirmaGreg and are not required for this modpack. diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..4962190 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 BuildTheEarth and contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..34e12d4 --- /dev/null +++ b/README.md @@ -0,0 +1,48 @@ +# BuildTheEarth Official Modpack + +The **BuildTheEarth Official Modpack** is built for the latest stable Minecraft version supported by BTE and comes with separate files for importing into **Modrinth** and **CurseForge**. + +--- + +### Why only the latest version? + +Because this version currently supports BTE servers without major compatibility issues. + +> **Quick Tip:** +> Please do **not update any of the pre-installed mods manually**, as doing so may break the modpack or cause crashes. X_X + +--- + +## Features + +The main feature of this modpack is its custom **FancyMenu** layout, giving Minecraft a completely new and playful user interface. + +The modpack also makes it easier to get started with **BuildTheEarth** by including important mods for exploring, building, and participating in BTE projects. + +--- + +## Modpack Management + +This modpack is managed using [**Pakku**](https://juraj-hrivnak.github.io/Pakku/), which helps keep the modpack configuration, dependencies, and supported platforms organized and consistent. + +Pakku is used to maintain the modpack files for both **Modrinth** and **CurseForge**, making updates and releases easier to manage. + +--- + +## Development + +The modpack is actively developed and regularly updated. + +Want to contribute? Check out our [contributing guide](CONTRIBUTING.md) for setup instructions, development guidelines, and everything you need to get started. + +--- + +## Credits + +Special thanks to the developers and creators of the mods included in this modpack: + +* **Replay Mod** — by CrushedPixel and johni0702 +* **FancyMenu, Konkrete, and Melody** — by Keksuccino +* And all of the amazing developers whose mods are included in this modpack. <3 + +Thank you for helping make the BuildTheEarth experience even better! diff --git a/overrides/config/DistantHorizons.toml b/config/DistantHorizons.toml similarity index 83% rename from overrides/config/DistantHorizons.toml rename to config/DistantHorizons.toml index 179d402..057d3c5 100644 --- a/overrides/config/DistantHorizons.toml +++ b/config/DistantHorizons.toml @@ -38,7 +38,7 @@ _version = 4 # DO NOT CHANGE UNLESS YOU KNOW WHAT YOU'RE DOING. # Autogenerated ID used to prevent multiple independent servers from accidentally # writing over each other's LODs when the same serverKey is set on both. - serverId = 1566879949 + serverId = -300776010 # # How many LOD generation requests per second should a client send? # Also limits the number of client requests allowed to stay in the server's queue. @@ -88,6 +88,7 @@ _version = 4 # Hidden blocks (IE ores) are ignored. # Expected Compression Ratio: 0.7 worldCompression = "VISUALLY_EQUAL" + dataCompression = "Z_STD_BLOCK" # # Enabling this will drastically increase chunk processing time # and you may need to increase your CPU load to handle it. @@ -117,7 +118,7 @@ _version = 4 [common.multiThreading] # # How many threads should be used by Distant Horizons? - numberOfThreads = 4 + numberOfThreads = 9 # # A value between 1.0 and 0.0 that represents the percentage # of time each thread can run before going idle. @@ -169,6 +170,12 @@ _version = 4 globalFileMaxLevel = "INFO" [common.logging.warning] + # + # If enabled, a message will be displayed in chat if explicit garbage collection + # is disabled. + # This is known to cause out-of-memory issues + # and is better solved with a concurrent garbage collector. + showExplicitGcDisabledWarning = true # # If enabled, a chat message will be displayed when DH has too many chunks # queued for updating. @@ -178,6 +185,12 @@ _version = 4 # queued for updating. showUpdateQueueOverloadedChatWarning = false # + # If enabled, a message will be logged if explicit garbage collection + # is disabled. + # This is known to cause out-of-memory issues + # and is better solved with a concurrent garbage collector. + logExplicitGcDisabledWarning = true + # # If enabled, a chat message will be displayed if Java doesn't have enough # memory allocated to run DH well. showLowMemoryWarningOnStartup = true @@ -190,9 +203,13 @@ _version = 4 # mod is installed alongside DH. showModCompatibilityWarningsOnStartup = true # + # If enabled, a chat message will be displayed when DH is using + # a deprecated renderer. + showDeprecatedRendererWarningOnStartup = true + # # If enabled, a chat message will be displayed if vanilla MC's # render distance is higher than the recommended amount. - showHighVanillaRenderDistanceWarning = false + showHighVanillaRenderDistanceWarning = true # # If enabled, a chat message will be displayed if DH detects # that any pooled objects have been garbage collected. @@ -203,10 +220,10 @@ _version = 4 # to cause frame stuttering and/or other issues. logGarbageCollectorWarning = true # - # If enabled, a chat message will be displayed if the garbage + # If enabled, a chat message will be displayed in chat if the garbage # collector Java is currently using is known # to cause frame stuttering and/or other issues. - showGarbageCollectorWarning = false + showGarbageCollectorWarning = true [common.worldGenerator] # @@ -286,7 +303,7 @@ _version = 4 updateBranch = "AUTO" # # Automatically check for updates on game launch? - enableAutoUpdater = true + enableAutoUpdater = false # # Should Distant Horizons silently, automatically download and install new versions? # This setting is force disabled on dedicated servers for stability reasons. @@ -301,6 +318,21 @@ _version = 4 # Mod compatibility is not guaranteed. lodOnlyMode = false # + # What renderer is active? + # + # DEFAULT: Default lod renderer + # DEBUG_TRIANGLE: Debug testing renderer + # DISABLED: Disable rendering + rendererMode = "DISABLED" + # + # If true overlapping quads will be rendered as bright red for easy identification. + # If false the quads will be rendered normally. + showOverlappingQuadErrors = false + # + # If true OpenGL Buffer garbage collection will be logged + # this also includes the number of live buffers. + logBufferGarbageCollection = false + # # Should specialized colors/rendering modes be used? # # OFF: LODs will be drawn with their normal colors. @@ -313,13 +345,6 @@ _version = 4 # Useful for debugging shaders enableWhiteWorld = false # - # What renderer is active? - # - # DEFAULT: Default lod renderer - # DEBUG_TRIANGLE: Debug testing renderer - # DISABLED: Disable rendering - rendererMode = "DEFAULT" - # # If enabled the LODs will render as wireframe. renderWireframe = false # @@ -328,14 +353,6 @@ _version = 4 # F7 - enable/disable LOD only rendering # F8 - cycle through the different debug rendering modes enableDebugKeybindings = false - # - # If true overlapping quads will be rendered as bright red for easy identification. - # If false the quads will be rendered normally. - showOverlappingQuadErrors = false - # - # If true OpenGL Buffer garbage collection will be logged - # this also includes the number of live buffers. - logBufferGarbageCollection = false [client.advanced.debugging.debugWireframe] # @@ -361,36 +378,6 @@ _version = 4 # will render their debug wireframes. enableRendering = false - [client.advanced.debugging.f3Screen] - # - # Shows info about the render thread tasks. - showRenderThreadTasks = false - # - # Shows how many chunks are queued for processing and the max count that can be queued. - showQueuedChunkUpdateCount = true - # - # Shows the memory use and array counts for each DH object pool. - showSeparatedObjectPools = false - # - # Shows the player's LOD position. - showPlayerPos = true - # - # Shows the combined memory use and array counts for all DH pooled objects. - showCombinedObjectPools = false - # - # Defines what internal detail level the player position will be shown as. - # Internal detail level means: 6 = 1x1 block, 7 = 2x2 blocks, etc. - playerPosSectionDetailLevel = 6 - # - # Only show levels that DH is actively rendering. - onlyShowRenderingLevels = true - # - # Shows info about each thread pool. - showThreadPools = true - # - # Shows what levels are loaded and world gen/rendering info about those levels. - showLevelStatus = true - [client.advanced.debugging.openGl] # # Defines how OpenGL errors are handled. @@ -429,6 +416,45 @@ _version = 4 intTest = 69420 stringTest = "Test input box" + [client.advanced.debugging.f3Screen] + # + # Shows info about the render thread tasks. + showRenderThreadTasks = false + # + # Shows how many chunks are queued for processing and the max count that can be queued. + showQueuedChunkUpdateCount = true + # + # Shows the memory use and array counts for each DH object pool. + showSeparatedObjectPools = false + # + # Shows the player's LOD position. + showPlayerPos = true + # + # Shows the combined memory use and array counts for all DH pooled objects. + showCombinedObjectPools = false + # + # Defines what internal detail level the player position will be shown as. + # Internal detail level means: 6 = 1x1 block, 7 = 2x2 blocks, etc. + playerPosSectionDetailLevel = 6 + # + # Only show levels that DH is actively rendering. + onlyShowRenderingLevels = true + # + # Shows info about each thread pool. + showThreadPools = true + # + # Shows what levels are loaded and world gen/rendering info about those levels. + showLevelStatus = true + + [client.advanced.debugging.positionFinderDebugging] + positionFinderEnable = false + positionFinderMinBlockY = -64 + positionFinderZPos = 0 + positionFinderXPos = 0 + positionFinderMaxBlockY = 125 + positionFinderDetailLevel = 6 + positionFinderMarginPercent = "0.0" + [client.advanced.graphics] # # Enable Screen Space Ambient Occlusion @@ -442,13 +468,6 @@ _version = 4 overrideVanillaGraphicsSettings = true [client.advanced.graphics.culling] - # - # If false all beacons near the camera won't be drawn to prevent vanilla overdraw. - # If true all beacons will be rendered. - # - # Generally this should be left as true. It's main purpose is for debugging - # beacon updating/rendering. - disableBeaconDistanceCulling = true # # Determines how far from the camera Distant Horizons will start rendering. # Measured as a percentage of the vanilla render distance. @@ -462,14 +481,6 @@ _version = 4 # Increasing the vanilla render distance increases the effectiveness of this setting. overdrawPrevention = "-1.0" # - # If enabled caves won't be rendered. - # - # Note: for some world types this can cause - # overhangs or walls for floating objects. - # Tweaking the caveCullingHeight, can resolve some - # of those issues. - enableCaveCulling = true - # # Identical to the other frustum culling option # only used when a shader mod is present using the DH API # and the shadow pass is being rendered. @@ -477,6 +488,58 @@ _version = 4 # Disable this if shadows render incorrectly. disableShadowPassFrustumCulling = false # + # A comma separated list of block resource locations that will be replaced by water + # if they're visible on the water's surface. + waterSubSurfaceBlockReplacementCsv = "minecraft:kelp,minecraft:tall_seagrass,minecraft:seagrass" + # + # A comma separated list of block resource locations that won't be rendered by DH. + # Air is always included in this list. + # + # Note: + # If you see gaps, or holes you may have to change + # worldCompression to [MERGE_SAME_BLOCKS] and re-generate the LODs. + ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom" + # + # A comma separated list of block resource locations that will be removed + # when on top of water. + waterSurfaceBlockReplacementCsv = "minecraft:lily_pad" + # + # Defines what blocks should be rendered as LODs. + # + # NONE: Include all blocks in the LODs + # NON_COLLIDING: Only render solid blocks in the LODs (tall grass, torches, etc. will be ignored) + blocksToIgnore = "NON_COLLIDING" + # + # If true LODs outside the player's camera + # aren't drawn, increasing GPU performance. + # + # If false all LODs are drawn, even those behind + # the player's camera, decreasing GPU performance. + # + # Disable this if you see LODs disappearing at the corners of your vision. + disableFrustumCulling = false + # + # If false all beacons near the camera won't be drawn to prevent vanilla overdraw. + # If true all beacons will be rendered. + # + # Generally this should be left as true. It's main purpose is for debugging + # beacon updating/rendering. + disableBeaconDistanceCulling = true + # + # Should the blocks underneath avoided blocks gain the color of the avoided block? + # + # True: a red flower will tint the grass below it red. + # False: skipped blocks will not change color of surface below them. + tintWithAvoidedBlocks = true + # + # If enabled caves won't be rendered. + # + # Note: for some world types this can cause + # overhangs or walls for floating objects. + # Tweaking the caveCullingHeight, can resolve some + # of those issues. + enableCaveCulling = false + # # At what Y value should cave culling start? # Lower this value if you get walls for areas with 0 light. caveCullingHeight = 60 @@ -495,31 +558,62 @@ _version = 4 # This helps reduce issues where Minecraft can't load or # generate chunks fast enough to keep up with DH. reduceOverdrawWithFastMovement = true + + [client.advanced.graphics.texture] # - # A comma separated list of block resource locations that will be replaced by water - # if they're visible on the water's surface. - waterSubSurfaceBlockReplacementCsv = "minecraft:kelp,minecraft:tall_seagrass,minecraft:seagrass" + # A comma separated list of block resource locations + # that DH will render their sides using the bottom texture. + # Partial matches/incomplete resource locations will also match. + # + # Example: "minecraft:grass_block,nylium" + # + # Changes require a restart. + blocksDontUseSideTextureCsv = "grass_block,mycelium,nylium,dirt_path" # - # A comma separated list of block resource locations that won't be rendered by DH. - # Air is always included in this list. + # The highest detail level number that can render with block textures. + # At higher detail levels each LOD covers multiple blocks, + # which can essentially make textures smaller than a pixel and therefore invisible. + # + # Larger numbers texture more distant LODs + # but increase memory usage. + maxTexturedLodDetailLevel = 2 + # + # If true nearby and zoomed-in LODs will render with their block's + # actual texture instead of a single flat color. + # + # Only applies to high detail LODs where the texture is actually visible, + # distant LODs always use flat colors. + # Some shader packs nay not have an affect. + enableTexturedLods = true + # + # A comma separated list of block resource locations + # that DH won't render textures on. + # Partial matches/incomplete resource locations will also match. # - # Note: - # If you see gaps, or holes you may have to change - # worldCompression to [MERGE_SAME_BLOCKS] and re-generate the LODs. - ignoredRenderBlockCsv = "minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom" + # Example: "minecraft:grass_block,nylium" + # + # Changes require a restart. + blocksDontRenderTextureCsv = "minecraft:bamboo" # - # A comma separated list of block resource locations that will be removed - # when on top of water. - waterSurfaceBlockReplacementCsv = "minecraft:lily_pad" + # A comma separated list of tag names + # that DH will render their sides using the bottom texture. + # + # Example: "grass_blocks,nylium" + # + # Changes require a restart. + blockTagsDontUseSideTextureCsv = "grass_blocks,nylium" # - # If true LODs outside the player's camera - # aren't drawn, increasing GPU performance. + # A comma separated list of block resource locations + # that DH will use rasterization to determine + # the face textures. # - # If false all LODs are drawn, even those behind - # the player's camera, decreasing GPU performance. + # Can be used to fix issues with mods/blocks where + # a side uses just part of a modeled block's texture. # - # Disable this if you see LODs disappearing at the corners of your vision. - disableFrustumCulling = false + # Example: "minecraft:beacon" + # + # Changes require a restart. + blocksAlwaysRasterizeTextureCsv = "minecraft:beacon" [client.advanced.graphics.noiseTexture] # @@ -555,7 +649,15 @@ _version = 4 # AUTO - changes based on the most likely API for that MC version # OPEN_GL - Default # BLAZE_3D - Only supported on MC 1.21.11 - renderingApi = "AUTO" + renderingApi = "OPEN_GL" + # + # Requires a restart to change. + # + # Options: + # AUTO - changes based on the most likely API for that MC version + # OPEN_GL - The Default for MC 1.21.11 and older (supports Iris shaders) + # BLAZE_3D - The Default for MC 26.1.2 and newer (supports Vulkan) + renderingEngine = "OPEN_GL" # # This is the earth size ratio when applying the curvature shader effect. # Note: Enabling this feature may cause rendering bugs. @@ -576,7 +678,7 @@ _version = 4 # # Example: "minecraft:overworld,minecraft:the_end" # - # Changes will only be seen when the world is re-loaded. + # Changes require a world re-load. dimensionEnabledCloudRenderingCsv = "minecraft:overworld" # # If true LOD clouds will be rendered. @@ -587,19 +689,25 @@ _version = 4 # If false all LOD beacon beams will only ever be 1 block wide. expandDistantBeacons = true # - # Sets the maximum height at which beacons will render.This will only affect new beacons coming into LOD render distance.Beacons currently visible in LOD chunks will not be affected. + # Sets the maximum height beacons will render up to. + # + # Requires a world re-load to take affect. beaconRenderHeight = 6000 # # If true LOD beacon beams will be rendered. enableBeaconRendering = true # - # If true non terrain objects will be rendered in DH's terrain. - # This includes beacon beams and clouds. + # If true non terrain objects will be rendered by DH. + # i.e. beacon beams and clouds. enableGenericRendering = true + # + # False = DH will render a single layer of clouds, like vanilla Minecraft. + # True = DH will render 3 layers of clouds at different heights. + enableMultiLayerClouds = true [client.advanced.graphics.quality] # - # What is the maximum detail LODs should be drawn at? + # What is the maximum detail LODs can render at? # Higher settings will increase memory and GPU usage. # # CHUNK: render 1 LOD for each Chunk. @@ -608,8 +716,8 @@ _version = 4 # TWO_BLOCKS: render 64 LODs for each Chunk. # BLOCK: render 256 LODs for each Chunk (width of one block). # - # Lowest Quality: CHUNK - # Highest Quality: BLOCK + # Fastest: CHUNK + # Fanciest: BLOCK maxHorizontalResolution = "BLOCK" # # If true LODs will fade away as you get closer to them. @@ -628,6 +736,14 @@ _version = 4 # 2 = near white brightnessMultiplier = "1.0" # + # If true DH will try to use the camera position when + # determining LOD quality drop-off. + # If false DH will use the player's position. + # + # Enabling helps free-cam mods render correctly. + # Disabling helps multi-camera mods render correctly (ie Immersive Portals or camera mods). + useCameraPositionForQualityDropOff = true + # # How should LODs be shaded? # # AUTO: Uses the same side shading as vanilla Minecraft blocks. @@ -636,6 +752,13 @@ _version = 4 # DISABLED: All LOD sides will be rendered with the same brightness. lodShading = "AUTO" # + # How many detail levels zooming in can increase LOD quality by. + # Higher numbers allow stronger zooms to render crisper terrain, + # but will increase memory and GPU usage while zoomed in. + # + # A vanilla spyglass needs 4 detail levels to reach its full quality. + maxZoomQualityIncrease = 4 + # # How saturated LOD colors are. # # 0 = black and white @@ -648,8 +771,8 @@ _version = 4 # Higher options will make the world more accurate, butwill increase memory and GPU usage. # # Lowest Quality: HEIGHT_MAP - # Highest Quality: EXTREME - verticalQuality = "MEDIUM" + # Highest Quality: PIXEL_ART + verticalQuality = "EXTREME" # # What blocks shouldn't be rendered as LODs? # @@ -658,6 +781,10 @@ _version = 4 blocksToIgnore = "NON_COLLIDING" # # The radius of the mod's render distance. (measured in chunks) + # + # Note: this is a best effort number. + # The actual render distance may be above or below this number + # depending on your other graphic settings. lodChunkRenderDistanceRadius = 256 # # How should the sides and bottom of grass block LODs render? @@ -673,20 +800,20 @@ _version = 4 # False: skipped blocks will not change color of surface below them. tintWithAvoidedBlocks = true # - # This indicates how quickly LODs decrease in quality the further away they are. - # Higher settings will render higher quality fake chunks farther away, + # This indicates how far apart drops in LOD quality are. + # + # Higher settings will increase the distance between drops # but will increase memory and GPU usage. - horizontalQuality = "MEDIUM" + horizontalQuality = "EXTREME" # # How should LOD transparency be handled. # # COMPLETE: LODs will render transparent. - # FAKE: LODs will be opaque, but shaded to match the blocks underneath. # DISABLED: LODs will be opaque. transparency = "COMPLETE" # # This is the same as vanilla Biome Blending settings for Lod area. - # Note that anything other than '0' will greatly effect Lod building time. + # Note: anything above '0' will slow down LOD loading time. # # '0' equals to Vanilla Biome Blending of '1x1' or 'OFF', # '1' equals to Vanilla Biome Blending of '3x3', @@ -699,6 +826,15 @@ _version = 4 # SINGLE_PASS: Fades after MC's transparent pass, opaque blocks underwater won't be faded. # DOUBLE_PASS: Slowest, fades after both MC's opaque and transparent passes, provides the smoothest transition. vanillaFadeMode = "DOUBLE_PASS" + # + # If true LOD quality will increase when the camera is zoomed in, + # IE when using a spyglass or zoom mod. + # + # Only LODs visible through the camera view are affected. + # + # When zoomed in LODs will load to the same detail level + # they would have if you were close to them. + increaseQualityWhenZoomedIn = true [client.advanced.graphics.fog] # diff --git a/overrides/config/drippyloadingscreen/options.txt b/config/drippyloadingscreen/options.txt similarity index 100% rename from overrides/config/drippyloadingscreen/options.txt rename to config/drippyloadingscreen/options.txt diff --git a/config/fancymenu/assets/banners/guidebook.png b/config/fancymenu/assets/banners/guidebook.png new file mode 100644 index 0000000..adbdec3 Binary files /dev/null and b/config/fancymenu/assets/banners/guidebook.png differ diff --git a/config/fancymenu/assets/banners/guidebooks.png b/config/fancymenu/assets/banners/guidebooks.png new file mode 100644 index 0000000..dadd773 Binary files /dev/null and b/config/fancymenu/assets/banners/guidebooks.png differ diff --git a/config/fancymenu/assets/banners/main.png b/config/fancymenu/assets/banners/main.png new file mode 100644 index 0000000..83e49e2 Binary files /dev/null and b/config/fancymenu/assets/banners/main.png differ diff --git a/config/fancymenu/assets/buildteams.json b/config/fancymenu/assets/buildteams.json new file mode 100644 index 0000000..9af43d3 --- /dev/null +++ b/config/fancymenu/assets/buildteams.json @@ -0,0 +1,338 @@ +{ + "bte-nyc": { + "name": "BTE New York City", + "ip": + "nyc.buildtheearth.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/nMJMMBR" + }, + "bte-usa": { + "name": "BTE USA", + "ip": + "nabte.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/TrKHFDWzhT" + }, + "bte-german": { + "name": "Build The Earth Germany", + "ip": + "bte-germany.de" + , + "version": "1.21.10", + "invite": "https://discord.gg/btegermany" + }, + "bte-teamcis": { + "name": "TeamCIS | СНГ", + "ip": + "buildtheearth.ru" + , + "version": "1.21.4", + "invite": "https://discord.gg/hwkhefs" + }, + "bte-jersey": { + "name": "Build New Jersey", + "ip": + "hub.andromedacraft.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/TQmUQZt" + }, + "bte-norbal": { + "name": "Nordic + Baltic", + "ip": + "nordicbalticbte.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/bte-nordic-baltic-692331531456479332" + }, + "bte-alps": { + "name": "Alps BTE (AT/CH/LI)", + "ip": + "mc.alps-bte.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/vgkspay" + }, + "bte-france": { + "name": "BTE France", + "ip": + "btefrance.fr" + , + "version": "1.21.10", + "invite": "https://discord.gg/Rnd8zukRFC" + }, + "bte-benelux": { + "name": "Build Benelux", + "ip": + "bnlx.buildtheearth.net" + , + "version": "1.21.11", + "invite": "https://discord.gg/YCSCjrAkHc" + }, + "bte-poland": { + "name": "BTE Poland", + "ip": + "bte-poland.pl" + , + "version": "1.21.11", + "invite": "https://discord.gg/a6cbfnZxTv" + }, + "bte-canada": { + "name": "BTE Canada", + "ip": + "btecanada.net" + , + "version": "1.21.10", + "invite": "https://discord.com/servers/buildtheearth-net-690908396404080650" + }, + "bte-iberia": { + "name": "Build Iberia", + "ip": + "ib.buildtheearth.net" + , + "version": "1.21.11", + "invite": "https://discord.gg/a8PF9sTfqF" + }, + "bte-italia": { + "name": "Build The Earth Italia (1:1)", + "ip": + "mc.bteitalia.it" + , + "version": "1.21.10", + "invite": "https://discord.gg/dMahHCH" + }, + "bte-uk": { + "name": "Build the UK", + "ip": + "btuk.org" + , + "version": "1.21.10", + "invite": "https://discord.gg/2k2hM3f" + }, + "bte-parks": { + "name": "BTE Theme Parks", + "ip": + "parks.buildtheearth.net" + , + "version": "1.21.11", + "invite": "https://discord.gg/544kmNQ" + }, + "bte-czech": { + "name": "BTE Team Czechoslovakia", + "ip": + "czsk.buildtheearth.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/vv8Qaew5wQ" + }, + "bte-turkey": { + "name": "Build The Earth Turkey", + "ip": + "bteturkey.net" + , + "version": "1.21.11", + "invite": "https://discord.gg/GJm2B9h" + }, + "bte-oceania": { + "name": "Oceania Build Team", + "ip": + "hub.bteoce.com" + , + "version": "1.21.11", + "invite": "https://discord.gg/enk8kJ3" + }, + "bte-asean": { + "name": "BTE ASEAN", + "ip": "asean.buildtheearth.net", + "version": "1.21.11", + "invite": "https://discord.gg/DNwnKmkQpw" + }, + "bte-ireland": { + "name": "Build The Earth- Republic of Ireland", + "ip": "mc.bteireland.ie", + "version": "1.21.11", + "invite": "https://discord.gg/KtWkj9k" + }, + "bte-brasil": { + "name": "BTE Brasil", + "ip": "buildtheearth.net.br", + "version": "1.21.8", + "invite": "https://discord.gg/PXMv8wEB4M" + }, + "bte-japan": { + "name": "BTE Japan", + "ip": + "bte-japan.xtremcraft.fr:12013" + , + "version": "1.21.10", + "invite": "https://discord.gg/pExkqKVMJn" + }, + "bte-hkmu": { + "name": "BTE Hong Kong-Macau", + "ip": + "play.btehkmu.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/rUuKaNu" + }, + "bte-balkans": { + "name": "BTE Balkans", + "ip": + "mc.btebalkans.com" + , + "version": "1.21.8", + "invite": "https://discord.gg/fBAfcyg" + }, + "bte-chile": { + "name": "BuildTheEarth Chile", + "ip": + "bteconosur.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/Q5Q9nw5ux2" + }, + "bte-africa": { + "name": "Africa Rebuilt", + "ip": + "afr.buildtheearth.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/qcjqenDfjC" + }, + "bte-middleeast": { + "name": "BTE Middle East", + "ip": + "me.buildtheearth.net" + , + "version": "1.21.11", + "invite": "https://discord.gg/rkrpeuc" + }, + "bte-mexico": { + "name": "BTE Mexico & Central America", + "ip": + "btemexca.net" + , + "version": "1.21.11", + "invite": "https://discord.gg/mseJqbc" + }, + "bte-argentina": { + "name": "BTE Argentina", + "ip": + "bteconosur.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/csbK2SBHY5" + }, + "bte-hungary": { + "name": "Build Team Hungary", + "ip": + "hun.buildtheearth.net" + , + "version": "1.21.7", + "invite": "https://discord.gg/fUxBGMN" + }, + "bte-northamerica": { + "name": "BTE North Latin America", + "ip": + "btenla.net" + , + "version": "1.12.2", + "invite": "https://discord.gg/HP4GHRCwvv" + }, + "bte-ukraine": { + "name": "BTE Ukraine", + "ip": + "bteukraine.com" + , + "version": "1.21.4", + "invite": "https://discord.gg/J6BnZyQjsx" + }, + "bte-korea": { + "name": "BTE Korea", + "ip": + "buildtheearth.asia" + , + "version": "1.21.4", + "invite": "https://discord.gg/HfhDdkhCb8" + }, + "bte-israel": { + "name": "BTE Israel", + "ip": + "buildisrael.es" + , + "version": "26.1.2", + "invite": "https://discord.gg/buildisrael-696609608269037568" + }, + "bte-peru": { + "name": "BuildTheEarth: Perú", + "ip": + "bteconosur.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/sfmXJB9" + }, + "bte-southasia": { + "name": "BuildTheEarth South Asia", + "ip": + "buildtheearth.net" + , + "version": "1.12.2", + "invite": "https://discord.gg/baEF7fK" + }, + "bte-china": { + "name": "BTE Mainland China", + "ip": + "btechina.oddblox.net" + , + "version": "1.21.8", + "invite": "https://discord.gg/MFfWWYCx4F" + }, + "bte-taiwan": { + "name": "BTE Taiwan", + "ip": "mctw.in", + "version": "1.21.11", + "invite": "https://discord.gg/Ueqj8yr" + }, + "bte-paraguay": { + "name": "Build The Earth Paraguay + Uruguay ", + "ip": "bteconosur.com", + "version": "1.21.10", + "invite": "https://discord.gg/3gZJmu6" + }, + "bte-bolivia": { + "name": "BuildTheEarth: Bolivia", + "ip": + "bteconosur.com" + , + "version": "1.21.10", + "invite": "https://discord.gg/ZxPazZ6w65" + }, + "bte-military": { + "name": "Military Builders", + "ip": + "buildtheearth.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/UtRmY3B" + }, + "bte-admin": { + "name": "BuildTheEarth.net", + "ip": + "buildtheearth.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/a5umxwq6gw" + }, + "bte-event": { + "name": "BTE Event", + "ip": + "event.buildtheearth.net" + , + "version": "1.21.10", + "invite": "https://discord.gg/a5umxwq6gw" + } +} + + diff --git a/config/fancymenu/assets/icons/discord.png b/config/fancymenu/assets/icons/discord.png new file mode 100644 index 0000000..08c3383 Binary files /dev/null and b/config/fancymenu/assets/icons/discord.png differ diff --git a/config/fancymenu/assets/icons/intro.png b/config/fancymenu/assets/icons/intro.png new file mode 100644 index 0000000..37a1d25 Binary files /dev/null and b/config/fancymenu/assets/icons/intro.png differ diff --git a/overrides/config/fancymenu/assets/banners/logo.gif b/config/fancymenu/assets/icons/logo.gif similarity index 100% rename from overrides/config/fancymenu/assets/banners/logo.gif rename to config/fancymenu/assets/icons/logo.gif diff --git a/overrides/config/fancymenu/assets/banners/logo.png b/config/fancymenu/assets/icons/logo.png similarity index 100% rename from overrides/config/fancymenu/assets/banners/logo.png rename to config/fancymenu/assets/icons/logo.png diff --git a/overrides/config/fancymenu/assets/banners/logo16.png b/config/fancymenu/assets/icons/logo16.png similarity index 100% rename from overrides/config/fancymenu/assets/banners/logo16.png rename to config/fancymenu/assets/icons/logo16.png diff --git a/overrides/config/fancymenu/assets/banners/logo32.png b/config/fancymenu/assets/icons/logo32.png similarity index 100% rename from overrides/config/fancymenu/assets/banners/logo32.png rename to config/fancymenu/assets/icons/logo32.png diff --git a/config/fancymenu/assets/icons/logo_fade.png b/config/fancymenu/assets/icons/logo_fade.png new file mode 100644 index 0000000..7d5c84c Binary files /dev/null and b/config/fancymenu/assets/icons/logo_fade.png differ diff --git a/overrides/config/fancymenu/assets/banners/logomac.icns b/config/fancymenu/assets/icons/logomac.icns similarity index 100% rename from overrides/config/fancymenu/assets/banners/logomac.icns rename to config/fancymenu/assets/icons/logomac.icns diff --git a/config/fancymenu/assets/icons/replay.png b/config/fancymenu/assets/icons/replay.png new file mode 100644 index 0000000..4141082 Binary files /dev/null and b/config/fancymenu/assets/icons/replay.png differ diff --git a/config/fancymenu/assets/images/continue.png b/config/fancymenu/assets/images/continue.png new file mode 100644 index 0000000..6339732 Binary files /dev/null and b/config/fancymenu/assets/images/continue.png differ diff --git a/config/fancymenu/assets/images/continue_hover.png b/config/fancymenu/assets/images/continue_hover.png new file mode 100644 index 0000000..50c80b1 Binary files /dev/null and b/config/fancymenu/assets/images/continue_hover.png differ diff --git a/config/fancymenu/assets/images/multiplayer.png b/config/fancymenu/assets/images/multiplayer.png new file mode 100644 index 0000000..089437a Binary files /dev/null and b/config/fancymenu/assets/images/multiplayer.png differ diff --git a/config/fancymenu/assets/images/multiplayer_hover.png b/config/fancymenu/assets/images/multiplayer_hover.png new file mode 100644 index 0000000..b8d4c38 Binary files /dev/null and b/config/fancymenu/assets/images/multiplayer_hover.png differ diff --git a/config/fancymenu/assets/images/singleplayer.png b/config/fancymenu/assets/images/singleplayer.png new file mode 100644 index 0000000..de1f500 Binary files /dev/null and b/config/fancymenu/assets/images/singleplayer.png differ diff --git a/config/fancymenu/assets/images/singleplayer_hover.png b/config/fancymenu/assets/images/singleplayer_hover.png new file mode 100644 index 0000000..030c8e3 Binary files /dev/null and b/config/fancymenu/assets/images/singleplayer_hover.png differ diff --git a/config/fancymenu/assets/intro/build_regions_map.png b/config/fancymenu/assets/intro/build_regions_map.png new file mode 100644 index 0000000..2493cb5 Binary files /dev/null and b/config/fancymenu/assets/intro/build_regions_map.png differ diff --git a/config/fancymenu/assets/intro/intro_back.png b/config/fancymenu/assets/intro/intro_back.png new file mode 100644 index 0000000..e8ba512 Binary files /dev/null and b/config/fancymenu/assets/intro/intro_back.png differ diff --git a/config/fancymenu/assets/intro/intro_done.png b/config/fancymenu/assets/intro/intro_done.png new file mode 100644 index 0000000..bc4dd58 Binary files /dev/null and b/config/fancymenu/assets/intro/intro_done.png differ diff --git a/config/fancymenu/assets/intro/intro_next.png b/config/fancymenu/assets/intro/intro_next.png new file mode 100644 index 0000000..3dbae1f Binary files /dev/null and b/config/fancymenu/assets/intro/intro_next.png differ diff --git a/config/fancymenu/assets/intro/intro_skip.png b/config/fancymenu/assets/intro/intro_skip.png new file mode 100644 index 0000000..afaef94 Binary files /dev/null and b/config/fancymenu/assets/intro/intro_skip.png differ diff --git a/config/fancymenu/assets/intro/projection.png b/config/fancymenu/assets/intro/projection.png new file mode 100644 index 0000000..567a014 Binary files /dev/null and b/config/fancymenu/assets/intro/projection.png differ diff --git a/overrides/config/fancymenu/assets/intro/scale.png b/config/fancymenu/assets/intro/scale.png similarity index 100% rename from overrides/config/fancymenu/assets/intro/scale.png rename to config/fancymenu/assets/intro/scale.png diff --git a/config/fancymenu/assets/introduction.json b/config/fancymenu/assets/introduction.json new file mode 100644 index 0000000..deb8651 --- /dev/null +++ b/config/fancymenu/assets/introduction.json @@ -0,0 +1,16 @@ +{ + "content": [ + "%n%### **Welcome to BuildTheEarth! 🌎**%n%%n%%n%We are the go-to community for bringing real-life places to Minecraft, 1:1! This modpack contains *all* the necessary tools and info needed to explore or contribute to this project!%n%%n%Before starting to use this modpack, there are some things you should know about this project.%n%%n%Click *Next* to continue.", + "%n%### **Unit of Measurement 📏**%n%%n%%n%In BuildTheEarth (BTE), 1 meter in real life = 1 block in Minecraft.%n%- If it is in decimal, round it to the nearest number. (1.76 ≈ 2)%n%![Scale](config/fancymenu/assets/intro/scale.png)", + "%n%### **Map Projection 🧭**%n%%n%%n%The world is round, but Minecraft is flat. This results in distortion.%n%We cannot fix this, but we can reduce its effects.%n%%n%So we have to use a special map projection called *Dymaxion Projection*, which looks different from regular maps. Scroll below to view it.%n%%n%![Projection](config/fancymenu/assets/intro/projection.png)%n%%n%> Each color band adds 0.1 to the distortion. First red band: 1.1 Blocks : 1 meter.", + "%n%### **Build Regions 🔧**%n%%n%%n%As the world is very big, we have to divide it by regions.%n%This allows for easier management. Sometimes we call them Build Teams.%n%%n%Each Build Region consists of one or more servers, mananged by staffs. They may have different rules and standards for building, but the same scale and projection is still used.%n%%n%For example, Scotland is under BTE UK, Thailand is under BTE ASEAN, Egypt is under BTE Africa, etc.", + "%n%### **Build Regions 🔧**%n%%n%%n%A map of all regions can viewed below.%n%This modpack contains the server ips of all Build Regions with a map GUI.%n%%n%![Projection](config/fancymenu/assets/intro/build_regions_map.png)%n%%n%> Some countries may be grouped together for efficiency, so don't be suprised to see Czech Republic and Slovakia combined, or the whole of Africa under 1 Build Region.", + "%n%### **Contribution 🤝**%n%%n%%n%We are always in need of Builders to help out!%n%All Build Regions have their ways for you to apply for one.%n%You can choose to work by yourself or with your friends in the Build Region.%n%%n%It's okay if you don't have the building skills, we are happy to assist.%n%%n%There are also plenty of other ways to contribute, such as taking photo references of buildings which are difficult to view in Google Maps.%n%%n%The next page briefly describes the way we build.", + "%n%### **How buildings are made 🏡**%n%%n%%n%As BTE is based of an established projection and scale, we can make use of map services such as Google Maps to get the corners of a building and place them into Minecraft.%n%%n%Don't worry if you don't understand, many Build Regions have their own hands on tutorial for you to complete.%n%%n%To do this, we have to do the following:%n%- Step 1: Open Google Maps and view a building we want to build.%n%- Step 2: Right click on the corner of the building and copy its coordinates. An example of coordinates is *1.3622, 103.9538*.%n%- Step 3: Go into Minecraft and type in /tpll, followed by the coordinates by pasting it. Following the example, */tpll 1.3622, 103.9538*.%n%- Step 4: Press enter. You will teleported to the Minecraft coordinate of that building corner. Place a block to indicate it.%n%%n%> The /tpll command only works in Build Region Servers. You can only build for BTE in these servers, use of singleplayer is highly discouraged.", + "%n%### **Discord 💬**%n%%n%%n%We mainly have our discussions and chats on Discord, so we highly recommend you to join in! Feel free to ask any questions in #support. %n%%n%Showcases of builds are ocassionally posted, and many Build Regions have their Minecraft chats connected as well. Some Builder applications also require you to join the Discord servers.%n%%n%To get started, you can join the main BTE discord. Enjoy exploring or building!%n%%n%[Discord link](https://discord.com/invite/buildtheearth-net-690908396404080650)" + ], + "length": "7" +} + + + diff --git a/config/fancymenu/assets/labels/bte_africa/africarebuilt.png b/config/fancymenu/assets/labels/bte_africa/africarebuilt.png new file mode 100644 index 0000000..444b329 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_africa/africarebuilt.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/asean.png b/config/fancymenu/assets/labels/bte_asia/asean.png new file mode 100644 index 0000000..203f9ea Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/asean.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/china.png b/config/fancymenu/assets/labels/bte_asia/china.png new file mode 100644 index 0000000..fc59a3e Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/china.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/hkmu.png b/config/fancymenu/assets/labels/bte_asia/hkmu.png new file mode 100644 index 0000000..ee6d898 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/hkmu.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/israel.png b/config/fancymenu/assets/labels/bte_asia/israel.png new file mode 100644 index 0000000..086a9e6 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/israel.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/japan.png b/config/fancymenu/assets/labels/bte_asia/japan.png new file mode 100644 index 0000000..60d2899 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/japan.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/korea.png b/config/fancymenu/assets/labels/bte_asia/korea.png new file mode 100644 index 0000000..4a11481 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/korea.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/middleeast.png b/config/fancymenu/assets/labels/bte_asia/middleeast.png new file mode 100644 index 0000000..1ec6725 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/middleeast.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/southasia.png b/config/fancymenu/assets/labels/bte_asia/southasia.png new file mode 100644 index 0000000..77af163 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/southasia.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/taiwan.png b/config/fancymenu/assets/labels/bte_asia/taiwan.png new file mode 100644 index 0000000..03abd0e Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/taiwan.png differ diff --git a/config/fancymenu/assets/labels/bte_asia/teamcis.png b/config/fancymenu/assets/labels/bte_asia/teamcis.png new file mode 100644 index 0000000..dbff6ba Binary files /dev/null and b/config/fancymenu/assets/labels/bte_asia/teamcis.png differ diff --git a/config/fancymenu/assets/labels/bte_australia/australia.png b/config/fancymenu/assets/labels/bte_australia/australia.png new file mode 100644 index 0000000..a16ee2a Binary files /dev/null and b/config/fancymenu/assets/labels/bte_australia/australia.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/alps.png b/config/fancymenu/assets/labels/bte_europe/alps.png new file mode 100644 index 0000000..0ddb1a9 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/alps.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/balkans.png b/config/fancymenu/assets/labels/bte_europe/balkans.png new file mode 100644 index 0000000..b891917 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/balkans.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/benelux.png b/config/fancymenu/assets/labels/bte_europe/benelux.png new file mode 100644 index 0000000..ef56342 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/benelux.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/czech.png b/config/fancymenu/assets/labels/bte_europe/czech.png new file mode 100644 index 0000000..b010176 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/czech.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/france.png b/config/fancymenu/assets/labels/bte_europe/france.png new file mode 100644 index 0000000..a12497c Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/france.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/germany.png b/config/fancymenu/assets/labels/bte_europe/germany.png new file mode 100644 index 0000000..dc152dd Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/germany.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/hungary.png b/config/fancymenu/assets/labels/bte_europe/hungary.png new file mode 100644 index 0000000..9ead6da Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/hungary.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/iberia.png b/config/fancymenu/assets/labels/bte_europe/iberia.png new file mode 100644 index 0000000..d32fb62 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/iberia.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/ireland.png b/config/fancymenu/assets/labels/bte_europe/ireland.png new file mode 100644 index 0000000..e152f69 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/ireland.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/italia.png b/config/fancymenu/assets/labels/bte_europe/italia.png new file mode 100644 index 0000000..725f8df Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/italia.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/norbal.png b/config/fancymenu/assets/labels/bte_europe/norbal.png new file mode 100644 index 0000000..fbce25c Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/norbal.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/poland.png b/config/fancymenu/assets/labels/bte_europe/poland.png new file mode 100644 index 0000000..5dd2ba5 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/poland.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/rommol.png b/config/fancymenu/assets/labels/bte_europe/rommol.png new file mode 100644 index 0000000..ee91235 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/rommol.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/turkey.png b/config/fancymenu/assets/labels/bte_europe/turkey.png new file mode 100644 index 0000000..98b7a20 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/turkey.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/uk.png b/config/fancymenu/assets/labels/bte_europe/uk.png new file mode 100644 index 0000000..6ab9bb6 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/uk.png differ diff --git a/config/fancymenu/assets/labels/bte_europe/ukraine.png b/config/fancymenu/assets/labels/bte_europe/ukraine.png new file mode 100644 index 0000000..e721b1c Binary files /dev/null and b/config/fancymenu/assets/labels/bte_europe/ukraine.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/back.png b/config/fancymenu/assets/labels/bte_layout/back.png new file mode 100644 index 0000000..c5a23b3 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/back.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/comp.png b/config/fancymenu/assets/labels/bte_layout/comp.png new file mode 100644 index 0000000..17ced46 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/comp.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_afr.png b/config/fancymenu/assets/labels/bte_layout/continent_afr.png new file mode 100644 index 0000000..d348a4d Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_afr.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_asia.png b/config/fancymenu/assets/labels/bte_layout/continent_asia.png new file mode 100644 index 0000000..8669321 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_asia.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_eu.png b/config/fancymenu/assets/labels/bte_layout/continent_eu.png new file mode 100644 index 0000000..5e4881f Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_eu.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_northamerica.png b/config/fancymenu/assets/labels/bte_layout/continent_northamerica.png new file mode 100644 index 0000000..dcfb65a Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_northamerica.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_oceania.png b/config/fancymenu/assets/labels/bte_layout/continent_oceania.png new file mode 100644 index 0000000..431ab6b Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_oceania.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_southamerica.png b/config/fancymenu/assets/labels/bte_layout/continent_southamerica.png new file mode 100644 index 0000000..5f7bf17 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_southamerica.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/continent_title.png b/config/fancymenu/assets/labels/bte_layout/continent_title.png new file mode 100644 index 0000000..4303919 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/continent_title.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/event.png b/config/fancymenu/assets/labels/bte_layout/event.png new file mode 100644 index 0000000..8885495 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/event.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/hub.png b/config/fancymenu/assets/labels/bte_layout/hub.png new file mode 100644 index 0000000..d52c081 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/hub.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/multi.png b/config/fancymenu/assets/labels/bte_layout/multi.png new file mode 100644 index 0000000..d49bb07 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/multi.png differ diff --git a/config/fancymenu/assets/labels/bte_layout/region_title.png b/config/fancymenu/assets/labels/bte_layout/region_title.png new file mode 100644 index 0000000..0260121 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_layout/region_title.png differ diff --git a/config/fancymenu/assets/labels/bte_na/canada.png b/config/fancymenu/assets/labels/bte_na/canada.png new file mode 100644 index 0000000..3292940 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_na/canada.png differ diff --git a/config/fancymenu/assets/labels/bte_na/mexico.png b/config/fancymenu/assets/labels/bte_na/mexico.png new file mode 100644 index 0000000..d04ea96 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_na/mexico.png differ diff --git a/config/fancymenu/assets/labels/bte_na/newjersey.png b/config/fancymenu/assets/labels/bte_na/newjersey.png new file mode 100644 index 0000000..554497f Binary files /dev/null and b/config/fancymenu/assets/labels/bte_na/newjersey.png differ diff --git a/config/fancymenu/assets/labels/bte_na/nla.png b/config/fancymenu/assets/labels/bte_na/nla.png new file mode 100644 index 0000000..cc5dee2 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_na/nla.png differ diff --git a/config/fancymenu/assets/labels/bte_na/nyc.png b/config/fancymenu/assets/labels/bte_na/nyc.png new file mode 100644 index 0000000..82a9772 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_na/nyc.png differ diff --git a/config/fancymenu/assets/labels/bte_na/usa.png b/config/fancymenu/assets/labels/bte_na/usa.png new file mode 100644 index 0000000..882f452 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_na/usa.png differ diff --git a/config/fancymenu/assets/labels/bte_sa/argentina.png b/config/fancymenu/assets/labels/bte_sa/argentina.png new file mode 100644 index 0000000..8079ffc Binary files /dev/null and b/config/fancymenu/assets/labels/bte_sa/argentina.png differ diff --git a/config/fancymenu/assets/labels/bte_sa/bolivia.png b/config/fancymenu/assets/labels/bte_sa/bolivia.png new file mode 100644 index 0000000..37c18ed Binary files /dev/null and b/config/fancymenu/assets/labels/bte_sa/bolivia.png differ diff --git a/config/fancymenu/assets/labels/bte_sa/brasil.png b/config/fancymenu/assets/labels/bte_sa/brasil.png new file mode 100644 index 0000000..2bf69f7 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_sa/brasil.png differ diff --git a/config/fancymenu/assets/labels/bte_sa/chile.png b/config/fancymenu/assets/labels/bte_sa/chile.png new file mode 100644 index 0000000..79bdab2 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_sa/chile.png differ diff --git a/config/fancymenu/assets/labels/bte_sa/paraguay.png b/config/fancymenu/assets/labels/bte_sa/paraguay.png new file mode 100644 index 0000000..7858bab Binary files /dev/null and b/config/fancymenu/assets/labels/bte_sa/paraguay.png differ diff --git a/config/fancymenu/assets/labels/bte_sa/peru.png b/config/fancymenu/assets/labels/bte_sa/peru.png new file mode 100644 index 0000000..11540c9 Binary files /dev/null and b/config/fancymenu/assets/labels/bte_sa/peru.png differ diff --git a/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png b/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png new file mode 100644 index 0000000..8870683 Binary files /dev/null and b/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png differ diff --git a/config/fancymenu/assets/labels/connected_disconnected_layout/cancel.png b/config/fancymenu/assets/labels/connected_disconnected_layout/cancel.png new file mode 100644 index 0000000..5ef3434 Binary files /dev/null and b/config/fancymenu/assets/labels/connected_disconnected_layout/cancel.png differ diff --git a/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png b/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png new file mode 100644 index 0000000..8b95b30 Binary files /dev/null and b/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/advance.png b/config/fancymenu/assets/labels/start_pause_layout/advance.png new file mode 100644 index 0000000..0106230 Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/advance.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/continue.png b/config/fancymenu/assets/labels/start_pause_layout/continue.png new file mode 100644 index 0000000..16e5546 Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/continue.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/leave.png b/config/fancymenu/assets/labels/start_pause_layout/leave.png new file mode 100644 index 0000000..d431cc4 Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/leave.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/mod.png b/config/fancymenu/assets/labels/start_pause_layout/mod.png new file mode 100644 index 0000000..21d2c25 Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/mod.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/player_report.png b/config/fancymenu/assets/labels/start_pause_layout/player_report.png new file mode 100644 index 0000000..6074eab Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/player_report.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/quit.png b/config/fancymenu/assets/labels/start_pause_layout/quit.png new file mode 100644 index 0000000..45a9f95 Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/quit.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/setting.png b/config/fancymenu/assets/labels/start_pause_layout/setting.png new file mode 100644 index 0000000..ffb0e40 Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/setting.png differ diff --git a/config/fancymenu/assets/labels/start_pause_layout/statistic.png b/config/fancymenu/assets/labels/start_pause_layout/statistic.png new file mode 100644 index 0000000..3c8885b Binary files /dev/null and b/config/fancymenu/assets/labels/start_pause_layout/statistic.png differ diff --git a/config/fancymenu/assets/maps/map-africa.png b/config/fancymenu/assets/maps/map-africa.png new file mode 100644 index 0000000..7394b60 Binary files /dev/null and b/config/fancymenu/assets/maps/map-africa.png differ diff --git a/config/fancymenu/assets/maps/map-asia.png b/config/fancymenu/assets/maps/map-asia.png new file mode 100644 index 0000000..422d8a0 Binary files /dev/null and b/config/fancymenu/assets/maps/map-asia.png differ diff --git a/config/fancymenu/assets/maps/map-australia.png b/config/fancymenu/assets/maps/map-australia.png new file mode 100644 index 0000000..019df2a Binary files /dev/null and b/config/fancymenu/assets/maps/map-australia.png differ diff --git a/config/fancymenu/assets/maps/map-europe.png b/config/fancymenu/assets/maps/map-europe.png new file mode 100644 index 0000000..9431758 Binary files /dev/null and b/config/fancymenu/assets/maps/map-europe.png differ diff --git a/config/fancymenu/assets/maps/map-north-america.png b/config/fancymenu/assets/maps/map-north-america.png new file mode 100644 index 0000000..844c68f Binary files /dev/null and b/config/fancymenu/assets/maps/map-north-america.png differ diff --git a/config/fancymenu/assets/maps/map-south-america.png b/config/fancymenu/assets/maps/map-south-america.png new file mode 100644 index 0000000..9f30e01 Binary files /dev/null and b/config/fancymenu/assets/maps/map-south-america.png differ diff --git a/config/fancymenu/assets/maps/map.png b/config/fancymenu/assets/maps/map.png new file mode 100644 index 0000000..0b14e7e Binary files /dev/null and b/config/fancymenu/assets/maps/map.png differ diff --git a/config/fancymenu/assets/maps/maps-bg.png b/config/fancymenu/assets/maps/maps-bg.png new file mode 100644 index 0000000..e11ba35 Binary files /dev/null and b/config/fancymenu/assets/maps/maps-bg.png differ diff --git a/config/fancymenu/assets/release.ogg b/config/fancymenu/assets/release.ogg new file mode 100644 index 0000000..178c59e Binary files /dev/null and b/config/fancymenu/assets/release.ogg differ diff --git a/config/fancymenu/assets/template-json.txt b/config/fancymenu/assets/template-json.txt new file mode 100644 index 0000000..705b406 --- /dev/null +++ b/config/fancymenu/assets/template-json.txt @@ -0,0 +1,90 @@ +{ + "placeholder": "serverplayercount", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.bte-asean.ip"}}" + } +} +{ + "placeholder": "serverversion", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.bte-asean.ip"}}" + } +} +{ + "placeholder": "serverstatus", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.bte-asean.ip"}}" + } +} + +{ + "placeholder": "json", + "values": { + "source": "/config/fancymenu/assets/buildteams.json", + "json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"} + }.ip" + } +} + +{ + "placeholder": "json", + "values": { + "source": "/config/fancymenu/assets/buildteams.json", + "json_path": "$.bte-.name" + } +} + +Players: { + "placeholder": "serverplayercount", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"} + }.ip"}}" + } +} +Version: { + "placeholder": "serverversion", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"} + }.ip"}}" + } +} +Players: { + "placeholder": "serverplayercount", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"} + }.ip"}}" + } +} +{ + "placeholder": "serverstatus", + "values": { + "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json", + "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"} + }.ip"}}" + } +} + +{ + "placeholder": "json", + "values": { + "source": "/config/fancymenu/assets/buildteams.json", + "json_path": "$.bte-asean.ip" + } +} + +606282 +606306 +606330 + +com.moulberry.flashback.screen.SaveReplayScreen:398473 +com.moulberry.flashback.screen.SaveReplayScreen:398511 +com.moulberry.flashback.screen.SaveReplayScreen:398549 +com.moulberry.flashback.screen.SaveReplayScreen:504549 + +create_world_screen:cancel_button \ No newline at end of file diff --git a/config/fancymenu/assets/textures/bg-2.png b/config/fancymenu/assets/textures/bg-2.png new file mode 100644 index 0000000..2f53ea7 Binary files /dev/null and b/config/fancymenu/assets/textures/bg-2.png differ diff --git a/config/fancymenu/assets/textures/bg.png b/config/fancymenu/assets/textures/bg.png new file mode 100644 index 0000000..bd7420b Binary files /dev/null and b/config/fancymenu/assets/textures/bg.png differ diff --git a/config/fancymenu/assets/textures/button.png b/config/fancymenu/assets/textures/button.png new file mode 100644 index 0000000..28c089f Binary files /dev/null and b/config/fancymenu/assets/textures/button.png differ diff --git a/config/fancymenu/assets/textures/button_2.png b/config/fancymenu/assets/textures/button_2.png new file mode 100644 index 0000000..91617c6 Binary files /dev/null and b/config/fancymenu/assets/textures/button_2.png differ diff --git a/config/fancymenu/assets/textures/button_2_hover.png b/config/fancymenu/assets/textures/button_2_hover.png new file mode 100644 index 0000000..cb85776 Binary files /dev/null and b/config/fancymenu/assets/textures/button_2_hover.png differ diff --git a/config/fancymenu/assets/textures/button_back.png b/config/fancymenu/assets/textures/button_back.png new file mode 100644 index 0000000..f412b64 Binary files /dev/null and b/config/fancymenu/assets/textures/button_back.png differ diff --git a/config/fancymenu/assets/textures/button_back_hover.png b/config/fancymenu/assets/textures/button_back_hover.png new file mode 100644 index 0000000..36bb188 Binary files /dev/null and b/config/fancymenu/assets/textures/button_back_hover.png differ diff --git a/config/fancymenu/assets/textures/button_hover.png b/config/fancymenu/assets/textures/button_hover.png new file mode 100644 index 0000000..d0da198 Binary files /dev/null and b/config/fancymenu/assets/textures/button_hover.png differ diff --git a/config/fancymenu/assets/textures/button_legacy.png b/config/fancymenu/assets/textures/button_legacy.png new file mode 100644 index 0000000..f773bbb Binary files /dev/null and b/config/fancymenu/assets/textures/button_legacy.png differ diff --git a/config/fancymenu/assets/textures/button_legacy_hover.png b/config/fancymenu/assets/textures/button_legacy_hover.png new file mode 100644 index 0000000..70f940f Binary files /dev/null and b/config/fancymenu/assets/textures/button_legacy_hover.png differ diff --git a/config/fancymenu/assets/textures/button_main.png b/config/fancymenu/assets/textures/button_main.png new file mode 100644 index 0000000..c39fb0b Binary files /dev/null and b/config/fancymenu/assets/textures/button_main.png differ diff --git a/config/fancymenu/assets/textures/button_main_hover.png b/config/fancymenu/assets/textures/button_main_hover.png new file mode 100644 index 0000000..9df2a75 Binary files /dev/null and b/config/fancymenu/assets/textures/button_main_hover.png differ diff --git a/config/fancymenu/assets/textures/discord.png b/config/fancymenu/assets/textures/discord.png new file mode 100644 index 0000000..ef49545 Binary files /dev/null and b/config/fancymenu/assets/textures/discord.png differ diff --git a/config/fancymenu/assets/textures/discord_hover.png b/config/fancymenu/assets/textures/discord_hover.png new file mode 100644 index 0000000..01fc378 Binary files /dev/null and b/config/fancymenu/assets/textures/discord_hover.png differ diff --git a/config/fancymenu/assets/textures/notice.png b/config/fancymenu/assets/textures/notice.png new file mode 100644 index 0000000..8fc944b Binary files /dev/null and b/config/fancymenu/assets/textures/notice.png differ diff --git a/config/fancymenu/assets/textures/notice_hover.png b/config/fancymenu/assets/textures/notice_hover.png new file mode 100644 index 0000000..ba30bed Binary files /dev/null and b/config/fancymenu/assets/textures/notice_hover.png differ diff --git a/config/fancymenu/assets/textures/replay.png b/config/fancymenu/assets/textures/replay.png new file mode 100644 index 0000000..ff3b499 Binary files /dev/null and b/config/fancymenu/assets/textures/replay.png differ diff --git a/config/fancymenu/assets/textures/replay_hover.png b/config/fancymenu/assets/textures/replay_hover.png new file mode 100644 index 0000000..96d44e2 Binary files /dev/null and b/config/fancymenu/assets/textures/replay_hover.png differ diff --git a/config/fancymenu/assets/textures/slider.png b/config/fancymenu/assets/textures/slider.png new file mode 100644 index 0000000..7e14190 Binary files /dev/null and b/config/fancymenu/assets/textures/slider.png differ diff --git a/config/fancymenu/assets/textures/slider_bg.png b/config/fancymenu/assets/textures/slider_bg.png new file mode 100644 index 0000000..8b223bb Binary files /dev/null and b/config/fancymenu/assets/textures/slider_bg.png differ diff --git a/config/fancymenu/assets/textures/slider_hover.png b/config/fancymenu/assets/textures/slider_hover.png new file mode 100644 index 0000000..be99e9d Binary files /dev/null and b/config/fancymenu/assets/textures/slider_hover.png differ diff --git a/overrides/config/fancymenu/assets/tips.txt b/config/fancymenu/assets/tips.txt similarity index 100% rename from overrides/config/fancymenu/assets/tips.txt rename to config/fancymenu/assets/tips.txt diff --git a/overrides/config/fancymenu/custom_gui_screens.txt b/config/fancymenu/custom_gui_screens.txt similarity index 67% rename from overrides/config/fancymenu/custom_gui_screens.txt rename to config/fancymenu/custom_gui_screens.txt index 7869029..6b3642a 100644 --- a/overrides/config/fancymenu/custom_gui_screens.txt +++ b/config/fancymenu/custom_gui_screens.txt @@ -1,11 +1,12 @@ type = custom_gui_screens overridden_screens { + com.replaymod.lib.de.johni0702.minecraft.gui.container.AbstractGuiScreen$MinecraftGuiScreen = replay_mod } custom_gui { - identifier = build-teams-europe - title = Select region + identifier = bte_eu + title = allow_esc = true transparent_world_background = true transparent_world_background_overlay = true @@ -15,18 +16,18 @@ custom_gui { } custom_gui { - identifier = build-teams-africa - title = Select region + identifier = bte_special + title = allow_esc = true - transparent_world_background = true + transparent_world_background = false transparent_world_background_overlay = true - pause_game = true + pause_game = false popup_mode = false popup_mode_background_overlay = true } custom_gui { - identifier = pause-calculator + identifier = bte_na title = allow_esc = true transparent_world_background = true @@ -37,19 +38,19 @@ custom_gui { } custom_gui { - identifier = build-teams-north-america - title = Select region + identifier = bte_ausie + title = allow_esc = true - transparent_world_background = true + transparent_world_background = false transparent_world_background_overlay = true - pause_game = true + pause_game = false popup_mode = false popup_mode_background_overlay = true } custom_gui { - identifier = build-teams-asia - title = Select region + identifier = bte_sa + title = allow_esc = true transparent_world_background = true transparent_world_background_overlay = true @@ -59,19 +60,19 @@ custom_gui { } custom_gui { - identifier = build-teams-australia - title = Select region + identifier = bte_layout + title = allow_esc = true - transparent_world_background = true + transparent_world_background = false transparent_world_background_overlay = true - pause_game = true + pause_game = false popup_mode = false popup_mode_background_overlay = true } custom_gui { - identifier = build-teams-south-america - title = Select region + identifier = bte_africa + title = allow_esc = true transparent_world_background = true transparent_world_background_overlay = true @@ -81,12 +82,12 @@ custom_gui { } custom_gui { - identifier = build-teams-start - title = Select continent + identifier = bte_asia + title = allow_esc = true - transparent_world_background = true + transparent_world_background = false transparent_world_background_overlay = true - pause_game = true + pause_game = false popup_mode = false popup_mode_background_overlay = true } diff --git a/config/fancymenu/customizablemenus.txt b/config/fancymenu/customizablemenus.txt new file mode 100644 index 0000000..7c2696d --- /dev/null +++ b/config/fancymenu/customizablemenus.txt @@ -0,0 +1,53 @@ +type = customizablemenus + +de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { +} + +net.minecraft.client.gui.screens.PauseScreen { +} + +com.terraformersmc.modmenu.gui.ModsScreen { +} + +com.viaversion.viafabricplus.screen.impl.ProtocolSelectionScreen { +} + +net.minecraft.client.gui.screens.multiplayer.JoinMultiplayerScreen { +} + +net.minecraft.client.gui.screens.TitleScreen { +} + +net.minecraft.client.gui.screens.LevelLoadingScreen { +} + +net.minecraft.client.gui.screens.worldselection.SelectWorldScreen { +} + +net.minecraft.client.gui.screens.worldselection.CreateWorldScreen { +} + +net.minecraft.client.gui.screens.multiplayer.SafetyScreen { +} + +net.minecraft.client.gui.screens.GenericMessageScreen { +} + +net.minecraft.client.gui.screens.ProgressScreen { +} + +net.minecraft.client.gui.screens.ConnectScreen { +} + +net.minecraft.client.gui.screens.DisconnectedScreen { +} + +net.minecraft.client.gui.screens.options.OptionsScreen { +} + +com.moulberry.flashback.screen.SaveReplayScreen { +} + +net.minecraft.client.gui.screens.ConfirmScreen { +} + diff --git a/config/fancymenu/customization/accessibility_onboarding_screen_layout.txt b/config/fancymenu/customization/accessibility_onboarding_screen_layout.txt new file mode 100644 index 0000000..6080a77 --- /dev/null +++ b/config/fancymenu/customization/accessibility_onboarding_screen_layout.txt @@ -0,0 +1,740 @@ +type = fancymenu_layout + +layout-meta { + identifier = accessibility_onboarding_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781708792553 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:ca938214-7cd7-4557-b369-4215ad44a5dd-1781708792619] = [groups:][instances:] +} + +menu_background { + instance_identifier = fcc78209-5fd7-4e1c-9c87-f7467014dd7e-1781708780325 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 95bfcb1b-73bb-4534-898a-07243e622556-1781708780325 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 0d6e3176-ee4a-4135-8961-4dad3a319af9-1781708780325 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 2fa55635-b1c1-451f-bd20-f8fecc4e04a8-1781708780326 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = b0e4baeb-4780-4262-a68c-6937d372f55e-1781708780326 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 2d1bc77c-f625-4b03-a84b-567f3bc32d7a-1781708780326 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = b00d94c0-d640-4223-b764-a09f851e215c-1781708780326 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = dfec6b51-f991-4257-9b75-88cf5f71da21-1781708780326 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = e2ee7f9b-27d6-47eb-832a-ba1241ee2679-1781708780326 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 9a9a3e3f-339c-4279-8b24-7ad30a412269-1781708780326 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 5fce759c-16d7-4d91-a76e-c1e6a0155c51-1781708780326 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 8f8fb5c6-0a30-4e85-b576-b46a5167278b-1781708780326 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 2997665f-059f-4015-adf2-ad02f8f40c35-1781708780327 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = bb706b1f-b4bb-4055-939c-8eec8b9c87ed-1781708780327 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 7df6bab7-0dcf-4798-8ee5-452c510351f3-1781708780327 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 8dc8f03e-6007-46fe-819c-aaa7cdb1fbd8-1781708780327 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 063b87a9-99d8-4263-942f-718774c1d6af-1781708780327 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = d0f3ca36-eef1-4c42-ba64-1690d17e62bb-1781708780327 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = dd77936d-9513-48a0-a421-119c1753b5ba-1781708780327 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = 0996338b-8178-431b-8186-aef1378849b9-1781708780328 + [executable_block:0996338b-8178-431b-8186-aef1378849b9-1781708780328][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b236bd44-7e6d-4203-823c-5d0510ef5743-1781708780328 + [loading_requirement_container_meta:b236bd44-7e6d-4203-823c-5d0510ef5743-1781708780328] = [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 + element_type = vanilla_button + instance_identifier = 313128 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 293 + y = 128 + width = 374 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = 2f81f250-986f-4277-8915-45a0638867f8-1781708780328 + [loading_requirement_container_meta:2f81f250-986f-4277-8915-45a0638867f8-1781708780328] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = c0602727-b5b7-4c94-8da5-83d60167e7c9-1781708780329 + [executable_block:c0602727-b5b7-4c94-8da5-83d60167e7c9-1781708780329][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 2f638f4c-f0c7-4387-b093-ad9605027f29-1781708780329 + [loading_requirement_container_meta:2f638f4c-f0c7-4387-b093-ad9605027f29-1781708780329] = [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 + element_type = vanilla_button + instance_identifier = 425974 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 405 + y = 521 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = bd22f26a-a733-4fcb-b54b-11b6a6bbf2d0-1781708780329 + [loading_requirement_container_meta:bd22f26a-a733-4fcb-b54b-11b6a6bbf2d0-1781708780329] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = fa40db7f-0f84-443f-9335-81f223e4e92a-1781708780328 + [executable_block:fa40db7f-0f84-443f-9335-81f223e4e92a-1781708780328][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 341ba870-5e1e-4a2a-9b61-f356401a3f5f-1781708780328 + [loading_requirement_container_meta:341ba870-5e1e-4a2a-9b61-f356401a3f5f-1781708780328] = [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 + element_type = vanilla_button + instance_identifier = 425203 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 405 + y = 203 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 318a361f-b9cf-4c1e-89c4-80b235827b49-1781708780328 + [loading_requirement_container_meta:318a361f-b9cf-4c1e-89c4-80b235827b49-1781708780328] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = d38d93e4-6289-43a6-aba5-663b375fd5e0-1781708780328 + [executable_block:d38d93e4-6289-43a6-aba5-663b375fd5e0-1781708780328][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5abdb9d2-1361-4139-abd3-cc54e218f1cb-1781708780328 + [loading_requirement_container_meta:5abdb9d2-1361-4139-abd3-cc54e218f1cb-1781708780328] = [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 + element_type = vanilla_button + instance_identifier = 425175 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 405 + y = 175 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = cada5917-a62d-4a8d-a435-8b1a957299a7-1781708780328 + [loading_requirement_container_meta:cada5917-a62d-4a8d-a435-8b1a957299a7-1781708780328] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 2f102b41-8ba4-4b16-a489-f9f95024f871-1781708780329 + [executable_block:2f102b41-8ba4-4b16-a489-f9f95024f871-1781708780329][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 980d3ec7-5864-4589-83ee-625c557e02f3-1781708780329 + [loading_requirement_container_meta:980d3ec7-5864-4589-83ee-625c557e02f3-1781708780329] = [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 + element_type = vanilla_button + instance_identifier = 425231 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 405 + y = 231 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 349f0375-17d0-4f5f-8fc5-135fe01e3cae-1781708780328 + [loading_requirement_container_meta:349f0375-17d0-4f5f-8fc5-135fe01e3cae-1781708780328] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/bte_africa_layout.txt b/config/fancymenu/customization/bte_africa_layout.txt new file mode 100644 index 0000000..72fc2a6 --- /dev/null +++ b/config/fancymenu/customization/bte_africa_layout.txt @@ -0,0 +1,1075 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_africa + render_custom_elements_behind_vanilla = false + last_edited_time = 1785263979244 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:24dd5942-0417-4e58-8ddf-39609cc5decf-1785263941289] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { +} + +layer_group { + group_name = southasia + collapsed = true + element_ids = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353;eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353; +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + x = -188 + y = 33 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map-africa.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-africa.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:7479fac9-643a-404f-8235-042e2c7b0456-1781580013114][action_type:set_variable] = current_server:bte-africa + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;7479fac9-643a-404f-8235-042e2c7b0456-1781580013114;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_africa/africarebuilt.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_africa/africarebuilt.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-africa.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-africa.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-africa.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 175 + y = 82 + width = 85 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-africa.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + x = 56 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + element_type = image + instance_identifier = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = 4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908 + [loading_requirement_container_meta:4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/region_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = f1fa5715-a4fb-4f62-ab3c-6286fceb495c-1785263955115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 220b9b5d-541d-4b30-9cbc-fce2d03db533-1785263955115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = bc3f13ac-7517-4dd0-adf5-6b9c65ae00e2-1785263955115 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = bc3f13ac-7517-4dd0-adf5-6b9c65ae00e2-1785263955115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 7bf447f3-2929-452d-a1ad-94c40eb1b2a1-1785263955117 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = f1fa5715-a4fb-4f62-ab3c-6286fceb495c-1785263955115 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = a2878116-0eaa-407c-8ad8-f10779b6422b-1785263955118 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = f1fa5715-a4fb-4f62-ab3c-6286fceb495c-1785263955115 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/config/fancymenu/customization/bte_asia_layout.txt b/config/fancymenu/customization/bte_asia_layout.txt new file mode 100644 index 0000000..e49991a --- /dev/null +++ b/config/fancymenu/customization/bte_asia_layout.txt @@ -0,0 +1,2661 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_asia + render_custom_elements_behind_vanilla = false + last_edited_time = 1785267393243 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:93c96bf0-b0fa-4c33-904f-fe235fa22ef3-1785267278525] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { +} + +layer_group { + group_name = teamcis + element_ids = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986;f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987; +} + +layer_group { + group_name = southasia + collapsed = true + element_ids = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353;eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353; +} + +layer_group { + group_name = middleeast + collapsed = true + element_ids = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493;825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494; +} + +layer_group { + group_name = china + collapsed = true + element_ids = 6790ecce-796e-40a1-86e0-802a07d7da3c-1781288606323;b83128d5-17a2-4f31-af9e-82482fcc931b-1781288606325; +} + +layer_group { + group_name = korea + collapsed = true + element_ids = 938694b3-f21b-4446-b40f-6d253044e26f-1781282186636;da523c30-37f3-4351-ae7c-c5db5b6d61e3-1781282186638; +} + +layer_group { + group_name = hk-mu + collapsed = true + element_ids = eb420181-b1a2-419e-8af8-beedcf92bdde-1781283549437;7424d09b-d81d-4339-b759-5f202c62b97d-1781283549438; +} + +layer_group { + group_name = taiwan + collapsed = true + element_ids = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701;02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704; +} + +layer_group { + group_name = asean + collapsed = true + element_ids = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775;74f30601-1d92-41aa-a7ce-ac4f7364cb53-1781228178286; +} + +layer_group { + group_name = japan + collapsed = true + element_ids = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455;9936ba6c-6698-4923-9901-79fc9fa4e611-1781281925457; +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + sticky_anchor = false + anchor_point = element + anchor_point_element = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + x = -188 + y = 33 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map-asia.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-teamcis.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:ab607c2e-2b48-407d-89af-b9bce01ddcda-1781551120364][action_type:set_variable] = current_server:bte-teamcis + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;ab607c2e-2b48-407d-89af-b9bce01ddcda-1781551120364;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/teamcis.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/teamcis.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-teamcis.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-teamcis.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-teamcis.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 160 + y = 56 + width = 57 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-teamcis.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + x = 28 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-southasia.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:7036c1ba-c705-4b1a-93d9-f3d4341fd61c-1781551025327][action_type:set_variable] = current_server:bte-southasia + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;7036c1ba-c705-4b1a-93d9-f3d4341fd61c-1781551025327;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/southasia.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/southasia.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-southasia.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-southasia.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-southasia.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 120 + y = 136 + width = 67 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-southasia.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + x = 38 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-middleeast.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:8bda7e5d-dc01-476d-accc-98989478b714-1781551074602][action_type:set_variable] = current_server:bte-middleeast + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;8bda7e5d-dc01-476d-accc-98989478b714-1781551074602;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/middleeast.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/middleeast.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-middleeast.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-middleeast.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-middleeast.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 86 + y = 110 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-middleeast.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + x = 45 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-china.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1329aafe-74c4-4c49-bdaa-c5ffce6a86bc-1781551052927][action_type:set_variable] = current_server:bte-china + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;1329aafe-74c4-4c49-bdaa-c5ffce6a86bc-1781551052927;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/china.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/china.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-china.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-china.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-china.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 6790ecce-796e-40a1-86e0-802a07d7da3c-1781288606323 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 178 + y = 110 + width = 43 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-china.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = b83128d5-17a2-4f31-af9e-82482fcc931b-1781288606325 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 6790ecce-796e-40a1-86e0-802a07d7da3c-1781288606323 + x = 14 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-korea.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:a901e616-1a4a-4471-b81d-66437415eb0e-1781551099831][action_type:set_variable] = current_server:bte-korea + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;a901e616-1a4a-4471-b81d-66437415eb0e-1781551099831;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/korea.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/korea.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-korea.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-korea.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-korea.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 938694b3-f21b-4446-b40f-6d253044e26f-1781282186636 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 229 + y = 96 + width = 43 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-korea.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = da523c30-37f3-4351-ae7c-c5db5b6d61e3-1781282186638 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 938694b3-f21b-4446-b40f-6d253044e26f-1781282186636 + x = 14 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-hkmu.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:ce41b7e1-3094-43ea-8aef-1dc95257f63d-1781550903906][action_type:set_variable] = current_server:bte-hkmu + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;ce41b7e1-3094-43ea-8aef-1dc95257f63d-1781550903906;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/hkmu.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/hkmu.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-hkmu.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-hkmu.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-hkmu.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = eb420181-b1a2-419e-8af8-beedcf92bdde-1781283549437 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 202 + y = 141 + width = 43 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-hkmu.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 7424d09b-d81d-4339-b759-5f202c62b97d-1781283549438 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = eb420181-b1a2-419e-8af8-beedcf92bdde-1781283549437 + x = 14 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-taiwan.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:0c0c5d27-fc56-4b79-b556-9d334333add9-1781550930074][action_type:set_variable] = current_server:bte-taiwan + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;0c0c5d27-fc56-4b79-b556-9d334333add9-1781550930074;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/taiwan.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/taiwan.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-taiwan.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-taiwan.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-taiwan.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 251 + y = 133 + width = 49 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-taiwan.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + x = 20 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-asean.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:b4ff01a9-44d8-4c09-9a73-db33632cf681-1781541054329][action_type:set_variable] = current_server:bte-asean + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;b4ff01a9-44d8-4c09-9a73-db33632cf681-1781541054329;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/asean.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/asean.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-asean.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-asean.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-asean.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 227 + y = 171 + width = 43 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-asean.ip"}}"%n% }%n%} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 74f30601-1d92-41aa-a7ce-ac4f7364cb53-1781228178286 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775 + x = 14 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-japan.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:de2195aa-c5a9-4cbe-a27a-e632f6afed6e-1781550954798][action_type:set_variable] = current_server:bte-japan + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;de2195aa-c5a9-4cbe-a27a-e632f6afed6e-1781550954798;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/japan.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/japan.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-japan.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-japan.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-japan.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 275 + y = 106 + width = 43 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-japan.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 9936ba6c-6698-4923-9901-79fc9fa4e611-1781281925457 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455 + x = 14 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + element_type = image + instance_identifier = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = 4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908 + [loading_requirement_container_meta:4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/region_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = cc6a78ac-b4e2-4e71-b5e4-359364028310-1785263597683 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 9385bc33-4751-4201-b66c-65a2ef8a0487-1785263597684 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 9385bc33-4751-4201-b66c-65a2ef8a0487-1785263597684 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 11c61e4e-f784-4c46-a24d-350053891d0f-1785263597684 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 7de9867a-c3a3-46c5-a426-401341dda6b3-1785263597685 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-israel.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:7036c1ba-c705-4b1a-93d9-f3d4341fd61c-1781551025327][action_type:set_variable] = current_server:bte-israel + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;7036c1ba-c705-4b1a-93d9-f3d4341fd61c-1781551025327;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_asia/israel.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_asia/israel.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-israel.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-israel.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-israel.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = abaab63b-35d6-4c56-bf6e-dcfbf12b0d5c-1785266644079 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 72 + y = 83 + width = 47 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-israel.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 516552ff-5ea5-4b5b-8370-0f68d6f94036-1785266644082 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + sticky_anchor = true + anchor_point = element + anchor_point_element = abaab63b-35d6-4c56-bf6e-dcfbf12b0d5c-1785266644079 + x = 18 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + diff --git a/config/fancymenu/customization/bte_europe_layout.txt b/config/fancymenu/customization/bte_europe_layout.txt new file mode 100644 index 0000000..0844cf7 --- /dev/null +++ b/config/fancymenu/customization/bte_europe_layout.txt @@ -0,0 +1,3518 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_eu + render_custom_elements_behind_vanilla = false + last_edited_time = 1785267407596 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:5400c214-ad71-477a-8ff9-140da39018a6-1785267278740] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { +} + +layer_group { + group_name = norbal + element_ids = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986;f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987; +} + +layer_group { + group_name = balkans + collapsed = true + element_ids = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353;eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353; +} + +layer_group { + group_name = iberia + collapsed = true + element_ids = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493;825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494; +} + +layer_group { + group_name = hungary + collapsed = true + element_ids = 6790ecce-796e-40a1-86e0-802a07d7da3c-1781288606323;b83128d5-17a2-4f31-af9e-82482fcc931b-1781288606325; +} + +layer_group { + group_name = ukraine + collapsed = true + element_ids = 938694b3-f21b-4446-b40f-6d253044e26f-1781282186636;da523c30-37f3-4351-ae7c-c5db5b6d61e3-1781282186638; +} + +layer_group { + group_name = italia + collapsed = true + element_ids = eb420181-b1a2-419e-8af8-beedcf92bdde-1781283549437;7424d09b-d81d-4339-b759-5f202c62b97d-1781283549438; +} + +layer_group { + group_name = alps-bte + collapsed = true + element_ids = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701;02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704; +} + +layer_group { + group_name = turkey + collapsed = true + element_ids = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775;74f30601-1d92-41aa-a7ce-ac4f7364cb53-1781228178286; +} + +layer_group { + element_ids = 0c9ecc43-980a-450d-9f89-022e16c23672-1781463096430;0b3825df-57b1-469e-97b4-99f7f3c5ae03-1781463096433; +} + +layer_group { + element_ids = c10492ec-b194-4c82-872b-3a7d8e45cfee-1781463235989;1e987d79-8839-413d-a6c0-5ecff973f837-1781463235991; +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = eadf5c20-59b9-4abe-a6a8-1807b3cba3c6-1781373511076 + x = -188 + y = 24 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map-europe.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-norbal.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:cc452806-ac28-4c48-a234-f883ae9ce2ad-1781552098633][action_type:set_variable] = current_server:bte-norbal + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;cc452806-ac28-4c48-a234-f883ae9ce2ad-1781552098633;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/norbal.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/norbal.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-norbal.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-norbal.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-norbal.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 186 + y = 35 + width = 83 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-norbal.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + x = 54 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-balkans.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:5af3a5ed-4e1d-4b99-9905-21f14f4d3dfc-1781551787245][action_type:set_variable] = current_server:bte-balkans + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;5af3a5ed-4e1d-4b99-9905-21f14f4d3dfc-1781551787245;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/balkans.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/balkans.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-balkans.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-balkans.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-balkans.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 205 + y = 176 + width = 55 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-balkans.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + x = 26 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-iberia.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:e29a993b-03ee-46dc-a360-02eb72fe63a8-1781551808046][action_type:set_variable] = current_server:bte-iberia + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;e29a993b-03ee-46dc-a360-02eb72fe63a8-1781551808046;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/iberia.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/iberia.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-iberia.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-iberia.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-iberia.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 103 + y = 176 + width = 45 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-iberia.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + x = 16 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-hungary.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:142f7745-698c-4b28-8604-d244b485ff01-1781551826662][action_type:set_variable] = current_server:bte-hungary + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;142f7745-698c-4b28-8604-d244b485ff01-1781551826662;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/hungary.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/hungary.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-hungary.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-hungary.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-hungary.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 6790ecce-796e-40a1-86e0-802a07d7da3c-1781288606323 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 214 + y = 151 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-hungary.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = b83128d5-17a2-4f31-af9e-82482fcc931b-1781288606325 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 6790ecce-796e-40a1-86e0-802a07d7da3c-1781288606323 + x = 27 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-ukraine.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:9b340755-65bb-4e27-959a-7f17fb9c0fbf-1781551871805][action_type:set_variable] = current_server:bte-ukraine + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;9b340755-65bb-4e27-959a-7f17fb9c0fbf-1781551871805;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/ukraine.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/ukraine.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-ukraine.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-ukraine.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-ukraine.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 938694b3-f21b-4446-b40f-6d253044e26f-1781282186636 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 247 + y = 125 + width = 52 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-ukraine.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = da523c30-37f3-4351-ae7c-c5db5b6d61e3-1781282186638 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 938694b3-f21b-4446-b40f-6d253044e26f-1781282186636 + x = 23 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-italia.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:8ec74087-463b-413a-897a-99d8e58a34ea-1781551846927][action_type:set_variable] = current_server:bte-italia + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;8ec74087-463b-413a-897a-99d8e58a34ea-1781551846927;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/italia.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/italia.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-italia.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-italia.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-italia.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = eb420181-b1a2-419e-8af8-beedcf92bdde-1781283549437 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 169 + y = 151 + width = 43 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-italia.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 7424d09b-d81d-4339-b759-5f202c62b97d-1781283549438 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = eb420181-b1a2-419e-8af8-beedcf92bdde-1781283549437 + x = 14 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-alps.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:e614b30d-bea8-4996-acc1-ce790c6d7e51-1781551896233][action_type:set_variable] = current_server:bte-alps + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;e614b30d-bea8-4996-acc1-ce790c6d7e51-1781551896233;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/alps.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/alps.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-alps.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-alps.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-alps.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 189 + y = 125 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-alps.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + x = 27 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-turkey.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:fafb022a-26df-4f34-9114-7e1d66930bc3-1781551762155][action_type:set_variable] = current_server:bte-turkey + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;fafb022a-26df-4f34-9114-7e1d66930bc3-1781551762155;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/turkey.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/turkey.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-turkey.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-turkey.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-turkey.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 268 + y = 176 + width = 49 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-turkey.ip"}}"%n% }%n%} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 74f30601-1d92-41aa-a7ce-ac4f7364cb53-1781228178286 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775 + x = 20 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-france.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:dded8513-bdbc-445f-9a8c-0d810b82b8bd-1781551915154][action_type:set_variable] = current_server:bte-france + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;dded8513-bdbc-445f-9a8c-0d810b82b8bd-1781551915154;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/france.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/france.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-france.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-france.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-france.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0c9ecc43-980a-450d-9f89-022e16c23672-1781463096430 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 137 + y = 125 + width = 50 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-france.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 0b3825df-57b1-469e-97b4-99f7f3c5ae03-1781463096433 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0c9ecc43-980a-450d-9f89-022e16c23672-1781463096430 + x = 21 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-uk.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:6af7fa59-96f2-4118-a11d-0f8c17b41abf-1781552078729][action_type:set_variable] = current_server:bte-uk + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;6af7fa59-96f2-4118-a11d-0f8c17b41abf-1781552078729;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/uk.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/uk.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-uk.name"%n% }%n%} &r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-uk.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-uk.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = c10492ec-b194-4c82-872b-3a7d8e45cfee-1781463235989 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 63 + y = 75 + width = 90 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-uk.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 1e987d79-8839-413d-a6c0-5ecff973f837-1781463235991 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = c10492ec-b194-4c82-872b-3a7d8e45cfee-1781463235989 + x = 61 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + element_type = image + instance_identifier = eadf5c20-59b9-4abe-a6a8-1807b3cba3c6-1781373511076 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = d00ffacc-d43e-4c56-ba74-cb05c27a9cbf-1781373511076 + [loading_requirement_container_meta:d00ffacc-d43e-4c56-ba74-cb05c27a9cbf-1781373511076] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/region_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-ireland.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:3faad5cf-ad03-4234-8775-23a4317275ce-1781551960254][action_type:set_variable] = current_server:bte-ireland + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;3faad5cf-ad03-4234-8775-23a4317275ce-1781551960254;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/ireland.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/ireland.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-ireland.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-ireland.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-ireland.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 7328622d-8868-488a-8e7f-0321101947ee-1781463700555 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 74 + y = 102 + width = 55 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-ireland.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 7ee0559c-3449-4c89-b819-66fae22d5d71-1781463700557 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 7328622d-8868-488a-8e7f-0321101947ee-1781463700555 + x = 26 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-german.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:7256b015-7d5f-4765-a4c0-1d8f052b6841-1781552012734][action_type:set_variable] = current_server:bte-german + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;7256b015-7d5f-4765-a4c0-1d8f052b6841-1781552012734;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/germany.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/germany.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-german.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-german.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-german.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 12541cba-db6d-44f5-904b-9cd4252001d4-1781463946865 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 189 + y = 100 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-german.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 484c2646-bccd-4372-951b-61d8021ced93-1781463946867 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 12541cba-db6d-44f5-904b-9cd4252001d4-1781463946865 + x = 27 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-benelux.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:a66aa3b4-1625-4dc5-bbf8-f79f6bffd01d-1781552037064][action_type:set_variable] = current_server:bte-benelux + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;a66aa3b4-1625-4dc5-bbf8-f79f6bffd01d-1781552037064;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/benelux.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/benelux.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-benelux.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-benelux.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-benelux.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 345cd1f4-16fe-46bb-8f62-51417fef15ec-1781464058417 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 131 + y = 100 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-benelux.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 86157646-c98f-4f50-9b84-a5df2359996d-1781464058418 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 345cd1f4-16fe-46bb-8f62-51417fef15ec-1781464058417 + x = 27 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-czech.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:5c443f12-ab72-4d08-abbe-e62f63aac6ec-1781552059141][action_type:set_variable] = current_server:bte-czech + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;5c443f12-ab72-4d08-abbe-e62f63aac6ec-1781552059141;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/czech.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/czech.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-czech.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-czech.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-czech.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = d7727f54-bc4b-4a3f-9ed1-a19e0380f0d5-1781464273114 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 183 + y = 75 + width = 90 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-czech.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 4ebc6a16-a8c1-44bb-a795-6769192f9c9a-1781464273116 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = d7727f54-bc4b-4a3f-9ed1-a19e0380f0d5-1781464273114 + x = 61 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-poland.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:88fe9283-c61d-4179-a8b3-88d62560bbe7-1781551990692][action_type:set_variable] = current_server:bte-poland + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;88fe9283-c61d-4179-a8b3-88d62560bbe7-1781551990692;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_europe/poland.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_europe/poland.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-poland.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-poland.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-poland.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 2508e24f-bacf-41a4-bdcf-730f322459aa-1781464466840 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 247 + y = 100 + width = 52 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-poland.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 3a50e68c-adb5-438d-aa38-007f49a4fb7f-1781464466842 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 2508e24f-bacf-41a4-bdcf-730f322459aa-1781464466840 + x = 23 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = a121a7c0-6458-459b-a674-d1db9e94d93a-1785263727408 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = f0ea51d7-c0c7-43bb-9f71-1c445c1a1253-1785263727410 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 8af42572-1c30-4286-a1d7-78c6a26e9c38-1785263727411 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 8af42572-1c30-4286-a1d7-78c6a26e9c38-1785263727411 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 9326c677-cd68-45bc-b4f9-20beb6a23b67-1785263727411 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = a121a7c0-6458-459b-a674-d1db9e94d93a-1785263727408 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = a98c65b5-323d-4686-bc47-d694fe8d7691-1785263727412 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = a121a7c0-6458-459b-a674-d1db9e94d93a-1785263727408 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/config/fancymenu/customization/bte_layout.txt b/config/fancymenu/customization/bte_layout.txt new file mode 100644 index 0000000..3c01c2a --- /dev/null +++ b/config/fancymenu/customization/bte_layout.txt @@ -0,0 +1,1396 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_layout + render_custom_elements_behind_vanilla = false + last_edited_time = 1785375544337 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:a6aa3111-497e-4b88-953e-db77a93e1743-1785375526356] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:c514b1bc-5e16-42e8-8137-72ed58d52323-1781579176866][action_type:opengui] = title_screen + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:c514b1bc-5e16-42e8-8137-72ed58d52323-1781579176866;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = a2feda19-160b-4252-8f03-b1d777831494-1781346520841 + x = -188 + y = 33 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:5d3ccc8c-dd4b-48d1-bad2-50983fb30a6a-1781223757816][action_type:opengui] = bte_na + [executable_action_instance:993dd703-c43b-4754-b0bd-8b0041a6be3d-1785267517057][action_type:set_variable] = is_main_server:false + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:5d3ccc8c-dd4b-48d1-bad2-50983fb30a6a-1781223757816;993dd703-c43b-4754-b0bd-8b0041a6be3d-1785267517057;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_northamerica.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_northamerica.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = d4976a42-47e5-46fa-a22d-3bb51c98ede0-1781220185186 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 38 + y = 54 + width = 85 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:97daa0de-7596-477f-ba3f-ca9e5836ed37-1781223635363][action_type:opengui] = bte_asia + [executable_action_instance:762e5009-d09c-4056-9cb9-2b7c4fefed0f-1785267885091][action_type:set_variable] = is_main_server:false + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:97daa0de-7596-477f-ba3f-ca9e5836ed37-1781223635363;762e5009-d09c-4056-9cb9-2b7c4fefed0f-1785267885091;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_asia.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_asia.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 65fdf3f9-fc90-402d-bcdd-119e24a5ef3a-1781220313737 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 312 + y = 54 + width = 36 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:e040531c-9179-4edf-848b-f0aa5145f0a1-1781223665094][action_type:opengui] = bte_eu + [executable_action_instance:1c1a30e4-cb07-4cad-9e26-4710b566415b-1785267870408][action_type:set_variable] = is_main_server:false + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:e040531c-9179-4edf-848b-f0aa5145f0a1-1781223665094;1c1a30e4-cb07-4cad-9e26-4710b566415b-1785267870408;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_eu.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_eu.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 655ca7ed-aa20-48b8-b218-c0ec967b4799-1781220392006 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 193 + y = 54 + width = 50 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:81aa1206-26c6-428c-80c7-b21234bf3c38-1781223735015][action_type:opengui] = bte_sa + [executable_action_instance:30ab19e3-3d09-483c-9fb1-5d295df9be0c-1785267928603][action_type:set_variable] = is_main_server:false + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:81aa1206-26c6-428c-80c7-b21234bf3c38-1781223735015;30ab19e3-3d09-483c-9fb1-5d295df9be0c-1785267928603;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_southamerica.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_southamerica.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0185760c-fd35-4a62-9055-a4eef2f6e0b7-1781220474204 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 87 + y = 156 + width = 85 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:d3b8de36-8661-48c4-af41-a2878e7f4328-1781223711063][action_type:opengui] = bte_africa + [executable_action_instance:bb81ecdb-3705-41aa-a36b-3972244cd07f-1785267913297][action_type:set_variable] = is_main_server:false + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:d3b8de36-8661-48c4-af41-a2878e7f4328-1781223711063;bb81ecdb-3705-41aa-a36b-3972244cd07f-1785267913297;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_afr.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_afr.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = a56137ed-e505-4e4d-880d-a6ad548b2c28-1781220550775 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 193 + y = 110 + width = 50 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:e60a8286-63e2-4cc5-878d-a079e94f4d5f-1781223690079][action_type:opengui] = bte_ausie + [executable_action_instance:509c58be-1ba0-47e1-b989-8bef32cf1593-1785267976053][action_type:set_variable] = is_main_server:false + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:e60a8286-63e2-4cc5-878d-a079e94f4d5f-1781223690079;509c58be-1ba0-47e1-b989-8bef32cf1593-1785267976053;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_oceania.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_oceania.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 48f252b5-fbce-4733-a1a2-1fd0f3001415-1781220613111 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 334 + y = 156 + width = 64 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = a2feda19-160b-4252-8f03-b1d777831494-1781346520841 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = d82914f4-347e-437f-bac4-f0e74d570237-1781346520841 + [loading_requirement_container_meta:d82914f4-347e-437f-bac4-f0e74d570237-1781346520841] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/continent_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 88203e8d-7b34-460f-b590-851ea7532f7a-1781671375921 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = f2028819-06b5-45fc-8612-d12dac85eeac-1781671375922 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = f2028819-06b5-45fc-8612-d12dac85eeac-1781671375922 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 64841cc1-13ce-442b-83bb-4317d9083905-1781707212462 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 09f9f439-e6c4-4b59-b0ff-a26c9e041b98-1781707212466 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/config/fancymenu/customization/bte_northamerica_layout.txt b/config/fancymenu/customization/bte_northamerica_layout.txt new file mode 100644 index 0000000..cb99be1 --- /dev/null +++ b/config/fancymenu/customization/bte_northamerica_layout.txt @@ -0,0 +1,1963 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_na + render_custom_elements_behind_vanilla = false + last_edited_time = 1785263835971 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:4c13ab8c-b3ab-4dd2-98a6-16d03fb2266a-1785263799142] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { +} + +layer_group { + group_name = teamcis + element_ids = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986;f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987; +} + +layer_group { + group_name = southasia + collapsed = true + element_ids = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353;eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353; +} + +layer_group { + group_name = middleeast + collapsed = true + element_ids = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493;825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494; +} + +layer_group { + group_name = taiwan + collapsed = true + element_ids = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701;02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704; +} + +layer_group { + group_name = japan + collapsed = true + element_ids = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455;9936ba6c-6698-4923-9901-79fc9fa4e611-1781281925457; +} + +layer_group { + group_name = hk-mu + collapsed = true +} + +layer_group { + group_name = china + collapsed = true +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + x = -188 + y = 33 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map-north-america.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-canada.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:448a87fc-bd6c-4526-be98-87b791f29886-1781579643990][action_type:set_variable] = current_server:bte-canada + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;448a87fc-bd6c-4526-be98-87b791f29886-1781579643990;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_na/canada.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_na/canada.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-canada.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-canada.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-canada.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 161 + y = 76 + width = 57 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-canada.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + x = 28 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-northamerica.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80a19a6f-5b26-4817-9a1b-a7b04a5730be-1781579544191][action_type:set_variable] = current_server:bte-northamerica + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;80a19a6f-5b26-4817-9a1b-a7b04a5730be-1781579544191;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_na/nla.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_na/nla.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-northamerica.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-northamerica.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-northamerica.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 191 + y = 187 + width = 114 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-northamerica.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + x = 85 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-mexico.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:2cf9d9fa-1137-4850-88a0-9bf01f9d8ffd-1781579568579][action_type:set_variable] = current_server:bte-mexico + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;2cf9d9fa-1137-4850-88a0-9bf01f9d8ffd-1781579568579;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_na/mexico.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_na/mexico.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-mexico.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-mexico.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-mexico.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 109 + y = 161 + width = 133 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-mexico.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + x = 104 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-jersey.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:e0911887-43da-4176-84cb-ea56ab7a0413-1781579590855][action_type:set_variable] = current_server:bte-jersey + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;e0911887-43da-4176-84cb-ea56ab7a0413-1781579590855;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_na/newjersey.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_na/newjersey.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-jersey.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-jersey.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-jersey.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 245 + y = 154 + width = 71 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-jersey.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + x = 42 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-nyc.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:8d0458d5-5eba-4b74-b3c9-33dab61bd44d-1781579628024][action_type:set_variable] = current_server:bte-nyc + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;8d0458d5-5eba-4b74-b3c9-33dab61bd44d-1781579628024;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_na/nyc.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_na/nyc.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-nyc.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-nyc.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-nyc.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 245 + y = 128 + width = 33 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-nyc.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 9936ba6c-6698-4923-9901-79fc9fa4e611-1781281925457 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455 + x = 4 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + element_type = image + instance_identifier = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = 4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908 + [loading_requirement_container_meta:4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/region_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-usa.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:4b88f082-7760-4995-9076-a9173f57a82c-1781579611878][action_type:set_variable] = current_server:bte-usa + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;4b88f082-7760-4995-9076-a9173f57a82c-1781579611878;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_na/usa.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_na/usa.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-usa.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-usa.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-usa.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = ee219a69-fded-4a0c-95d1-701b462ee55b-1781467658592 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 156 + y = 136 + width = 86 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-usa.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 07273007-83e3-4026-a52b-e32109666968-1781467658593 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = ee219a69-fded-4a0c-95d1-701b462ee55b-1781467658592 + x = 57 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = dada3256-47c4-47bd-9f19-e236cccd73db-1785263812796 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 58705065-38f5-4657-b866-a7acc5e7337a-1785263812796 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 86b537b6-9621-488e-9a8f-54c1036a4951-1785263812796 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 86b537b6-9621-488e-9a8f-54c1036a4951-1785263812796 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0a20dcba-2041-4729-93c1-648e44d1bc92-1785263812797 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = dada3256-47c4-47bd-9f19-e236cccd73db-1785263812796 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 8b318ef3-568e-4adb-9692-faa4b1f685e1-1785263812797 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = dada3256-47c4-47bd-9f19-e236cccd73db-1785263812796 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/config/fancymenu/customization/bte_oceania_layout.txt b/config/fancymenu/customization/bte_oceania_layout.txt new file mode 100644 index 0000000..461e9ac --- /dev/null +++ b/config/fancymenu/customization/bte_oceania_layout.txt @@ -0,0 +1,1075 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_ausie + render_custom_elements_behind_vanilla = false + last_edited_time = 1785264030298 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:bbb37de5-f8bb-4bc5-8611-7edd5efd6403-1785263985695] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { +} + +layer_group { + group_name = southasia + collapsed = true + element_ids = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353;eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353; +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + x = -188 + y = 33 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map-australia.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-oceania.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:96c60715-98f5-4094-a785-0ccbed405c7c-1781580072517][action_type:set_variable] = current_server:bte-oceania + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;96c60715-98f5-4094-a785-0ccbed405c7c-1781580072517;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_australia/australia.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_australia/australia.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-oceania.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-oceania.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-oceania.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 175 + y = 82 + width = 85 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-oceania.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + x = 56 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + element_type = image + instance_identifier = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = 4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908 + [loading_requirement_container_meta:4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/region_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 33477c6b-8196-45d2-ac3f-20266271e846-1785264003490 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 5d647532-c3bc-4bc8-a63e-793b3d2bfc64-1785264003491 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 3dbba08d-ba43-4eee-80e3-84196f75443e-1785264003491 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 3dbba08d-ba43-4eee-80e3-84196f75443e-1785264003491 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 62983326-72c1-4a5d-a5c8-787e838c7b7b-1785264003491 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 33477c6b-8196-45d2-ac3f-20266271e846-1785264003490 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0fb54017-e33a-43e6-8c79-ffbd48ae1066-1785264003492 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = 33477c6b-8196-45d2-ac3f-20266271e846-1785264003490 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/config/fancymenu/customization/bte_southamerica_layout.txt b/config/fancymenu/customization/bte_southamerica_layout.txt new file mode 100644 index 0000000..3236711 --- /dev/null +++ b/config/fancymenu/customization/bte_southamerica_layout.txt @@ -0,0 +1,1947 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_sa + render_custom_elements_behind_vanilla = false + last_edited_time = 1785263920795 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:ccdf2085-575d-46a0-b5e7-a7b97f57c5f6-1785263844234] = [groups:][instances:] +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { +} + +layer_group { + group_name = teamcis + element_ids = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986;f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987; +} + +layer_group { + group_name = southasia + collapsed = true + element_ids = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353;eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353; +} + +layer_group { + group_name = middleeast + collapsed = true + element_ids = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493;825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494; +} + +layer_group { + group_name = taiwan + collapsed = true + element_ids = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701;02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704; +} + +element { + element_type = image + instance_identifier = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + x = -188 + y = 33 + width = 436 + height = 214 + stay_on_screen = true + element_loading_requirement_container_identifier = cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574 + [loading_requirement_container_meta:cbc994c6-1120-402f-8b5e-b5e0ee29c17e-1781220000574] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/maps/map-south-america.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-peru.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:257496f0-6d28-4012-abcc-0264e7fc3778-1781579916313][action_type:set_variable] = current_server:bte-peru + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;257496f0-6d28-4012-abcc-0264e7fc3778-1781579916313;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_sa/peru.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_sa/peru.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-peru.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-peru.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-peru.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 159 + y = 46 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-peru.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = f38ffd4d-6b9f-4d5a-b649-7ebc4a38a457-1781289256987 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = b6e611f1-326b-4e77-8337-f98c6268d875-1781289256986 + x = 6 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-paraguay.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:23960ebe-92ae-46c8-be51-6460cc6dc3d3-1781579876967][action_type:set_variable] = current_server:bte-paraguay + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;23960ebe-92ae-46c8-be51-6460cc6dc3d3-1781579876967;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_sa/paraguay.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_sa/paraguay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-paraguay.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-paraguay.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-paraguay.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 208 + y = 102 + width = 61 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-paraguay.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = eda58e1f-8dc7-408a-b1e8-c2fd732dd110-1781288813353 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 0207dd77-507c-482d-aeee-9e9fc3f957d6-1781288813353 + x = 32 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-chile.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:e326cc90-c7cf-47e4-92cb-bb6850698ef3-1781579860870][action_type:set_variable] = current_server:bte-chile + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;e326cc90-c7cf-47e4-92cb-bb6850698ef3-1781579860870;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_sa/chile.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_sa/chile.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-chile.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-chile.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-chile.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 163 + y = 102 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-chile.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 825c66a1-28cb-4411-86f9-4554a429fa5b-1781289036494 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 9338b07b-aee3-4365-b0a7-b85937803ba7-1781289036493 + x = 7 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-bolivia.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:b9a64bd3-72af-4fbd-b12e-1545b89d3f59-1781579896834][action_type:set_variable] = current_server:bte-bolivia + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;b9a64bd3-72af-4fbd-b12e-1545b89d3f59-1781579896834;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_sa/bolivia.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_sa/bolivia.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-bolivia.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-bolivia.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-bolivia.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 188 + y = 74 + width = 51 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-bolivia.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 02309d39-1b7e-4666-a4bd-dd52b6df5ef5-1781276996704 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = e52bc092-2022-4b58-97ef-1db64b43dc3d-1781276996701 + x = 22 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-argentina.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:aa3cda80-68f3-434f-8a17-5bf06354211a-1781579838803][action_type:set_variable] = current_server:bte-argentina + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;aa3cda80-68f3-434f-8a17-5bf06354211a-1781579838803;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_sa/argentina.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_sa/argentina.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-argentina.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-argentina.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-argentina.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 175 + y = 132 + width = 64 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-argentina.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 9936ba6c-6698-4923-9901-79fc9fa4e611-1781281925457 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = 2945e778-995b-4a72-97dd-897fa2db6d35-1781281925455 + x = 35 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + element_type = image + instance_identifier = c837e957-58ff-4ebe-81a4-b6676ec2890e-1781346736908 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -30 + y = -120 + width = 60 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = 4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908 + [loading_requirement_container_meta:4918cfc9-46f1-4ade-92ef-2ec597dd7812-1781346736908] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/labels/bte_layout/region_title.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-brasil.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:697bd273-5432-45e7-9183-9cb37e375c3e-1781579935173][action_type:set_variable] = current_server:bte-brasil + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:772613a8-a56c-49a0-9a25-417ef9b25a33-1781229347614;697bd273-5432-45e7-9183-9cb37e375c3e-1781579935173;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_sa/brasil.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_sa/brasil.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = &e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.bte-brasil.name"%n% }%n%}&r%n%Players: {%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-brasil.ip"}}"%n% }%n%}%n%Version: {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-brasil.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = ee219a69-fded-4a0c-95d1-701b462ee55b-1781467658592 + custom_element_layer_name = Button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0d5bb651-5cd5-449d-9785-f4196fdcf6d8-1781220000574 + x = 226 + y = 52 + width = 46 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-brasil.ip"}}"%n% }%n%} + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 07273007-83e3-4026-a52b-e32109666968-1781467658593 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = true + anchor_point = element + anchor_point_element = ee219a69-fded-4a0c-95d1-701b462ee55b-1781467658592 + x = 17 + y = 15 + width = 35 + height = 12 + stay_on_screen = false + element_loading_requirement_container_identifier = 4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965 + [loading_requirement_container_meta:4de10084-be30-4310-98b4-b998cf1b5d0f-1781219864965] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = cc630a56-42a3-4d8b-9cd8-55d7e718fe2c-1785263895608 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Change your Server compatible Minecarft Version in here, with ViaFabricPlus! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = d90671e1-5726-4f87-b285-1eb94be70103-1785263895609 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = cca723c0-c1d6-4575-ad68-583d6ae3eaae-1785263895609 + x = -77 + y = 0 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:71b06181-6562-4598-88a7-e3665b615e0c-1781227002451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/multi.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = On/Off Replay Mod toggle for Server is in here! Add another Server if its needed too! + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = cca723c0-c1d6-4575-ad68-583d6ae3eaae-1785263895609 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-admin.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758][action_type:set_variable] = is_main_server:true + [executable_action_instance:eee66106-c262-4678-af00-19dc3818f4fe-1781704823634][action_type:set_variable] = current_server:bte-admin + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:528ad652-d6c8-43a4-8c76-2c0d8a952b73-1781285778868;1e9e9e4a-d4a2-4350-949c-06557b3a0707-1781553715758;eee66106-c262-4678-af00-19dc3818f4fe-1781704823634;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/hub.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BuildTheEarth.net%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-admin.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = 405f5f8f-7d43-4553-a25f-8851f12e99c6-1785263895610 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = cc630a56-42a3-4d8b-9cd8-55d7e718fe2c-1785263895608 + x = 40 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.bte-event.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_action_instance:80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735][action_type:set_variable] = is_main_server:true + [executable_action_instance:29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131][action_type:set_variable] = current_server:bte-event + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:330e5b8f-eafb-4e21-90de-148b3bd78911-1781285816148;80373bf2-851d-416b-8a0c-5ae5f5283095-1781553746735;29cea7e2-febb-468a-8ee3-a50d28a5f0b0-1781704863131;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + iconhovered = [source:local]/config/fancymenu/assets/labels/bte_layout/event.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = BTE Event%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} | {%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} &e%n%{%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.bte-event.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = fc349f4f-0d55-484f-94d4-6af890ba0f68-1785263895611 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = cc630a56-42a3-4d8b-9cd8-55d7e718fe2c-1785263895608 + x = 97 + y = 0 + width = 56 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + diff --git a/config/fancymenu/customization/bte_special.txt b/config/fancymenu/customization/bte_special.txt new file mode 100644 index 0000000..5588ff7 --- /dev/null +++ b/config/fancymenu/customization/bte_special.txt @@ -0,0 +1,769 @@ +type = fancymenu_layout + +layout-meta { + identifier = bte_special + render_custom_elements_behind_vanilla = false + last_edited_time = 1781377941871 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:0775a953-6f4d-42e2-b084-7c7d0ed16367-1781377875263] = [groups:][instances:] +} + +customization { + action = setscale + scale = 4.0 +} + +menu_background { + instance_identifier = c986c907-a543-437e-8824-d7611dc0b721-1781214579663 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = e31d9596-665d-4091-a689-2ad489f0ce2d-1781214579663 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f4fd26f1-485d-45a8-9ffe-f97b876d699d-1781214579663 + background_type = image + show_background = true + image_path = [source:local]/config/fancymenu/assets/maps/maps-bg.png + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 50a1a244-dd60-417e-b573-632f2b554e4d-1781214579663 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 11efe97b-5140-4fd2-99b0-2d2fe93c8a5a-1781214579663 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a58c2565-86e1-4875-8d71-99edd8ebeee9-1781214579663 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ed1747d6-8f97-4bac-8069-569cfa2437ca-1781214579664 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 5ae256ce-ff80-45a6-b556-e2af0b6a8c3c-1781214579664 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7c0c2859-49b1-467f-a167-d136599776d0-1781214579664 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8abe4420-8f98-436f-9812-d89f0ec5d37c-1781214579664 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 70ea33d7-2b0b-4aa1-b9a3-d7ee224eb87b-1781214579664 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3a3cdfea-bf0a-46fc-9352-c544adf05461-1781214579664 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = dbd02e94-fa59-42ce-8d30-d46d5c6ef7d2-1781214579665 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 95a24a47-d4e4-470e-a076-eb82cdf5f604-1781214579665 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 104178bd-4e76-47f8-aa40-043fe9d86948-1781214579665 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 54b7e550-3461-44a3-93dd-d74fbf3eb3dd-1781214579665 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = d1be85a7-4351-4bd3-8775-bac1a60232a0-1781214579665 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0f5b9a26-4176-45d0-ac60-79dadce10191-1781214579665 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7b24908c-8ee0-4b61-a7df-def2b2b8c819-1781214579665 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016][action_type:back_to_last_screen] = + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:f2acebab-852b-4d32-8246-4bafc0daa2a3-1781215160016;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/textures/back.png + iconhovered = [source:local]/config/fancymenu/assets/textures/back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = c6bc396f-9746-440d-af8f-e47e9e3c09bc-1781215015723 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = mid-centered + x = -218 + y = -120 + width = 39 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723 + [executable_action_instance:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946][action_type:mimicbutton] = join_multiplayer_screen:8975 + [executable_block:e78dff5e-ffc9-4826-af4e-b47f61eeb1c2-1781215015723][type:generic] = [executables:ec2ba11d-dc7b-4855-a149-9d60857d92d1-1781268775946;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/textures/comp.png + iconhovered = [source:local]/config/fancymenu/assets/textures/comp.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723 + [loading_requirement_container_meta:0c5be351-f599-41e0-bad5-6a0ccdb28678-1781215015723] = [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 + element_type = custom_button + instance_identifier = ce3806fa-f88a-4c05-97ac-38c4470f7e59-1781219597673 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + sticky_anchor = false + anchor_point = mid-centered + x = 142 + y = -120 + width = 76 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723 + [loading_requirement_container_meta:ad49074b-e06a-46e1-8e90-7630f81e779b-1781215015723] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #121212FF + label_hover_color = #121212FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = be9ae8ee-2374-417d-b224-c50be2c0eceb-1781377027602 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = true + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + sticky_anchor = false + anchor_point = mid-centered + x = -217 + y = -86 + width = 212 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602 + [loading_requirement_container_meta:49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/logo.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = 624da132-7f1f-4bd4-baa7-c7ddc88e2900-1781377060063 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = true + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + sticky_anchor = false + anchor_point = mid-centered + x = 5 + y = -85 + width = 212 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602 + [loading_requirement_container_meta:49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/logo.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = 1ea07986-b024-4d4c-aa80-bc8730a186a8-1781377078979 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = true + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + sticky_anchor = false + anchor_point = mid-centered + x = -217 + y = 25 + width = 212 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602 + [loading_requirement_container_meta:49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/logo.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = 4562f13b-395c-4fb4-926b-5d6cda578caf-1781377096723 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = true + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + sticky_anchor = false + anchor_point = mid-centered + x = 5 + y = 25 + width = 212 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602 + [loading_requirement_container_meta:49faabb4-5b58-4573-8b00-aafad8ff6eef-1781377027602] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/logo.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + diff --git a/config/fancymenu/customization/com.moulberry.flashback.screen.savereplayscreen_layout.txt b/config/fancymenu/customization/com.moulberry.flashback.screen.savereplayscreen_layout.txt new file mode 100644 index 0000000..c456679 --- /dev/null +++ b/config/fancymenu/customization/com.moulberry.flashback.screen.savereplayscreen_layout.txt @@ -0,0 +1,1132 @@ +type = fancymenu_layout + +layout-meta { + identifier = com.moulberry.flashback.screen.SaveReplayScreen + render_custom_elements_behind_vanilla = true + last_edited_time = 1785307551597 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:fb226707-3c8d-4e88-9176-e51f5e6138de-1785307526132] = [groups:][instances:] +} + +menu_background { + instance_identifier = da613bdf-f150-46f5-97a6-0b6eaf1f916b-1785304714430 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = f6ff2507-4fe5-45a5-a0ce-01b109bec348-1785304714430 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 54203789-a668-4617-aeb2-2576b21d60a7-1785304714430 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 59ade001-5bc4-4566-8f76-c5d808d2539f-1785304714430 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 193be072-b43a-41e2-84a6-a41408477fd7-1785304714430 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = f3c3b8e8-ef43-40ff-9c6e-790ea2be6b1a-1785304714430 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 86e9744f-696c-4a76-894d-50407281e269-1785304714431 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = d32e6263-e71d-4992-818d-620e183918ed-1785304714431 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 696b8a9c-1837-45f5-b79f-4e7d08c6fd37-1785304714431 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 49a4f977-bdbb-4794-b760-dabba51508ab-1785304714431 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = b119efcf-a68a-4099-8537-a05c4bf7062b-1785304714431 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 3f0da1a5-ed5b-4627-bb67-dce2b5c5cc6f-1785304714431 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = c1fa7a0f-99c0-479c-ae32-ffbffb421ecb-1785304714431 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = db6d4a1a-b4f7-4e06-bc6e-b6808b43eb3d-1785304714431 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = d8b07f94-b2f4-4a97-a8bc-7954c89996d3-1785304714431 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 0178091e-a6cd-405f-84e2-a4a8f436038f-1785304714431 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = edc4b2ff-ae74-4761-b741-114592c68719-1785304714431 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 6a19f30d-e47f-4dc8-aa7d-5bbc2e450f4d-1785304714431 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = bd5032cc-03cb-4b89-bd2d-58a718f66b1a-1785304714431 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { + element_type = image + instance_identifier = df177b78-334b-41e9-8e60-a48691f6d647-1785305821502 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -121 + y = -50 + width = 242 + height = 129 + stay_on_screen = true + element_loading_requirement_container_identifier = 808c333a-af13-4bab-8c82-814e84f8dd49-1785305821502 + [loading_requirement_container_meta:808c333a-af13-4bab-8c82-814e84f8dd49-1785305821502] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = d7b007f9-4025-4583-8d4b-987577ffe030-1785307306231 + [executable_action_instance:ebd14654-4662-4d33-a865-3bcf3a7453c5-1785307358901][action_type:mimicbutton] = com.moulberry.flashback.screen.SaveReplayScreen:398549 + [executable_action_instance:1297c703-afa0-485d-be1b-fe8b79523e27-1785307454255][action_type:set_variable] = is_flashback_recording:false + [executable_block:d7b007f9-4025-4583-8d4b-987577ffe030-1785307306231][type:generic] = [executables:ebd14654-4662-4d33-a865-3bcf3a7453c5-1785307358901;1297c703-afa0-485d-be1b-fe8b79523e27-1785307454255;] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = New Button + navigatable = true + widget_active_state_requirement_container_identifier = fb5eff2b-7e8e-4f1f-baf4-f17a278262a5-1785307306231 + [loading_requirement_container_meta:fb5eff2b-7e8e-4f1f-baf4-f17a278262a5-1785307306231] = [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 + element_type = custom_button + instance_identifier = 48e43573-4448-467f-a9a0-ac6d15c4ffe9-1785307531713 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -104 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 06bae84f-c725-4f80-805f-b5e8c31471fe-1785307306230 + [loading_requirement_container_meta:06bae84f-c725-4f80-805f-b5e8c31471fe-1785307306230] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = fdb2079e-f189-4b4c-8989-512118e68c69-1785304714432 + [executable_block:fdb2079e-f189-4b4c-8989-512118e68c69-1785304714432][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = c4a882d8-3900-4523-b711-bc77f0242e86-1785304714432 + [loading_requirement_container_meta:c4a882d8-3900-4523-b711-bc77f0242e86-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 504549 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 2 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 977073e9-8c11-46c0-84f2-c2fb29b79445-1785304714432 + [loading_requirement_container_meta:977073e9-8c11-46c0-84f2-c2fb29b79445-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 97297dad-b4fc-4a48-acce-837b388b8474-1785304714432 + [executable_block:97297dad-b4fc-4a48-acce-837b388b8474-1785304714432][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5a735bde-6523-49a1-9e08-e5a05aa406cb-1785304714432 + [loading_requirement_container_meta:5a735bde-6523-49a1-9e08-e5a05aa406cb-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398435 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -65 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f010177b-f529-4899-8f23-d56ce1431ae3-1785304714432 + [loading_requirement_container_meta:f010177b-f529-4899-8f23-d56ce1431ae3-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = af0fab16-c5b7-40c1-89e1-f611b754b741-1785304714432 + [executable_block:af0fab16-c5b7-40c1-89e1-f611b754b741-1785304714432][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9a974404-55d3-4248-933a-1fe01aa7bcde-1785304714432 + [loading_requirement_container_meta:9a974404-55d3-4248-933a-1fe01aa7bcde-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398497 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = 3 + width = 204 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = a2b12c81-55de-42ae-8ecb-f06b7ac9466f-1785304714432 + [loading_requirement_container_meta:a2b12c81-55de-42ae-8ecb-f06b7ac9466f-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 85fa5460-85e3-441b-8160-c78d08cf858d-1785304714432 + [executable_block:85fa5460-85e3-441b-8160-c78d08cf858d-1785304714432][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 5b7d41a1-ead0-433e-ac35-66937b8dd65f-1785304714432 + [loading_requirement_container_meta:5b7d41a1-ead0-433e-ac35-66937b8dd65f-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398511 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -104 + y = 18 + width = 208 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 8c771823-ffd6-4319-b9a8-ba4b7795dc9c-1785304714432 + [loading_requirement_container_meta:8c771823-ffd6-4319-b9a8-ba4b7795dc9c-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_base_color = #000000FF + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = a832ca58-313e-4d75-9cc1-8baf24a09ecb-1785304714432 + [executable_block:a832ca58-313e-4d75-9cc1-8baf24a09ecb-1785304714432][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 0be11e16-41d8-4ad1-81c0-d57f4a198411-1785304714432 + [loading_requirement_container_meta:0be11e16-41d8-4ad1-81c0-d57f4a198411-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398535 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = 35 + width = 204 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = f8d3818f-1f57-43a9-b579-e474a72f3117-1785304714432 + [loading_requirement_container_meta:f8d3818f-1f57-43a9-b579-e474a72f3117-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 4d030889-5c35-496d-acd9-2426d4496809-1785304714432 + [executable_block:4d030889-5c35-496d-acd9-2426d4496809-1785304714432][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5db3b812-143e-45fe-b4be-8c060820ddd1-1785304714432 + [loading_requirement_container_meta:5db3b812-143e-45fe-b4be-8c060820ddd1-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398459 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -43 + width = 204 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = 8a254c82-fe38-4254-82ab-519285b47a9b-1785304714432 + [loading_requirement_container_meta:8a254c82-fe38-4254-82ab-519285b47a9b-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 57d6f263-024e-4767-8f5c-832a1dff15b1-1785304714432 + [executable_block:57d6f263-024e-4767-8f5c-832a1dff15b1-1785304714432][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ca989166-ff8f-46da-9175-219da1fcf165-1785304714432 + [loading_requirement_container_meta:ca989166-ff8f-46da-9175-219da1fcf165-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398473 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -27 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 77a11b82-9c8e-4a11-8d92-20014270591e-1785304714432 + [loading_requirement_container_meta:77a11b82-9c8e-4a11-8d92-20014270591e-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = e599fa5e-c64d-47b9-ad25-267fb65d5e64-1785304714432 + [executable_block:e599fa5e-c64d-47b9-ad25-267fb65d5e64-1785304714432][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 47a8a566-84bf-4594-a626-10488f2b7818-1785304714432 + [loading_requirement_container_meta:47a8a566-84bf-4594-a626-10488f2b7818-1785304714432] = [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 + element_type = vanilla_button + instance_identifier = 398549 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -104 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 8a80c752-0b3b-4a87-9d83-7eb2657a0ce2-1785304714432 + [loading_requirement_container_meta:8a80c752-0b3b-4a87-9d83-7eb2657a0ce2-1785304714432] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/com.terraformersmc.modmenu.gui.modsscreen_layout.txt b/config/fancymenu/customization/com.terraformersmc.modmenu.gui.modsscreen_layout.txt new file mode 100644 index 0000000..edd35a1 --- /dev/null +++ b/config/fancymenu/customization/com.terraformersmc.modmenu.gui.modsscreen_layout.txt @@ -0,0 +1,975 @@ +type = fancymenu_layout + +layout-meta { + identifier = com.terraformersmc.modmenu.gui.ModsScreen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781344428085 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:eddea901-30d9-479b-93c7-c71dcbb68f29-1781344394716] = [groups:][instances:] +} + +menu_background { + instance_identifier = f52d95ed-c37a-464b-87a3-e4fa87a91448-1781267842212 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 59654a8a-910d-4c64-b899-b864a425e51b-1781267842212 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = ae524148-bf54-4d65-aec1-e336dac46e74-1781267842212 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = ad1660ec-8a77-4f64-815a-35c296dd982c-1781267842213 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = a02f5541-0c40-4e4d-bdec-edaf90e27dc3-1781267842213 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 5d6b23fa-e694-4791-9609-3006ee2fbe78-1781267842213 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = d7d7e3fa-10c6-43ee-a74e-abed5b545903-1781267842214 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 21bebfdb-62d2-42bb-9d8d-d2cba80bfb7d-1781267842214 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 8a6278fb-fdc4-4d4b-875f-f00adf6b2f5a-1781267842215 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 43cdd275-c1fc-491f-a9b2-9047b1dd6d58-1781267842215 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 1de3218a-bf36-4ee6-8bdb-79e05deaa19e-1781267842215 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 4968acaa-d131-4bf8-bdee-4174b9240d0d-1781267842215 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 31846f60-1549-4b90-bb85-04173bf19ff6-1781267842215 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 5dd6bfd5-9004-442f-b911-f2dfcb045b2f-1781267842216 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = ba09d1b4-136c-4c88-aecf-327a4b693981-1781267842216 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 1637fcf3-939e-4a4c-98ff-e7de4d753018-1781267842216 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = c29cce71-dc7b-42b3-ae44-b5ccfe374a25-1781267842216 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 283cd40f-c305-4928-8f6d-b85c405077a0-1781267842216 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = c6f70ee9-a24b-416c-880d-9635506dcd2d-1781267842216 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = 330a9c09-d32d-4fff-9d9e-b69120b1f586-1781267842227 + [executable_block:330a9c09-d32d-4fff-9d9e-b69120b1f586-1781267842227][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6c481f25-6b27-463d-a9db-6bce49712e41-1781267842227 + [loading_requirement_container_meta:6c481f25-6b27-463d-a9db-6bce49712e41-1781267842227] = [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 + element_type = vanilla_button + instance_identifier = 45722 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 277 + y = 22 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 02544a0a-fcea-4aaa-ac3e-7a5a05309e8b-1781267842227 + [loading_requirement_container_meta:02544a0a-fcea-4aaa-ac3e-7a5a05309e8b-1781267842227] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 1c65ce9d-e454-476e-995d-28fe0350d4a1-1781267842231 + [executable_block:1c65ce9d-e454-476e-995d-28fe0350d4a1-1781267842231][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c722cef9-8b89-4427-8319-9e86f111cbdf-1781267842231 + [loading_requirement_container_meta:c722cef9-8b89-4427-8319-9e86f111cbdf-1781267842231] = [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 + element_type = vanilla_button + instance_identifier = 53084 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 328 + y = 84 + width = 154 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8e09bbd6-8a72-460d-a0b9-e457714d6f28-1781267842230 + [loading_requirement_container_meta:8e09bbd6-8a72-460d-a0b9-e457714d6f28-1781267842230] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 29dce43a-34b6-4596-a7de-d29d5f441604-1781267842232 + [executable_block:29dce43a-34b6-4596-a7de-d29d5f441604-1781267842232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9e7f2bdd-84a8-43d9-b6d1-e4d9845a3f48-1781267842232 + [loading_requirement_container_meta:9e7f2bdd-84a8-43d9-b6d1-e4d9845a3f48-1781267842232] = [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 + element_type = vanilla_button + instance_identifier = 77884 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 486 + y = 84 + width = 154 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 3c5a9a27-77be-4288-9228-e267838d744b-1781267842231 + [loading_requirement_container_meta:3c5a9a27-77be-4288-9228-e267838d744b-1781267842231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = d8e43b42-0e84-49a0-9b1d-a43e835fa2de-1781267842228 + [executable_block:d8e43b42-0e84-49a0-9b1d-a43e835fa2de-1781267842228][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = bbcff390-d431-409e-9f9e-488da56e3b56-1781267842228 + [loading_requirement_container_meta:bbcff390-d431-409e-9f9e-488da56e3b56-1781267842228] = [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 + element_type = vanilla_button + instance_identifier = 29745 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 117 + y = 45 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 54d6f1c0-27c8-450d-935a-2c3de7b6eefe-1781267842227 + [loading_requirement_container_meta:54d6f1c0-27c8-450d-935a-2c3de7b6eefe-1781267842227] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = e753a8fc-3ab7-454e-b725-02e2c5b4eeee-1781267842229 + [executable_block:e753a8fc-3ab7-454e-b725-02e2c5b4eeee-1781267842229][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 078e84f3-16b6-4e34-8104-a9e9d2bb7eb4-1781267842229 + [loading_requirement_container_meta:078e84f3-16b6-4e34-8104-a9e9d2bb7eb4-1781267842229] = [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 + element_type = vanilla_button + instance_identifier = 37345 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 193 + y = 45 + width = 104 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 13a82308-b313-483f-bf97-1da97a8e5344-1781267842228 + [loading_requirement_container_meta:13a82308-b313-483f-bf97-1da97a8e5344-1781267842228] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 0b71a003-a1e3-4a7b-9628-77f4404898dc-1781267842232 + [executable_block:0b71a003-a1e3-4a7b-9628-77f4404898dc-1781267842232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 96503724-939e-4996-9c98-d034f0791796-1781267842233 + [loading_requirement_container_meta:96503724-939e-4996-9c98-d034f0791796-1781267842233] = [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 + element_type = vanilla_button + instance_identifier = 346972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -158 + y = -28 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 14c1d149-e797-4324-bbe1-604798961429-1781267842232 + [loading_requirement_container_meta:14c1d149-e797-4324-bbe1-604798961429-1781267842232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 8854a765-474f-485a-90a0-21cd88d2485b-1781267842233 + [executable_block:8854a765-474f-485a-90a0-21cd88d2485b-1781267842233][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 8d33fdd9-cdf4-42da-b904-b7df92dedbd9-1781267842233 + [loading_requirement_container_meta:8d33fdd9-cdf4-42da-b904-b7df92dedbd9-1781267842233] = [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 + element_type = vanilla_button + instance_identifier = 504972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = 8 + y = -28 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = d494ca61-9453-42e3-ad4f-6c7732bcbc45-1781267842233 + [loading_requirement_container_meta:d494ca61-9453-42e3-ad4f-6c7732bcbc45-1781267842233] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 2f98e7e7-f59f-4375-a3a8-b984e2d7857a-1781267842229 + [executable_block:2f98e7e7-f59f-4375-a3a8-b984e2d7857a-1781267842229][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 14459d74-b846-4d7a-b87f-81a6f8e2c344-1781267842230 + [loading_requirement_container_meta:14459d74-b846-4d7a-b87f-81a6f8e2c344-1781267842230] = [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 + element_type = vanilla_button + instance_identifier = 97648 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 616 + y = 48 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 262bc773-ab8d-47d5-8ffa-2d20ef1effea-1781267842229 + [loading_requirement_container_meta:262bc773-ab8d-47d5-8ffa-2d20ef1effea-1781267842229] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/com.viaversion.viafabricplus.screen.impl.protocolselectionscreen_layout.txt b/config/fancymenu/customization/com.viaversion.viafabricplus.screen.impl.protocolselectionscreen_layout.txt new file mode 100644 index 0000000..43f63af --- /dev/null +++ b/config/fancymenu/customization/com.viaversion.viafabricplus.screen.impl.protocolselectionscreen_layout.txt @@ -0,0 +1,819 @@ +type = fancymenu_layout + +layout-meta { + identifier = com.viaversion.viafabricplus.screen.impl.ProtocolSelectionScreen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781579144207 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:b04ae8e4-a3c7-44ce-a858-cfc76ef0374d-1781579106434] = [groups:][instances:] +} + +menu_background { + instance_identifier = 888ec135-91de-4c46-a662-870de1f7bc81-1781268705761 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = a1bf518c-d80b-483f-93ef-0bc4805258c1-1781268705761 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 5ff30aa3-9156-48ab-ba03-632c7acc3910-1781268705761 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = c291359e-3ab7-45f3-80c9-8b1da021435c-1781268705761 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 8caa4c8b-bd6b-4fd9-94cc-e4804cb0c31c-1781268705761 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 94bfdef4-501b-46cc-85b3-869fd11bcf7c-1781268705761 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 268603d3-3bac-4bff-b833-eda9248c749c-1781268705762 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 1020147b-7ac3-4543-b25d-6c7f7c89c39a-1781268705762 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 93c5d23c-87c8-4e25-9cbc-ad7b61a92c7c-1781268705762 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 555eaf24-150d-4283-af9d-b45db1e5a454-1781268705762 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 7be3a82f-9c7b-4c4c-993b-e1eb8d04ed38-1781268705762 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 9d7613a5-8763-431c-b8f9-148b6db84996-1781268705762 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = b55a58b7-dee7-49a6-8233-90188326401e-1781268705762 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = c19fdece-5c5f-46b1-8d69-ba01421594bd-1781268705762 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = ab712b06-0551-4792-88b9-8b927df23d52-1781268705762 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = a089452f-75ad-4069-981d-201ee6aeaf71-1781268705762 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 55a39c79-e89d-4c73-8b7d-16f7e70277ce-1781268705762 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 74c6153c-bce3-416d-a0a6-0b6fba189a18-1781268705762 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 8aea8fb3-3019-4ad3-ad74-3392e472477b-1781268705762 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +element { + button_element_executable_block_identifier = 98f58fdc-a46c-45a6-a7ed-1ecb06fd0ef5-1781270299322 + [executable_action_instance:b5814ca1-7182-4cc4-93c3-7935e82c1213-1781579130115][action_type:opengui] = bte_layout + [executable_block:98f58fdc-a46c-45a6-a7ed-1ecb06fd0ef5-1781270299322][type:generic] = [executables:b5814ca1-7182-4cc4-93c3-7935e82c1213-1781579130115;] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = < + navigatable = true + widget_active_state_requirement_container_identifier = 1db0df00-b165-4072-82a0-696f64244c3d-1781270299322 + [loading_requirement_container_meta:1db0df00-b165-4072-82a0-696f64244c3d-1781270299322] = [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 + element_type = custom_button + instance_identifier = ba8df702-37e3-4ffd-87b7-044f81e9fbd9-1781270299321 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-left + x = 5 + y = 12 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = fd506cdd-9d1c-40fb-8ee6-7d59c9aef22a-1781270299321 + [loading_requirement_container_meta:fd506cdd-9d1c-40fb-8ee6-7d59c9aef22a-1781270299321] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 79eca534-ac2d-4c43-b31a-96d3c5cd6ef0-1781268705763 + [executable_block:79eca534-ac2d-4c43-b31a-96d3c5cd6ef0-1781268705763][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5a98ef9b-53d0-41ca-aa1e-97d7602e2ef3-1781268705763 + [loading_requirement_container_meta:5a98ef9b-53d0-41ca-aa1e-97d7602e2ef3-1781268705763] = [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 + element_type = vanilla_button + instance_identifier = 5975 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 5 + y = 249 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = caa68c93-193e-41ee-b4f0-34d137618597-1781268705763 + [loading_requirement_container_meta:caa68c93-193e-41ee-b4f0-34d137618597-1781268705763] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 9f7dea72-4084-4d11-bec7-bb5a4c319579-1781268705763 + [executable_block:9f7dea72-4084-4d11-bec7-bb5a4c319579-1781268705763][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9a2c9295-6896-4eaa-9bf4-08269b3e61f4-1781268705763 + [loading_requirement_container_meta:9a2c9295-6896-4eaa-9bf4-08269b3e61f4-1781268705763] = [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 + element_type = vanilla_button + instance_identifier = 897975 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 377 + y = 249 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 654f3e97-edfb-44f5-84ce-17024c704ba3-1781268705763 + [loading_requirement_container_meta:654f3e97-edfb-44f5-84ce-17024c704ba3-1781268705763] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 9210210f-5225-4beb-ad4f-49b3bd599838-1781268705763 + [executable_block:9210210f-5225-4beb-ad4f-49b3bd599838-1781268705763][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = e88c9b55-af61-4113-81df-9bf30903105b-1781268705763 + [loading_requirement_container_meta:e88c9b55-af61-4113-81df-9bf30903105b-1781268705763] = [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 + element_type = vanilla_button + instance_identifier = 8975 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-right + x = -103 + y = 12 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = d125afb3-1a6b-48b2-bd11-f0ba3c10a207-1781268705763 + [loading_requirement_container_meta:d125afb3-1a6b-48b2-bd11-f0ba3c10a207-1781268705763] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = ee6ad05b-c718-4683-9119-0f2c00d78fba-1781268705763 + [executable_block:ee6ad05b-c718-4683-9119-0f2c00d78fba-1781268705763][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ea730255-101e-425a-85ad-482cd6103f84-1781268705763 + [loading_requirement_container_meta:ea730255-101e-425a-85ad-482cd6103f84-1781268705763] = [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 + element_type = vanilla_button + instance_identifier = 55 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-left + x = 5 + y = 17 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ff0ce820-cecc-4f9d-9df7-df9e0eb2fa11-1781268705763 + [loading_requirement_container_meta:ff0ce820-cecc-4f9d-9df7-df9e0eb2fa11-1781268705763] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 02a27d5d-46f2-4a86-a90b-3edb0b57f1a3-1781268705763 + [executable_block:02a27d5d-46f2-4a86-a90b-3edb0b57f1a3-1781268705763][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 85cb5aca-8e65-437d-8a19-781666d1bcbc-1781268705763 + [loading_requirement_container_meta:85cb5aca-8e65-437d-8a19-781666d1bcbc-1781268705763] = [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 + element_type = vanilla_button + instance_identifier = 39025 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 130 + y = 25 + width = 221 + height = 11 + stay_on_screen = true + element_loading_requirement_container_identifier = 19737c33-1878-4e45-8b49-77235924bd52-1781268705763 + [loading_requirement_container_meta:19737c33-1878-4e45-8b49-77235924bd52-1781268705763] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/confirm_screen_layout.txt b/config/fancymenu/customization/confirm_screen_layout.txt new file mode 100644 index 0000000..7cc24b0 --- /dev/null +++ b/config/fancymenu/customization/confirm_screen_layout.txt @@ -0,0 +1,959 @@ +type = fancymenu_layout + +layout-meta { + identifier = confirm_screen + render_custom_elements_behind_vanilla = true + last_edited_time = 1785386621693 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:c26d7370-117a-4d1a-9a42-5b10005af62e-1785386499903] = [groups:][instances:] +} + +menu_background { + instance_identifier = 0c86579e-307d-4f35-bd11-63af65910847-1785306024031 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 11047244-e152-4275-8bbb-4c9b1af7625f-1785306024031 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 1ff8ac35-b5ac-4e2b-b6a5-8931a10425bc-1785306024031 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 75059a82-d1f8-4e5b-91e9-40ed08aa8056-1785306024031 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = db63f607-3b9f-4844-bc68-bf166e84a0cb-1785306024031 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 1647861b-695e-4340-a2df-96f345b22516-1785306024031 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 8211a93e-33a3-454a-b3fa-5c2f04c6bfd2-1785306024032 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 9015fcba-487b-43c7-a32a-63ccf943b583-1785306024032 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 21414120-04ae-401c-bd31-4fa74901400d-1785306024032 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 257762e9-9e9a-4c45-a611-9d05abd77393-1785306024032 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 9badd4b2-8e5d-41eb-8c97-bd9d6bd67504-1785306024032 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 7700ee47-e06e-495c-9855-c29fbd07b687-1785306024032 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = b1d0a14b-b07b-482b-994d-3a42d06a8a3e-1785306024032 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = c5503251-10bb-4e1d-8732-7e21f278e7d3-1785306024032 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 61d16eb1-b97c-4b8f-8cee-1c606eb16474-1785306024032 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = bbc4abe6-8659-41a3-8ca8-3eb548c4f502-1785306024032 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = c2f5d5f3-d521-48ae-878a-12608de9ddd2-1785306024032 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 19917dfc-0e8d-4ecf-94ac-8c7f57cc1cd2-1785306024032 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 7c628269-5aed-4d1b-9e31-30d07faa95e3-1785306024032 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { + element_type = image + instance_identifier = 3a24a13f-a3e2-491f-8c18-8acbc674ccb8-1785307038314 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -230 + y = -50 + width = 460 + height = 55 + stay_on_screen = true + element_loading_requirement_container_identifier = 808c333a-af13-4bab-8c82-814e84f8dd49-1785305821502 + [loading_requirement_container_meta:808c333a-af13-4bab-8c82-814e84f8dd49-1785305821502] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = afcd1fc5-c0ce-47fb-bd54-6fc4bd074d9e-1785307093967 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -121 + y = 39 + width = 242 + height = 40 + stay_on_screen = true + element_loading_requirement_container_identifier = 808c333a-af13-4bab-8c82-814e84f8dd49-1785305821502 + [loading_requirement_container_meta:808c333a-af13-4bab-8c82-814e84f8dd49-1785305821502] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = d7b007f9-4025-4583-8d4b-987577ffe030-1785307306231 + [executable_action_instance:ebd14654-4662-4d33-a865-3bcf3a7453c5-1785307358901][action_type:mimicbutton] = confirm_screen:348515 + [executable_action_instance:1297c703-afa0-485d-be1b-fe8b79523e27-1785307454255][action_type:set_variable] = is_flashback_recording:false + [executable_block:d7b007f9-4025-4583-8d4b-987577ffe030-1785307306231][type:generic] = [executables:ebd14654-4662-4d33-a865-3bcf3a7453c5-1785307358901;1297c703-afa0-485d-be1b-fe8b79523e27-1785307454255;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + label = Confirm + navigatable = true + widget_active_state_requirement_container_identifier = fb5eff2b-7e8e-4f1f-baf4-f17a278262a5-1785307306231 + [loading_requirement_container_meta:fb5eff2b-7e8e-4f1f-baf4-f17a278262a5-1785307306231] = [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 + element_type = custom_button + instance_identifier = a2a11223-bcf7-4034-9e58-46c4886ff07a-1785307306231 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -104 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 06bae84f-c725-4f80-805f-b5e8c31471fe-1785307306230 + [loading_requirement_container_meta:06bae84f-c725-4f80-805f-b5e8c31471fe-1785307306230] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = d7b007f9-4025-4583-8d4b-987577ffe030-1785307306231 + [executable_action_instance:ebd14654-4662-4d33-a865-3bcf3a7453c5-1785307358901][action_type:mimicbutton] = confirm_screen:502515 + [executable_block:d7b007f9-4025-4583-8d4b-987577ffe030-1785307306231][type:generic] = [executables:ebd14654-4662-4d33-a865-3bcf3a7453c5-1785307358901;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + label = Cancel + navigatable = true + widget_active_state_requirement_container_identifier = fb5eff2b-7e8e-4f1f-baf4-f17a278262a5-1785307306231 + [loading_requirement_container_meta:fb5eff2b-7e8e-4f1f-baf4-f17a278262a5-1785307306231] = [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 + element_type = custom_button + instance_identifier = 74e4e635-76d2-4b7f-90a6-1691555afd0d-1785307370168 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 2 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 06bae84f-c725-4f80-805f-b5e8c31471fe-1785307306230 + [loading_requirement_container_meta:06bae84f-c725-4f80-805f-b5e8c31471fe-1785307306230] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 125ced84-5070-4b05-b2cf-2f4893abe9fc-1785386499906 + [executable_block:125ced84-5070-4b05-b2cf-2f4893abe9fc-1785386499906][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 42b90b8c-00ca-4be8-b182-69c8cd17ceaa-1785386499906 + [loading_requirement_container_meta:42b90b8c-00ca-4be8-b182-69c8cd17ceaa-1785386499906] = [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 + element_type = vanilla_button + instance_identifier = 388482 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 128 + y = 128 + width = 224 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 83dd4c86-0433-4a74-8cfb-022926438616-1785386499906 + [loading_requirement_container_meta:83dd4c86-0433-4a74-8cfb-022926438616-1785386499906] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 284e7834-da76-4589-807a-c3e3156182f1-1785306024033 + [executable_block:284e7834-da76-4589-807a-c3e3156182f1-1785306024033][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 99c42c0e-7d13-49c6-a0d7-2641b336b9ab-1785306024033 + [loading_requirement_container_meta:99c42c0e-7d13-49c6-a0d7-2641b336b9ab-1785306024033] = [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 + element_type = vanilla_button + instance_identifier = 348515 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -104 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 437fed2c-00f3-4bfa-8117-42ec82f64c21-1785306024033 + [loading_requirement_container_meta:437fed2c-00f3-4bfa-8117-42ec82f64c21-1785306024033] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 1f590fac-f6d1-4853-8fb2-8c2454c6877b-1785306024033 + [executable_block:1f590fac-f6d1-4853-8fb2-8c2454c6877b-1785306024033][type:generic] = [executables:] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 87da61fc-7445-4941-bf37-fe4330995bca-1785306024033 + [loading_requirement_container_meta:87da61fc-7445-4941-bf37-fe4330995bca-1785306024033] = [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 + element_type = vanilla_button + instance_identifier = 502515 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 2 + y = 47 + width = 102 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 018d0015-ee03-4626-a5e4-46005630cc9d-1785306024033 + [loading_requirement_container_meta:018d0015-ee03-4626-a5e4-46005630cc9d-1785306024033] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 537d9c4d-1f46-4b4a-a446-ffb5802c92d7-1785386499906 + [executable_block:537d9c4d-1f46-4b4a-a446-ffb5802c92d7-1785386499906][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 67e8c09c-9ba8-4302-bea3-247c468915c8-1785386499906 + [loading_requirement_container_meta:67e8c09c-9ba8-4302-bea3-247c468915c8-1785386499906] = [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 + element_type = vanilla_button + instance_identifier = 388465 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 128 + y = 111 + width = 224 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = fbd4725e-62c0-489f-a53e-903d37cc8bd0-1785386499906 + [loading_requirement_container_meta:fbd4725e-62c0-489f-a53e-903d37cc8bd0-1785386499906] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/connect_screen_layout.txt b/config/fancymenu/customization/connect_screen_layout.txt new file mode 100644 index 0000000..a0de345 --- /dev/null +++ b/config/fancymenu/customization/connect_screen_layout.txt @@ -0,0 +1,1162 @@ +type = fancymenu_layout + +layout-meta { + identifier = connect_screen + render_custom_elements_behind_vanilla = true + last_edited_time = 1785262215826 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:ff0f27fc-b487-4731-9717-7f535afe1eec-1785262168231] = [groups:][instances:] +} + +menu_background { + instance_identifier = f7ab43bd-9fd3-4e0e-8fe1-d28ca401db80-1781472923866 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = c6f253d0-d002-4798-a7b2-63bf0819027c-1781472923866 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = a731c5f7-3232-4d1c-9c7b-7c90cbc3e9bb-1781472923866 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 7a1a8d2f-8fed-429f-99bc-bcf7de7b614a-1781472923866 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 9ec96856-3ebe-4000-bebe-f840a5c9c903-1781472923866 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = c87543a7-c645-4434-917e-7dc345af12f4-1781472923866 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 32921356-e2ba-40b0-b4dd-b890718e2b3d-1781472923867 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = cfa19226-5582-43bd-8d9f-1efbb5c7f7c4-1781472923867 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 5410baba-4e60-4a86-81b4-61b7aab0eec8-1781472923867 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 01a54749-179b-434c-8d2b-25539238bed3-1781472923867 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = f68fc9dd-5e4b-4365-9b28-ac87cca0e54b-1781472923867 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 4675b901-5b66-4f96-ae0a-53dad5d6eaf8-1781472923867 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 138a96b3-c94c-40fd-abec-7ce32c8b9801-1781472923867 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = d0f2cee5-33c8-4b38-ab7a-f443a056bc74-1781472923867 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 34629f4a-2bef-4b40-8243-42a27a843e20-1781472923867 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = b4900ef1-7020-437a-90db-77f3d9aadb19-1781472923867 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 4bf2f60a-dfc9-4550-bb6d-37f060c861e0-1781472923867 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = e82ad2dd-fdf2-4b06-bbed-b5e63644d63a-1781472923867 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 97ef808b-4b95-4a90-8910-585cbf6ccd29-1781472923867 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 5b6c1e24-0fe9-494a-a6da-74080647ace7-1781530829945 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -239 + y = -55 + width = 469 + height = 55 + stay_on_screen = false + element_loading_requirement_container_identifier = 25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945 + [loading_requirement_container_meta:25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = {"placeholder":"vanillabuttonlabel","values":{"locator":"connect_screen:status"}} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 92fab642-9305-454d-a7c9-cd560f8f59df-1781491677753 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-left + x = 46 + y = -44 + width = 230 + height = 15 + stay_on_screen = true + element_loading_requirement_container_identifier = 3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753 + [loading_requirement_container_meta:3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #F3F3F3FF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + bar_nine_slice = false + background_nine_slice = false + direction = right + progress_for_element_anchor = false + value_mode = percentage + smooth_filling_animation = true + element_type = progress_bar + instance_identifier = 15b80f86-5055-4bcd-be8b-7b6daf9e856d-1781531111471 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -92 + y = -10 + width = 182 + height = 5 + stay_on_screen = true + element_loading_requirement_container_identifier = 0663250b-666a-4492-8292-c0118e8c82b6-1781531111470 + [loading_requirement_container_meta:0663250b-666a-4492-8292-c0118e8c82b6-1781531111470] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + bar_nine_slice_border_top = 5 + bar_nine_slice_border_right = 10 + bar_nine_slice_border_bottom = 5 + bar_nine_slice_border_left = 10 + background_nine_slice_border_top = 5 + background_nine_slice_border_right = 10 + background_nine_slice_border_bottom = 5 + background_nine_slice_border_left = 10 + progress_source = 100.0 + bar_color = #53B237 + background_color = #454647 +} + +element { + element_type = image + instance_identifier = a2073f5c-3e12-457a-8cb5-853f43da4272-1781532031813 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-left + x = 11 + y = -44 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813 + [loading_requirement_container_meta:034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/icons/logo.gif + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:42655a26-8492-4d64-a221-a813904ba191-1781535521945][action_type:mimicbutton] = connect_screen:400382 + [executable_action_instance:86d34a38-7000-46c8-bf6f-1333f5726383-1781554143294][action_type:set_variable] = is_main_server:false + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:42655a26-8492-4d64-a221-a813904ba191-1781535521945;86d34a38-7000-46c8-bf6f-1333f5726383-1781554143294;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/cancel.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/cancel.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = cb2cff15-6842-4864-99d3-2c8d7507c5d4-1781535181215 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -130 + y = -47 + width = 120 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = 00b92c6c-f5d7-4d8a-9319-fc3af427ef73-1781536585398 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023 + [loading_requirement_container_meta:f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = c37344dc-d7e6-4982-a60c-0bf37c591ee2-1781537246749 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -100 + y = -87 + width = 100 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749 + [loading_requirement_container_meta:5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 0.9 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = ^^^%n%%n%{"placeholder":"randomtext","values":{"source":"/config/fancymenu/assets/tips.txt","interval":"6"}}%n%^^^ + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + remove_html_breaks = false + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = b6ddd3b6-3a50-465e-9eea-da3e0a501d18-1781536894565 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = c37344dc-d7e6-4982-a60c-0bf37c591ee2-1781537246749 + x = -237 + y = -2 + width = 412 + height = 21 + stay_on_screen = true + element_loading_requirement_container_identifier = 1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565 + [loading_requirement_container_meta:1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.8 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + interactable = false + source = \n%n%{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.ip"%n% }%n%} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = b5407d1d-6ce9-4272-8e9d-678d8c93adb8-1781704264671 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 92fab642-9305-454d-a7c9-cd560f8f59df-1781491677753 + x = 0 + y = -3 + width = 220 + height = 31 + stay_on_screen = true + element_loading_requirement_container_identifier = 6bf418ba-9664-4420-972a-6ff1512d2f09-1781704264671 + [loading_requirement_container_meta:6bf418ba-9664-4420-972a-6ff1512d2f09-1781704264671] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 0.4 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +vanilla_button { + button_element_executable_block_identifier = a109825f-d91c-4a13-8c6d-4e9311276737-1781472923869 + [executable_block:a109825f-d91c-4a13-8c6d-4e9311276737-1781472923869][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = edaf9abf-4de7-42fa-8292-248183a5cf28-1781472923869 + [loading_requirement_container_meta:edaf9abf-4de7-42fa-8292-248183a5cf28-1781472923869] = [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 + element_type = vanilla_button + instance_identifier = 400382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-right + x = -74 + y = -47 + width = 64 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = fe312d15-4a75-4bbe-b3bb-49b438cfffce-1781472923869 + [loading_requirement_container_meta:fe312d15-4a75-4bbe-b3bb-49b438cfffce-1781472923869] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 3b7fbdc6-1169-4593-bf8e-942e71a396cb-1781472923869 + [executable_block:3b7fbdc6-1169-4593-bf8e-942e71a396cb-1781472923869][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b93fcc0a-de11-4a8b-ac66-45295512122e-1781472923869 + [loading_requirement_container_meta:b93fcc0a-de11-4a8b-ac66-45295512122e-1781472923869] = [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 + element_type = vanilla_button + instance_identifier = status + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 96 + width = 200 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = fae54081-a5fa-4431-9857-86cde386b384-1781472923869 + [loading_requirement_container_meta:fae54081-a5fa-4431-9857-86cde386b384-1781472923869] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/create_world_screen_layout.txt b/config/fancymenu/customization/create_world_screen_layout.txt new file mode 100644 index 0000000..344d346 --- /dev/null +++ b/config/fancymenu/customization/create_world_screen_layout.txt @@ -0,0 +1,983 @@ +type = fancymenu_layout + +layout-meta { + identifier = create_world_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785386670363 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:264a4fed-8d88-4691-9fdd-e782cf8ac714-1785386637263] = [groups:][instances:] +} + +menu_background { + instance_identifier = 7be1352a-6902-4ce4-a98b-49ca0a2a9f33-1781545695294 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 5742eefd-86ed-41eb-8b97-11307456201b-1781545695294 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = e8aac376-09f5-4aae-b614-696b0f63e646-1781545695294 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 4ca392da-9291-4fa0-8ccf-3ecff8073e97-1781545695294 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 5530d8e1-5cff-4c40-8aa7-7ef1a8cb7c57-1781545695294 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 5531b569-44f9-4929-9788-e5d1f797e395-1781545695294 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 67ec41ed-fb20-422e-b674-9a5203a0fe22-1781545695294 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 37de24ae-9799-4988-85e0-0717c598bb96-1781545695294 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 39ee02af-812e-4690-9082-529b70cb14e9-1781545695294 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8b3e3613-d604-44fc-a666-eb25862aa546-1781545695294 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = c7c0eb6d-289d-4297-8cf5-c391dbe8e88e-1781545695294 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 889fc553-c68b-4d18-b49c-f243f7e0cb2b-1781545695295 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 8466bb2d-0387-43ed-8739-8a2a66463032-1781545695295 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 6e615e00-9d22-4eda-9125-d345e8dc5953-1781545695295 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 6b9f0a9d-c685-440e-810a-e5275fbc240d-1781545695295 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = a79cecdb-2cfe-41ac-90e7-55cd41ad04db-1781545695295 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 8254905c-8014-4d03-956d-cf93383591f3-1781545695295 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = ecf7bae9-91f4-4272-8dba-8c69c095ebef-1781545695295 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = d76a897d-a74b-49e4-b4ce-673015a8af04-1781545695295 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = 72a89ca2-3d72-4874-b3a3-f78a6ca3d623-1781545695295 + [executable_block:72a89ca2-3d72-4874-b3a3-f78a6ca3d623-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4dc89498-5e1d-45e2-b70f-5086eaa07182-1781545695295 + [loading_requirement_container_meta:4dc89498-5e1d-45e2-b70f-5086eaa07182-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = 396161 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 136 + y = 43 + width = 55 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 6ae2be06-bd72-4b5d-a5b7-8684185e8902-1781545695295 + [loading_requirement_container_meta:6ae2be06-bd72-4b5d-a5b7-8684185e8902-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = f44afda0-4aae-4669-b468-65e0895f7397-1785308802232 + [executable_block:f44afda0-4aae-4669-b468-65e0895f7397-1785308802232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c3737ffb-f5a9-4803-bc74-f5db22482cd8-1785308802232 + [loading_requirement_container_meta:c3737ffb-f5a9-4803-bc74-f5db22482cd8-1785308802232] = [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 + element_type = vanilla_button + instance_identifier = 0 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 0 + y = 0 + width = 480 + height = 24 + stay_on_screen = true + element_loading_requirement_container_identifier = efa2af6e-c2c4-4f35-9620-7bca87df9d1f-1785308802232 + [loading_requirement_container_meta:efa2af6e-c2c4-4f35-9620-7bca87df9d1f-1785308802232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 75b253d0-249f-41e3-8c42-e8c52830d4f7-1781545695295 + [executable_block:75b253d0-249f-41e3-8c42-e8c52830d4f7-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f0dcf16a-9b46-48eb-9b82-1e530cad64ab-1781545695295 + [loading_requirement_container_meta:f0dcf16a-9b46-48eb-9b82-1e530cad64ab-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = difficulty_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 135 + y = 112 + width = 210 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = c03a49fa-baa2-40a9-916f-b9bf1bc3f50b-1781545695295 + [loading_requirement_container_meta:c03a49fa-baa2-40a9-916f-b9bf1bc3f50b-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = ee23b36b-700f-4c70-b250-7feb5713ca04-1781545695295 + [executable_block:ee23b36b-700f-4c70-b250-7feb5713ca04-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 0bbdc7ee-8382-4f36-8f93-49be788c73f9-1781545695295 + [loading_requirement_container_meta:0bbdc7ee-8382-4f36-8f93-49be788c73f9-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = create_world_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 266 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f9a20e39-1ae8-43fb-99a0-486879cce255-1781545695295 + [loading_requirement_container_meta:f9a20e39-1ae8-43fb-99a0-486879cce255-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = fe30eb46-976b-415f-ac45-96e9019f48f1-1781545695295 + [executable_block:fe30eb46-976b-415f-ac45-96e9019f48f1-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b1c34a75-065a-4452-98f9-3d9b8e44005c-1781545695295 + [loading_requirement_container_meta:b1c34a75-065a-4452-98f9-3d9b8e44005c-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = allow_cheats_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 135 + y = 140 + width = 210 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8771b0c6-5634-462c-ae10-1f0a4eaa022d-1781545695295 + [loading_requirement_container_meta:8771b0c6-5634-462c-ae10-1f0a4eaa022d-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = fb08140c-bdc3-4036-acb0-06f0da0251c6-1781545695295 + [executable_block:fb08140c-bdc3-4036-acb0-06f0da0251c6-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d2c48434-b19e-44db-a117-efb7dfaa41b6-1781545695295 + [loading_requirement_container_meta:d2c48434-b19e-44db-a117-efb7dfaa41b6-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = gamemode_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 135 + y = 84 + width = 210 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 191cba65-041e-438a-8e3a-473090ed5bdf-1781545695295 + [loading_requirement_container_meta:191cba65-041e-438a-8e3a-473090ed5bdf-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 8d886c4a-3a88-465c-b880-48dd024b3eae-1781545695295 + [executable_block:8d886c4a-3a88-465c-b880-48dd024b3eae-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = e2fca4a4-3a9f-415e-b054-34f3b1f78b9d-1781545695295 + [loading_requirement_container_meta:e2fca4a4-3a9f-415e-b054-34f3b1f78b9d-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = 396174 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 136 + y = 56 + width = 208 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 36e6b8a6-8a66-4018-b24f-e3369f836083-1781545695295 + [loading_requirement_container_meta:36e6b8a6-8a66-4018-b24f-e3369f836083-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 4e587505-3810-4072-8331-0c22f96391f1-1781545695295 + [executable_block:4e587505-3810-4072-8331-0c22f96391f1-1781545695295][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b180831a-2918-45f9-8885-a3984a6fd37b-1781545695295 + [loading_requirement_container_meta:b180831a-2918-45f9-8885-a3984a6fd37b-1781545695295] = [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 + element_type = vanilla_button + instance_identifier = cancel_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 266 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 55cbcc09-a94d-4a37-928c-0a9bfc5eee00-1781545695295 + [loading_requirement_container_meta:55cbcc09-a94d-4a37-928c-0a9bfc5eee00-1781545695295] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/disconnected_screen_layout.txt b/config/fancymenu/customization/disconnected_screen_layout.txt new file mode 100644 index 0000000..7110bd3 --- /dev/null +++ b/config/fancymenu/customization/disconnected_screen_layout.txt @@ -0,0 +1,1653 @@ +type = fancymenu_layout + +layout-meta { + identifier = disconnected_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785267649511 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:f241de6e-3d97-4e54-a4ab-5e6027573b8a-1785267601498] = [groups:][instances:b3aa255f-c051-41ac-a1c0-a3db766f235f-1781553644999;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:b3aa255f-c051-41ac-a1c0-a3db766f235f-1781553644999] = is_main_server:false +} + +menu_background { + instance_identifier = 17425aab-3a19-48c0-9212-7956e77d57ff-1781525360562 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 34b1d1ff-5618-4ce9-a1c3-0610dcb3ebb4-1781525360562 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 1fd244f3-2944-4e35-b562-795ee6dccda1-1781525360562 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = f0d47648-9799-46ae-9555-23cba8384063-1781525360562 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = f4dfefc5-18c6-49be-9878-842cad1a6a5d-1781525360562 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 4db2c260-db83-48a9-8768-1c8408810bbf-1781525360562 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 5f42b04c-298d-4224-9cf7-affbf1d04546-1781525360562 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 92058396-1659-4774-a04b-9d2f4061b24a-1781525360562 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = fe3ce226-7670-4a60-b94b-1dfc6915869c-1781525360562 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 22ce48d0-295d-45f2-9e2b-834aab9866f3-1781525360562 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 4062f1e9-39a4-44d3-9467-c6f4ee3da0cf-1781525360562 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = d5cfb84e-787c-4197-8eee-4f7761f4cb09-1781525360562 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 88d3f2e3-c8ab-4aa1-8146-a47bd83f5b4f-1781525360562 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 37865dd2-102b-40b8-9eee-083e22b7ca55-1781525360562 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 5e9e5635-9e0b-4f28-9af7-e79b98ff54c4-1781525360562 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = b46b92dc-6b00-4899-880a-73faea9249bc-1781525360562 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 61f8f0e0-35f2-4b0b-98cf-aca811d59f53-1781525360562 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 47665ffc-fd86-4eb7-b041-48ee1bbf319a-1781525360562 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 17de7e58-0f5f-4256-a527-efe1aa564b56-1781525360562 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 1707f01d-5d3c-4a07-a270-2a7a56e1125a-1781538233644 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-centered + x = -239 + y = -55 + width = 469 + height = 55 + stay_on_screen = false + element_loading_requirement_container_identifier = 25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945 + [loading_requirement_container_meta:25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = {"placeholder":"vanillabuttonlabel","values":{"locator":"disconnected_screen:screen_title"}} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = e23ffe3a-9b4a-4dd8-9a4a-ab6e356911c4-1781538233645 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-left + x = 46 + y = -44 + width = 230 + height = 15 + stay_on_screen = true + element_loading_requirement_container_identifier = 3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753 + [loading_requirement_container_meta:3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #F3F3F3FF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + bar_nine_slice = false + background_nine_slice = false + direction = right + progress_for_element_anchor = false + value_mode = percentage + smooth_filling_animation = true + element_type = progress_bar + instance_identifier = f1931274-ee7e-44f7-be51-c1b4cbff76fd-1781538233646 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -92 + y = -10 + width = 182 + height = 5 + stay_on_screen = true + element_loading_requirement_container_identifier = 0663250b-666a-4492-8292-c0118e8c82b6-1781531111470 + [loading_requirement_container_meta:0663250b-666a-4492-8292-c0118e8c82b6-1781531111470] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + bar_nine_slice_border_top = 5 + bar_nine_slice_border_right = 10 + bar_nine_slice_border_bottom = 5 + bar_nine_slice_border_left = 10 + background_nine_slice_border_top = 5 + background_nine_slice_border_right = 10 + background_nine_slice_border_bottom = 5 + background_nine_slice_border_left = 10 + progress_source = 100.0 + bar_color = #CA3636 + background_color = #454647 +} + +element { + element_type = image + instance_identifier = aebb27fe-9858-44b7-8c5c-44cf6c38a658-1781538233647 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-left + x = 11 + y = -44 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813 + [loading_requirement_container_meta:034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/icons/logo_fade.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:42655a26-8492-4d64-a221-a813904ba191-1781535521945][action_type:mimicbutton] = disconnected_screen:back_to_menu_button + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:42655a26-8492-4d64-a221-a813904ba191-1781535521945;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = e1f68973-a44e-456c-abe1-fed4268ba044-1781538233647 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -110 + y = -47 + width = 100 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:9fbeb25a-c405-4c76-966d-c4901e284bdc-1782194336064;] + [loading_requirement:fancymenu_visibility_requirement_is_button_active][requirement_mode:if_not][req_id:9fbeb25a-c405-4c76-966d-c4901e284bdc-1782194336064] = 400531 + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = 5aeeacf4-4b21-44fd-a1be-70d964ccce83-1781538233648 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023 + [loading_requirement_container_meta:f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = da7b0d58-49e0-406b-96e4-e1eba488caaa-1781538233649 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-centered + x = -200 + y = -92 + width = 365 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749 + [loading_requirement_container_meta:5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = ^^^%n%%n%Facing issues? Try to re-connect or contact us on our BuildTheEarth Discord%n%Server or contact the Build Teams directly on their Discord Server! <3 %n%^^^ + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + remove_html_breaks = false + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 2e91aa70-4b1d-441a-a620-a865afd7b8eb-1781538233649 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = da7b0d58-49e0-406b-96e4-e1eba488caaa-1781538233649 + x = 10 + y = -4 + width = 344 + height = 31 + stay_on_screen = true + element_loading_requirement_container_identifier = 1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565 + [loading_requirement_container_meta:1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.8 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:09de74af-9089-46c9-8c5a-5aa11e5cc7f0-1781542250216][action_type:openlink] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%}.invite"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:09de74af-9089-46c9-8c5a-5aa11e5cc7f0-1781542250216;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/discord.png + iconhovered = [source:local]/config/fancymenu/assets/icons/discord.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Go to {%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.name"%n% }%n%}%n%Discord Server + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = 5c92e93c-fd58-4c16-9a4c-55983e7d2b39-1781539565514 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + sticky_anchor = false + anchor_point = bottom-right + x = -233 + y = -47 + width = 30 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:115729ac-3b70-4d0c-8069-3e4bf8f6c598-1781542318988][action_type:openlink] = https://go.buildtheearth.net/dc + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:115729ac-3b70-4d0c-8069-3e4bf8f6c598-1781542318988;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/discord.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/discord_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/discord.png + iconhovered = [source:local]/config/fancymenu/assets/icons/discord.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Go to BuildTheEarth%n%Discord Server + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = ddd4fb38-9b85-4976-bfeb-9264cb1ac806-1781539599201 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-centered + x = 158 + y = -93 + width = 32 + height = 32 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = ^^^%n%%n%{"placeholder":"vanillabuttonlabel","values":{"locator":"disconnected_screen:disconnect_reason"}}%n%^^^ + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = true + remove_html_breaks = false + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 537b1275-2557-41ed-8b59-dbd8ccad95a8-1781539798228 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -237 + y = -29 + width = 412 + height = 71 + stay_on_screen = true + element_loading_requirement_container_identifier = 1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565 + [loading_requirement_container_meta:1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.8 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + interactable = false + source = \n%n%{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.ip"%n% }%n%} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = d2c86cf6-f8bf-4e86-9710-0ecc832e7d65-1781705240316 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = element + anchor_point_element = e23ffe3a-9b4a-4dd8-9a4a-ab6e356911c4-1781538233645 + x = 0 + y = -3 + width = 220 + height = 31 + stay_on_screen = true + element_loading_requirement_container_identifier = 6bf418ba-9664-4420-972a-6ff1512d2f09-1781704264671 + [loading_requirement_container_meta:6bf418ba-9664-4420-972a-6ff1512d2f09-1781704264671] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 0.4 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:42655a26-8492-4d64-a221-a813904ba191-1781535521945][action_type:mimicbutton] = disconnected_screen:400531 + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:42655a26-8492-4d64-a221-a813904ba191-1781535521945;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = acabbdae-fd5e-4c67-b96e-6beae4de7825-1782193515149 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -110 + y = -47 + width = 100 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:e5a04d66-398f-480f-80f6-5ea1dc3a5f97-1782194306167;] + [loading_requirement:fancymenu_visibility_requirement_is_button_active][requirement_mode:if][req_id:e5a04d66-398f-480f-80f6-5ea1dc3a5f97-1782194306167] = 400531 + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:e53dc791-67f8-4bc6-bb2f-8647963df02a-1785262157923][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%}.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:e53dc791-67f8-4bc6-bb2f-8647963df02a-1785262157923;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = 1a656065-42ff-4e0e-be9a-36e4a08abe5c-1785261629012 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -201 + y = -47 + width = 89 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = ec35a9a1-ada9-4ea0-b303-9d1a615b9d91-1781525360563 + [executable_block:ec35a9a1-ada9-4ea0-b303-9d1a615b9d91-1781525360563][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 65494cfe-83cc-47e8-a86b-2621d50df4f8-1781525360563 + [loading_requirement_container_meta:65494cfe-83cc-47e8-a86b-2621d50df4f8-1781525360563] = [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 + element_type = vanilla_button + instance_identifier = screen_title + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = vanilla + x = 159 + y = 115 + width = 161 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 33a8eef6-178d-4b60-9239-20bea32cb490-1781525360563 + [loading_requirement_container_meta:33a8eef6-178d-4b60-9239-20bea32cb490-1781525360563] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 5c9d862c-3937-4e83-85c8-60c327ab3be2-1781525360563 + [executable_block:5c9d862c-3937-4e83-85c8-60c327ab3be2-1781525360563][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d89c9fad-2eef-4379-943f-7877005b9605-1781525360563 + [loading_requirement_container_meta:d89c9fad-2eef-4379-943f-7877005b9605-1781525360563] = [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 + element_type = vanilla_button + instance_identifier = disconnect_reason + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = mid-centered + x = -160 + y = -35 + width = 213 + height = 60 + stay_on_screen = true + element_loading_requirement_container_identifier = e958af16-294d-4c06-9e1e-886863a05152-1781525360563 + [loading_requirement_container_meta:e958af16-294d-4c06-9e1e-886863a05152-1781525360563] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 99f51bcc-3406-49eb-8e1d-1a212feb0ca2-1781525360563 + [executable_block:99f51bcc-3406-49eb-8e1d-1a212feb0ca2-1781525360563][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 293c0ba4-d942-4c7a-b34c-d83d661c8b0a-1781525360563 + [loading_requirement_container_meta:293c0ba4-d942-4c7a-b34c-d83d661c8b0a-1781525360563] = [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 + element_type = vanilla_button + instance_identifier = back_to_menu_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 165 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 1284c76b-1012-400a-b79b-b5ee9d8baec1-1781525360563 + [loading_requirement_container_meta:1284c76b-1012-400a-b79b-b5ee9d8baec1-1781525360563] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/disconnected_screen_layout_1.txt b/config/fancymenu/customization/disconnected_screen_layout_1.txt new file mode 100644 index 0000000..d122c54 --- /dev/null +++ b/config/fancymenu/customization/disconnected_screen_layout_1.txt @@ -0,0 +1,1571 @@ +type = fancymenu_layout + +layout-meta { + identifier = disconnected_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785268095558 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:240ee3d2-81fe-4fe4-8f9a-42cdf4623766-1785268087043] = [groups:][instances:0774f1dd-ff43-4230-809d-7e2656a07c3d-1781553607438;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:0774f1dd-ff43-4230-809d-7e2656a07c3d-1781553607438] = is_main_server:true +} + +menu_background { + instance_identifier = 86d48974-16f3-40e3-ac66-3e55d0a995f6-1781553446835 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = a96b8505-d9dc-424b-8823-37aa309fb4ed-1781553446835 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = a1d1ec52-dc08-4662-b4ac-09d59dbb95aa-1781553446835 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 2e60e821-e232-4a91-907a-2f9b388e4a55-1781553446835 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 9a64d10b-2c7d-475e-93c9-d987420bd2b5-1781553446835 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 575322e5-5cd9-44c6-b3fb-ebfd983c4ea2-1781553446835 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = aebaf108-6cff-434b-acb5-a4d9abea0088-1781553446835 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 904ba298-01dc-4d24-b67b-ce79427c5e54-1781553446835 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = b229765f-0a48-45dd-98f5-9fd43d947f46-1781553446836 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 2db7cdbe-e4c6-4960-aef6-e43d5647c996-1781553446836 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 6c97a1f4-fd7b-4455-be06-5c9dd2d5a2e9-1781553446836 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 87118335-711a-48ab-9682-009af4424282-1781553446836 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = b73c53e8-ccc8-422c-bcd7-6774ca616387-1781553446836 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 918404ef-1cf4-42e7-8a52-03c2d625454e-1781553446836 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = d1319004-d29a-4d56-8649-91fbd2bd3549-1781553446836 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 044d7681-1765-40e9-bf90-9b6fbd3f3a21-1781553446836 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = ab8b5770-049f-4d71-a552-d28ca5ee91d1-1781553446836 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 7c299869-fe80-4d23-aa78-d5d4fba50217-1781553446836 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 3ce82820-945e-464c-b898-8247a9da554b-1781553446836 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 5717a8af-c2e0-44a6-86a2-8f6c899cd679-1781553456413 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-centered + x = -239 + y = -55 + width = 469 + height = 55 + stay_on_screen = false + element_loading_requirement_container_identifier = 25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945 + [loading_requirement_container_meta:25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = {"placeholder":"vanillabuttonlabel","values":{"locator":"disconnected_screen:screen_title"}} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 3d57f144-5dcd-444c-a65f-6b75cd067cba-1781553456414 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-left + x = 46 + y = -44 + width = 230 + height = 15 + stay_on_screen = true + element_loading_requirement_container_identifier = 3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753 + [loading_requirement_container_meta:3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #F3F3F3FF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + bar_nine_slice = false + background_nine_slice = false + direction = right + progress_for_element_anchor = false + value_mode = percentage + smooth_filling_animation = true + element_type = progress_bar + instance_identifier = e2e719af-040d-4ccb-85f9-0612bedfd1b3-1781553456415 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -92 + y = -10 + width = 182 + height = 5 + stay_on_screen = true + element_loading_requirement_container_identifier = 0663250b-666a-4492-8292-c0118e8c82b6-1781531111470 + [loading_requirement_container_meta:0663250b-666a-4492-8292-c0118e8c82b6-1781531111470] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + bar_nine_slice_border_top = 5 + bar_nine_slice_border_right = 10 + bar_nine_slice_border_bottom = 5 + bar_nine_slice_border_left = 10 + background_nine_slice_border_top = 5 + background_nine_slice_border_right = 10 + background_nine_slice_border_bottom = 5 + background_nine_slice_border_left = 10 + progress_source = 100.0 + bar_color = #CA3636 + background_color = #454647 +} + +element { + element_type = image + instance_identifier = f502b37b-4108-484a-8774-2454449021ee-1781553456416 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-left + x = 11 + y = -44 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813 + [loading_requirement_container_meta:034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/icons/logo_fade.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = d56d831b-5866-45dc-97e1-51a87de86e6f-1781553456417 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023 + [loading_requirement_container_meta:f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = dc759a93-7a11-4e21-a6ee-8be4ff4372fe-1781553456418 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -185 + y = -92 + width = 365 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749 + [loading_requirement_container_meta:5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = ^^^%n%%n%Facing issues? Try to contact us on our Main BTE Discord Server!%n%Links down below <3 %n%^^^ + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + remove_html_breaks = false + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 4abdc2a5-f998-4e02-89e0-a846c5f847aa-1781553456418 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = dc759a93-7a11-4e21-a6ee-8be4ff4372fe-1781553456418 + x = 10 + y = -4 + width = 345 + height = 31 + stay_on_screen = true + element_loading_requirement_container_identifier = 1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565 + [loading_requirement_container_meta:1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.8 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:115729ac-3b70-4d0c-8069-3e4bf8f6c598-1781542318988][action_type:openlink] = https://go.buildtheearth.net/dc + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:115729ac-3b70-4d0c-8069-3e4bf8f6c598-1781542318988;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/discord.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/discord_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/discord.png + iconhovered = [source:local]/config/fancymenu/assets/icons/discord.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Go to BuildTheEarth%n%Discord Server + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = 02b6b909-417c-4fe1-8e0b-2695c4cfe2a8-1781553456419 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -233 + y = -47 + width = 30 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = ^^^%n%%n%{"placeholder":"vanillabuttonlabel","values":{"locator":"disconnected_screen:disconnect_reason"}}%n%^^^ + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = true + remove_html_breaks = false + code_block_single_color = #737373FF + code_block_multi_color = #565656FF + headline_line_color = #A9A9A9FF + separation_line_color = #A9A9A9FF + hyperlink_color = #0771FCFF + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = ed96a49c-98e0-45a5-9c1a-f3b3d7410452-1781553456420 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -237 + y = -29 + width = 412 + height = 71 + stay_on_screen = true + element_loading_requirement_container_identifier = 1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565 + [loading_requirement_container_meta:1ba413cc-3823-42c7-b471-b37bebba072d-1781536894565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.8 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + interactable = false + source = \n%n%{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.ip"%n% }%n%} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 8e4cfc3a-5b39-466c-9dd2-0a70a83697c5-1781705493127 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = element + anchor_point_element = 3d57f144-5dcd-444c-a65f-6b75cd067cba-1781553456414 + x = 0 + y = -3 + width = 220 + height = 31 + stay_on_screen = true + element_loading_requirement_container_identifier = 6bf418ba-9664-4420-972a-6ff1512d2f09-1781704264671 + [loading_requirement_container_meta:6bf418ba-9664-4420-972a-6ff1512d2f09-1781704264671] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 0.4 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 0.75 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:42655a26-8492-4d64-a221-a813904ba191-1781535521945][action_type:mimicbutton] = disconnected_screen:back_to_menu_button + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:42655a26-8492-4d64-a221-a813904ba191-1781535521945;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = 1e7774d4-8bf9-4106-9c19-d89e31f9318d-1785261458093 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -110 + y = -47 + width = 100 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:9fbeb25a-c405-4c76-966d-c4901e284bdc-1782194336064;] + [loading_requirement:fancymenu_visibility_requirement_is_button_active][requirement_mode:if_not][req_id:9fbeb25a-c405-4c76-966d-c4901e284bdc-1782194336064] = 400531 + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:42655a26-8492-4d64-a221-a813904ba191-1781535521945][action_type:mimicbutton] = disconnected_screen:400531 + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:42655a26-8492-4d64-a221-a813904ba191-1781535521945;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/back_to.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = ebe1f51e-abd7-43c8-85a9-631db3efb875-1785261572426 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -110 + y = -47 + width = 100 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:e5a04d66-398f-480f-80f6-5ea1dc3a5f97-1782194306167;] + [loading_requirement:fancymenu_visibility_requirement_is_button_active][requirement_mode:if][req_id:e5a04d66-398f-480f-80f6-5ea1dc3a5f97-1782194306167] = 400531 + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 186006f4-be45-4bf8-b817-783124013bd1-1781535181215 + [executable_action_instance:e53dc791-67f8-4bc6-bb2f-8647963df02a-1785262157923][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%}.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_block:186006f4-be45-4bf8-b817-783124013bd1-1781535181215][type:generic] = [executables:e53dc791-67f8-4bc6-bb2f-8647963df02a-1785262157923;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png + iconhovered = [source:local]/config/fancymenu/assets/labels/connected_disconnected_layout/reconnect.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215 + [loading_requirement_container_meta:eac576c9-c2f1-4a9c-bde4-5dcac6864fa7-1781535181215] = [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 + element_type = custom_button + instance_identifier = d83ab397-2dbb-4d00-8659-f2ce4074e5b5-1785263126139 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = bottom-right + x = -201 + y = -47 + width = 89 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215 + [loading_requirement_container_meta:2e1280c0-65a1-4f35-8a15-15bca657effd-1781535181215] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 2924711c-e93f-43c2-80d8-f5c1313591d8-1781553446837 + [executable_block:2924711c-e93f-43c2-80d8-f5c1313591d8-1781553446837][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4962b274-62da-4d04-98aa-ea67f1db6eba-1781553446837 + [loading_requirement_container_meta:4962b274-62da-4d04-98aa-ea67f1db6eba-1781553446837] = [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 + element_type = vanilla_button + instance_identifier = back_to_menu_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 165 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 6f7ec13b-0777-4399-a2da-d8f9666aefd5-1781553446837 + [loading_requirement_container_meta:6f7ec13b-0777-4399-a2da-d8f9666aefd5-1781553446837] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = df880d9b-5ccd-4329-8670-2f8918ac2e5d-1781553446837 + [executable_block:df880d9b-5ccd-4329-8670-2f8918ac2e5d-1781553446837][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6c95bbb7-6591-42c8-b938-b66de8035ab7-1781553446837 + [loading_requirement_container_meta:6c95bbb7-6591-42c8-b938-b66de8035ab7-1781553446837] = [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 + element_type = vanilla_button + instance_identifier = disconnect_reason + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 207 + y = 144 + width = 66 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 4a24e6a6-adfb-48b5-b7eb-605488fb08db-1781553446837 + [loading_requirement_container_meta:4a24e6a6-adfb-48b5-b7eb-605488fb08db-1781553446837] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = d658381a-cd21-4bbc-9145-70a892df53e4-1781553446836 + [executable_block:d658381a-cd21-4bbc-9145-70a892df53e4-1781553446836][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b2ae2550-b76e-47ef-a584-e1616f95ee50-1781553446836 + [loading_requirement_container_meta:b2ae2550-b76e-47ef-a584-e1616f95ee50-1781553446836] = [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 + element_type = vanilla_button + instance_identifier = screen_title + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 159 + y = 115 + width = 161 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = f651926e-f548-46a3-aa3c-41cfc5405b50-1781553446836 + [loading_requirement_container_meta:f651926e-f548-46a3-aa3c-41cfc5405b50-1781553446836] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/drippy_loading_overlay_layout.txt b/config/fancymenu/customization/drippy_loading_overlay_layout.txt new file mode 100644 index 0000000..098d6a5 --- /dev/null +++ b/config/fancymenu/customization/drippy_loading_overlay_layout.txt @@ -0,0 +1,568 @@ +type = fancymenu_layout + +layout-meta { + identifier = drippy_loading_overlay + render_custom_elements_behind_vanilla = false + last_edited_time = 1785373050708 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:71402e0e-f582-4982-bd17-94e02a0e6c46-1785372822333] = [groups:][instances:] +} + +menu_background { + instance_identifier = 13b81d98-5fdd-4183-8a64-88b6e354561e-1781211331451 + background_type = color_fancymenu + show_background = true + color = #161616FF +} + +menu_background { + instance_identifier = ea9826ac-c03c-40b9-9ea7-63c491bb6b74-1781211331451 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = d8654dd1-86db-43bd-b17d-4c0d4985c5fa-1781211331451 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = e27330b6-1078-4226-9491-e26c998814d2-1781211331451 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = e47728c9-4ecd-4994-96b2-820a32495fbd-1781211331451 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = b34e0383-9a17-4d53-b35a-cf89b05832ad-1781211331451 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 9087a10c-7034-4ab2-9734-7f88c55fad2a-1781211331451 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = cde86130-480e-42b2-9ab6-d8649e8edb39-1781211331451 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 77904677-aa1e-4c16-8a29-cb059fcea214-1781211331451 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = c2408643-390e-4b7a-a571-94de9e00fe44-1781211331451 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 6957859a-64fe-4b79-ac3a-215b01c61a66-1781211331451 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 2dd5c172-2a20-44c6-b3be-8cc944d3acd2-1781211331451 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = df83f730-1f9c-46b8-8d49-33b13d94066b-1781211331451 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = cc6c04ed-6e40-4ac5-90fc-20183ff43f14-1781211331451 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 0455d142-9379-47c9-b549-926f9c6c9a53-1781211331451 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 86e55c4a-c292-47e9-9705-49de429d6acc-1781211331451 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 523a1b54-4663-4eda-82a7-3d4cbfed213c-1781211331451 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = a3163a3a-e6d9-4e87-871a-ebacb826fa78-1781211331451 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = bef0b013-408b-478d-bf70-a34fa3cf12bb-1781211331451 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { + element_type = image + instance_identifier = a96c2dd4-20d0-4979-a1ae-42515b40bb75-1781211532082 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + sticky_anchor = false + anchor_point = mid-centered + x = -50 + y = -93 + width = 100 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 1a592b67-c4c9-45ce-ac8b-47000a71dda0-1781211532082 + [loading_requirement_container_meta:1a592b67-c4c9-45ce-ac8b-47000a71dda0-1781211532082] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/icons/logo.gif + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +vanilla_button { + button_element_executable_block_identifier = 329215df-d55a-44a5-be0e-0667f1e04c05-1781211331452 + [executable_block:329215df-d55a-44a5-be0e-0667f1e04c05-1781211331452][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 45f70e68-cfbf-4971-9fdf-2b1b8b61d180-1781211331452 + [loading_requirement_container_meta:45f70e68-cfbf-4971-9fdf-2b1b8b61d180-1781211331452] = [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 + element_type = vanilla_button + instance_identifier = progress_bar + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = mid-centered + x = -189 + y = 88 + width = 380 + height = 15 + stay_on_screen = true + element_loading_requirement_container_identifier = 8fe64169-0186-46b0-94e5-05aac31d2f7c-1781211331452 + [loading_requirement_container_meta:8fe64169-0186-46b0-94e5-05aac31d2f7c-1781211331452] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 9a9c1629-a494-4dcf-b8b6-04ed74c0bedd-1781211331452 + [executable_block:9a9c1629-a494-4dcf-b8b6-04ed74c0bedd-1781211331452][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 50836aea-348a-4c3c-bda2-98b8e61e7529-1781211331452 + [loading_requirement_container_meta:50836aea-348a-4c3c-bda2-98b8e61e7529-1781211331452] = [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 + element_type = vanilla_button + instance_identifier = mojang_logo + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = mid-centered + x = -182 + y = -45 + width = 364 + height = 90 + stay_on_screen = true + element_loading_requirement_container_identifier = bcc1ce2e-8bf6-4fb2-8c55-d92b78ba0a1f-1781211331452 + [loading_requirement_container_meta:bcc1ce2e-8bf6-4fb2-8c55-d92b78ba0a1f-1781211331452] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/generic_dirt_message_screen_layout.txt b/config/fancymenu/customization/generic_dirt_message_screen_layout.txt new file mode 100644 index 0000000..a6652d1 --- /dev/null +++ b/config/fancymenu/customization/generic_dirt_message_screen_layout.txt @@ -0,0 +1,638 @@ +type = fancymenu_layout + +layout-meta { + identifier = generic_dirt_message_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781709490289 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:6f98f7c4-f070-49b9-9d6d-057dd2dfaf97-1781709488410] = [groups:][instances:] +} + +menu_background { + instance_identifier = f48c58aa-8099-4278-81b2-2b80270b1e0a-1781473026389 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = cc71bb8a-d33b-43fd-a4e9-8837fb95cb92-1781473026389 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = d3bb805d-69fd-4d97-bb09-6b0daa865dfe-1781473026389 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 300af015-74c3-43c5-9412-1fd13458b584-1781473026389 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = e0a7a3cd-9692-43f7-9f4f-b8836f63cd57-1781473026389 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = c7ff3991-ac9e-41a0-9c41-79a0d8998ded-1781473026389 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = a76563bb-3780-4a55-8383-66620a16041a-1781473026389 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 1d38218c-4d59-4bc7-a87b-cea22c24a6ba-1781473026389 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 5d45273b-0a6d-41b6-b281-699728fd7ed9-1781473026389 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 465b7af2-8361-4f17-b894-a6af709f10d8-1781473026389 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 1d32acf4-bb07-4407-8826-1e25721c19a5-1781473026389 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 952c9a3f-cae8-4e58-ac6e-4319b9226b41-1781473026389 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 5b314fe2-80b9-4358-9cc2-5ea8f3a652e3-1781473026390 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 46bbde0a-20c4-4307-8460-769cd999a76d-1781473026390 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 9ce73946-014d-46f2-bda6-6e9bcd0eea5b-1781473026390 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = f7649ead-98b1-4656-85a9-377289db1dca-1781473026390 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = ee399099-3e4a-411d-9dec-a8491db7749f-1781473026390 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 8bf9bdf2-ea55-44f4-b927-8262a7800568-1781473026390 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 6b3de4b1-d9da-4c39-ad78-30157c8b61a9-1781473026390 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 19d96a06-a3a0-4f72-99af-522ce73dad50-1781545445864 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023 + [loading_requirement_container_meta:f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = b7508b53-ab55-4fbc-8134-3ed2cdf82968-1781545445866 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = mid-centered + x = -135 + y = -5 + width = 270 + height = 33 + stay_on_screen = true + element_loading_requirement_container_identifier = 5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749 + [loading_requirement_container_meta:5a5fd26a-2f55-42ac-bd7c-9620a6b01558-1781537246749] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = ^^^%n%{"placeholder":"vanillabuttonlabel","values":{"locator":"generic_dirt_message_screen:message"}}%n%^^^ + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = e361cce7-e6a8-4bec-a691-b118a9d668ec-1781544768317 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = mid-centered + x = -124 + y = 5 + width = 248 + height = 14 + stay_on_screen = true + element_loading_requirement_container_identifier = df629458-55fe-4100-8a25-17df8b916ded-1781544768317 + [loading_requirement_container_meta:df629458-55fe-4100-8a25-17df8b916ded-1781544768317] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +vanilla_button { + button_element_executable_block_identifier = 063b3107-3bae-4d0b-82b0-4850f275c259-1781473026390 + [executable_block:063b3107-3bae-4d0b-82b0-4850f275c259-1781473026390][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 70ef2a2b-2322-4a56-975d-66c22e50f908-1781473026390 + [loading_requirement_container_meta:70ef2a2b-2322-4a56-975d-66c22e50f908-1781473026390] = [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 + element_type = vanilla_button + instance_identifier = message + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = mid-centered + x = -125 + y = -75 + width = 251 + height = 33 + stay_on_screen = true + element_loading_requirement_container_identifier = e25c1121-67b7-4a04-b9b0-f9698613a0c2-1781473026390 + [loading_requirement_container_meta:e25c1121-67b7-4a04-b9b0-f9698613a0c2-1781473026390] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/introduction_screen_layout.txt b/config/fancymenu/customization/introduction_screen_layout.txt new file mode 100644 index 0000000..fe85989 --- /dev/null +++ b/config/fancymenu/customization/introduction_screen_layout.txt @@ -0,0 +1,2528 @@ +type = fancymenu_layout + +layout-meta { + identifier = title_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785386376062 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:65fe51ff-01e2-429f-8949-500b573e5bc1-1785386344581] = [groups:][instances:2e23c335-ebe1-4523-a320-515bc73d5209-1781454196032;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:2e23c335-ebe1-4523-a320-515bc73d5209-1781454196032] = is_first_time:true +} + +menu_background { + instance_identifier = 89245a32-cd63-400b-bd54-1f287fa3fbd0-1781454178603 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 3863344a-5b5c-4c7e-bfc8-63cbdbeabad4-1781454178604 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = f0f35e8c-e55d-48b4-bc67-f8ac282303b7-1781454178604 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 516cff12-62eb-47bc-8f90-016582179af1-1781454178604 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 56f3e4b7-9d4e-4a73-a3bb-4bcacd5db3be-1781454178604 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 94c2a21e-d7c5-4919-bc35-1dbd502569c3-1781454178604 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 820e168b-a543-41d2-8a50-9a4d59074f55-1781454178604 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = d58351e0-5b45-42cd-9c57-3923a29b3f3c-1781454178604 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 2b974b08-ed54-42e9-959b-2bc5a7668f57-1781454178604 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = de35c939-9e66-43e2-9473-0fe503423dbc-1781454178604 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 272cf374-20d5-4117-8e5b-580a155a383d-1781454178604 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 2b9c86bc-7721-4f0d-a5b4-842a53562881-1781454178604 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 38aeddcb-5186-4a66-be0e-d30b501394ff-1781454178604 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 115dd98d-1527-48d5-b4d0-95eb03767113-1781454178604 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 08e47b7e-29ad-45f8-ac11-5395e783ec2b-1781454178605 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 8e214580-2aa8-4966-980b-6280acfe890c-1781454178605 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 89f226c7-f316-414d-b08b-ef210e8a5f4d-1781454178605 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = bb034a51-8b04-4218-b4a9-b94c88c28ddf-1781454178605 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 07d9e64a-4f04-49bd-8a6c-9406b973b3f0-1781454178605 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + element_type = shape + instance_identifier = c4911229-0f5a-444d-a2af-8d6280632ce7-1781454620268 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -50 + y = -60 + width = 100 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = c2c42db9-804e-49b5-94b2-2de914f7d971-1781454620268 + [loading_requirement_container_meta:c2c42db9-804e-49b5-94b2-2de914f7d971-1781454620268] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = true + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = true + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + color = #000000A1 + blur_enabled = true + blur_radius = 3.0 + corner_radius_top_left = 0.0 + corner_radius_top_right = 0.0 + corner_radius_bottom_right = 0.0 + corner_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = 61df8647-a899-46e6-8997-617462c8f4c1-1781454482579 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = top-centered + x = -90 + y = 12 + width = 180 + height = 30 + stay_on_screen = true + element_loading_requirement_container_identifier = 2fc91305-7291-40b9-92ce-5d90f46c235b-1781454482579 + [loading_requirement_container_meta:2fc91305-7291-40b9-92ce-5d90f46c235b-1781454482579] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = true + source = %n%{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/introduction.json",%n% "json_path": "$.content[{"placeholder":"getvariable","values":{"name":"intro_pages"}}]"%n% }%n%} + source_mode = direct + shadow = true + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 2c6e4c6a-62c1-40f5-b6d3-83ba64e4b36a-1781568334015 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -215 + y = -92 + width = 430 + height = 195 + stay_on_screen = true + element_loading_requirement_container_identifier = 8b5d3715-f705-4f21-8f83-91bc4d9539dc-1781568334015 + [loading_requirement_container_meta:8b5d3715-f705-4f21-8f83-91bc4d9539dc-1781568334015] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + grabber_color_normal = #FFFFFF6F + grabber_color_hover = #FFFFFF82 + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:0e63b750-1705-40bd-b1f8-f5b41a291a59-1781569801670][action_type:set_variable] = intro_pages:{"placeholder":"calc","values":{"decimal":"false","expression":"{"placeholder":"getvariable","values":{"name":"intro_pages"}}-1"}} + [executable_action_instance:14c18aa5-8505-4eef-8c3a-a9209061ef1d-1781575016784][action_type:set_variable] = is_first_page:true + [executable_block:bdd1113e-6217-4d26-bdc4-aa64a467ef44-1781575004831][type:if] = [executables:14c18aa5-8505-4eef-8c3a-a9209061ef1d-1781575016784;] + [if_executable_block_body:bdd1113e-6217-4d26-bdc4-aa64a467ef44-1781575004831] = 1b69427a-8976-40f0-a474-aa4ae1a8c347-1781574947395 + [loading_requirement_container_meta:1b69427a-8976-40f0-a474-aa4ae1a8c347-1781574947395] = [groups:][instances:9a2e60cc-ce4c-4873-b74a-658cce254bee-1781574949165;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:9a2e60cc-ce4c-4873-b74a-658cce254bee-1781574949165] = intro_pages:0 + [if_executable_block_collapsed:bdd1113e-6217-4d26-bdc4-aa64a467ef44-1781575004831] = false + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:0e63b750-1705-40bd-b1f8-f5b41a291a59-1781569801670;bdd1113e-6217-4d26-bdc4-aa64a467ef44-1781575004831;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_back.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = d031abfd-6430-4b77-8bd4-1c46ceb51ed1-1781455165689 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 18b1d554-dc68-46fc-8a74-095ca8d0f312-1781455267912 + x = -71 + y = 0 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:a4e2cbcc-d359-40ef-aec0-fed7b187e9e4-1781575219776;524b331c-75cf-488a-a7d7-6993322b33cb-1781575291875;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:a4e2cbcc-d359-40ef-aec0-fed7b187e9e4-1781575219776] = is_first_page:false + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:524b331c-75cf-488a-a7d7-6993322b33cb-1781575291875] = is_last_page:false + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:74c40102-596e-4031-81d9-59b43d601501-1781490035916][action_type:set_variable] = is_first_time:false + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:74c40102-596e-4031-81d9-59b43d601501-1781490035916;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_skip.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_skip.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = 18b1d554-dc68-46fc-8a74-095ca8d0f312-1781455267912 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-centered + x = -35 + y = -29 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:9095b8c4-aceb-461d-a91f-16a2d2a27424-1781575315960;7ff56919-3af0-406b-8cd0-f9b1ebc2120a-1781575327236;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:9095b8c4-aceb-461d-a91f-16a2d2a27424-1781575315960] = is_first_page:false + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:7ff56919-3af0-406b-8cd0-f9b1ebc2120a-1781575327236] = is_last_page:false + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:7eff371b-7aa9-40c1-bf0b-2d54f1aa74b6-1781569315133][action_type:set_variable] = intro_pages:{"placeholder":"calc","values":{"decimal":"false","expression":"{"placeholder":"getvariable","values":{"name":"intro_pages"}}+1"}} + [executable_action_instance:eaae38e0-abf9-403b-8d90-2fb656250fbc-1781575421174][action_type:set_variable] = is_last_page:true + [executable_block:953d7a98-b500-497c-9e02-dfc65e37a93b-1781575396496][type:if] = [executables:eaae38e0-abf9-403b-8d90-2fb656250fbc-1781575421174;] + [if_executable_block_body:953d7a98-b500-497c-9e02-dfc65e37a93b-1781575396496] = 2fbe9b1d-8a6b-4135-96ee-0abdbd5fdd74-1781575378989 + [loading_requirement_container_meta:2fbe9b1d-8a6b-4135-96ee-0abdbd5fdd74-1781575378989] = [groups:][instances:030d8a98-f899-44d0-83ab-e4ede0d6c398-1781575381194;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:030d8a98-f899-44d0-83ab-e4ede0d6c398-1781575381194] = intro_pages:7 + [if_executable_block_collapsed:953d7a98-b500-497c-9e02-dfc65e37a93b-1781575396496] = false + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:7eff371b-7aa9-40c1-bf0b-2d54f1aa74b6-1781569315133;953d7a98-b500-497c-9e02-dfc65e37a93b-1781575396496;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_next.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_next.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = 723eca29-cc06-4f08-837e-363dcfa604fd-1781455295159 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 18b1d554-dc68-46fc-8a74-095ca8d0f312-1781455267912 + x = 71 + y = 0 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:169438f2-698c-4fb7-92d4-8920b4d0c3f0-1781575349662;6c8b1a64-e738-4357-8515-38d9a0872658-1781575358451;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:169438f2-698c-4fb7-92d4-8920b4d0c3f0-1781575349662] = is_first_page:false + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:6c8b1a64-e738-4357-8515-38d9a0872658-1781575358451] = is_last_page:false + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:74c40102-596e-4031-81d9-59b43d601501-1781490035916][action_type:set_variable] = is_first_time:false + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:74c40102-596e-4031-81d9-59b43d601501-1781490035916;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_skip.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_skip.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = 3195d4bf-6b4c-4736-822f-a99960943d63-1781574380334 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-centered + x = -106 + y = -29 + width = 105 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:5b3bfd7c-fa26-41da-a603-1a508f5bf516-1781574700683;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:5b3bfd7c-fa26-41da-a603-1a508f5bf516-1781574700683] = is_first_page:true + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:7eff371b-7aa9-40c1-bf0b-2d54f1aa74b6-1781569315133][action_type:set_variable] = intro_pages:{"placeholder":"calc","values":{"decimal":"false","expression":"{"placeholder":"getvariable","values":{"name":"intro_pages"}}+1"}} + [executable_action_instance:bcbcabe5-304b-4028-b16a-dfe37b485baf-1781575092244][action_type:set_variable] = is_first_page:false + [executable_block:ca02f4fe-2215-4359-a015-2c57c525118c-1781575086061][type:if] = [executables:bcbcabe5-304b-4028-b16a-dfe37b485baf-1781575092244;] + [if_executable_block_body:ca02f4fe-2215-4359-a015-2c57c525118c-1781575086061] = cd556628-345f-48c9-a0da-fbd7073718cd-1781575063648 + [loading_requirement_container_meta:cd556628-345f-48c9-a0da-fbd7073718cd-1781575063648] = [groups:][instances:b6fd5720-5ac6-4628-93e5-03cfd59374e4-1781575065965;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:b6fd5720-5ac6-4628-93e5-03cfd59374e4-1781575065965] = intro_pages:1 + [if_executable_block_collapsed:ca02f4fe-2215-4359-a015-2c57c525118c-1781575086061] = false + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:7eff371b-7aa9-40c1-bf0b-2d54f1aa74b6-1781569315133;ca02f4fe-2215-4359-a015-2c57c525118c-1781575086061;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_next.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_next.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = 653be3f6-efdd-4973-9296-cbea4c51761d-1781574409116 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 18b1d554-dc68-46fc-8a74-095ca8d0f312-1781455267912 + x = 35 + y = 0 + width = 106 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:d4a2a2b7-690b-4be5-9192-f74cc47330c4-1781574549718;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:d4a2a2b7-690b-4be5-9192-f74cc47330c4-1781574549718] = is_first_page:true + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:fbb7209b-cd83-48cf-b086-36fecf0269f9-1781575988860][action_type:set_variable] = is_first_time:false + [executable_action_instance:b4259fa4-765b-4ebe-9659-b3af2c69d6ad-1781576009282][action_type:set_variable] = is_last_page:false + [executable_action_instance:be53755c-f3ad-476f-91d3-7e592420f85d-1781576025587][action_type:set_variable] = intro_pages:0 + [executable_action_instance:fa4d788a-aec9-4277-800b-865f29d742cb-1781576044988][action_type:set_variable] = is_first_page:true + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:fbb7209b-cd83-48cf-b086-36fecf0269f9-1781575988860;b4259fa4-765b-4ebe-9659-b3af2c69d6ad-1781576009282;be53755c-f3ad-476f-91d3-7e592420f85d-1781576025587;fa4d788a-aec9-4277-800b-865f29d742cb-1781576044988;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_done.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_done.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = bb76b4cc-8377-4a0c-9bcb-049ab7e23dfc-1781574349722 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 18b1d554-dc68-46fc-8a74-095ca8d0f312-1781455267912 + x = 35 + y = 0 + width = 106 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:02f71c4a-e8f0-435d-b82a-1ae1a04b7468-1781575610863;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:02f71c4a-e8f0-435d-b82a-1ae1a04b7468-1781575610863] = is_last_page:true + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:7eff371b-7aa9-40c1-bf0b-2d54f1aa74b6-1781569315133][action_type:set_variable] = intro_pages:{"placeholder":"calc","values":{"decimal":"false","expression":"{"placeholder":"getvariable","values":{"name":"intro_pages"}}-1"}} + [executable_action_instance:c353a88a-08aa-44dd-8621-6eee421fb746-1781575804227][action_type:set_variable] = is_last_page:false + [executable_block:219d1d10-486f-41ad-9381-86822933ce96-1781575793387][type:if] = [executables:c353a88a-08aa-44dd-8621-6eee421fb746-1781575804227;] + [if_executable_block_body:219d1d10-486f-41ad-9381-86822933ce96-1781575793387] = a80b43df-54dc-48b4-bc44-aa68cd7d1e34-1781575765400 + [loading_requirement_container_meta:a80b43df-54dc-48b4-bc44-aa68cd7d1e34-1781575765400] = [groups:][instances:e3a735fb-dfea-4c76-8d12-51a21f843a2e-1781575768177;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:e3a735fb-dfea-4c76-8d12-51a21f843a2e-1781575768177] = intro_pages:6 + [if_executable_block_collapsed:219d1d10-486f-41ad-9381-86822933ce96-1781575793387] = false + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:7eff371b-7aa9-40c1-bf0b-2d54f1aa74b6-1781569315133;219d1d10-486f-41ad-9381-86822933ce96-1781575793387;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/intro/intro_back.png + iconhovered = [source:local]/config/fancymenu/assets/intro/intro_back.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = 8e3211c6-cce4-4730-a1f1-935ca946ff32-1781575581245 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 18b1d554-dc68-46fc-8a74-095ca8d0f312-1781455267912 + x = -71 + y = 0 + width = 105 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:86b48f5f-a1cf-4a92-9bb6-5165d579a0aa-1781575735445;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:86b48f5f-a1cf-4a92-9bb6-5165d579a0aa-1781575735445] = is_last_page:true + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + interactable = false + source = |||%n%{%n% "placeholder": "calc",%n% "values": {%n% "decimal": "false",%n% "expression": "{"placeholder": "getvariable","values": {"name": "intro_pages"}}+1"%n% }%n%} / 8%n%||| + source_mode = direct + shadow = true + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 4d6d422d-f982-42c9-bb8b-755ded05cc9f-1781576684624 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-centered + x = 133 + y = 105 + width = 82 + height = 15 + stay_on_screen = true + element_loading_requirement_container_identifier = a6a6cbe5-1e61-4507-8a04-407e912110cd-1781576684624 + [loading_requirement_container_meta:a6a6cbe5-1e61-4507-8a04-407e912110cd-1781576684624] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +vanilla_button { + button_element_executable_block_identifier = 9201a822-a811-41a6-9369-83851111c6c8-1785269643872 + [executable_block:9201a822-a811-41a6-9369-83851111c6c8-1785269643872][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 437ac47a-0185-43bf-a42c-e7b28eb2f87f-1785269643872 + [loading_requirement_container_meta:437ac47a-0185-43bf-a42c-e7b28eb2f87f-1785269643872] = [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 + element_type = vanilla_button + instance_identifier = 604358 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 344 + y = 181 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 153d6560-a1d6-484a-82b6-9b941684d638-1785269643872 + [loading_requirement_container_meta:153d6560-a1d6-484a-82b6-9b941684d638-1785269643872] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 6b050243-cd67-414e-a443-02a8fbbcc718-1781454178608 + [executable_block:6b050243-cd67-414e-a443-02a8fbbcc718-1781454178608][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a88c16a8-abb9-4681-b137-aae71a115183-1781454178608 + [loading_requirement_container_meta:a88c16a8-abb9-4681-b137-aae71a115183-1781454178608] = [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 + element_type = vanilla_button + instance_identifier = minecraft_realms_notification_icons_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 275 + y = 171 + width = 62 + height = 18 + stay_on_screen = true + element_loading_requirement_container_identifier = 4a3ec248-90ab-481c-b44e-f2b0c5039bff-1781454178608 + [loading_requirement_container_meta:4a3ec248-90ab-481c-b44e-f2b0c5039bff-1781454178608] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = e0ceba6b-0814-461c-8e17-e5e14b7f4000-1781454178607 + [executable_block:e0ceba6b-0814-461c-8e17-e5e14b7f4000-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a106a028-bcf2-4ff7-9fd9-1faed0dade94-1781454178607 + [loading_requirement_container_meta:a106a028-bcf2-4ff7-9fd9-1faed0dade94-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 242 + y = 229 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 94f06886-3d8a-4f72-bb2a-537a97dedf06-1781454178607 + [loading_requirement_container_meta:94f06886-3d8a-4f72-bb2a-537a97dedf06-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = ede05943-ca89-4ae9-a7ba-bff6c54f1b67-1781454178607 + [executable_block:ede05943-ca89-4ae9-a7ba-bff6c54f1b67-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5976d6a5-c1e1-435d-9755-cfc0af49cb4b-1781454178607 + [loading_requirement_container_meta:5976d6a5-c1e1-435d-9755-cfc0af49cb4b-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 229 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = b18ee14c-cb47-4746-8367-75e179803dbb-1781454178607 + [loading_requirement_container_meta:b18ee14c-cb47-4746-8367-75e179803dbb-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 64888ea5-ca52-4b52-84dd-3896c2423097-1785375889284 + [executable_block:64888ea5-ca52-4b52-84dd-3896c2423097-1785375889284][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c0bb6c30-7349-4c58-93c6-fbeb4b090ca3-1785375889284 + [loading_requirement_container_meta:c0bb6c30-7349-4c58-93c6-fbeb4b090ca3-1785375889284] = [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 + element_type = vanilla_button + instance_identifier = 400334 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 157 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 9ab8d65a-6b2f-49d1-9d4a-3aa5dfe5fd63-1785375889284 + [loading_requirement_container_meta:9ab8d65a-6b2f-49d1-9d4a-3aa5dfe5fd63-1785375889284] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 7bb29364-ca3a-46c3-8ed4-78352a26642b-1781454178607 + [executable_block:7bb29364-ca3a-46c3-8ed4-78352a26642b-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 599f5656-7a6c-44f6-a64f-cbeadde0de81-1781454178607 + [loading_requirement_container_meta:599f5656-7a6c-44f6-a64f-cbeadde0de81-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = minecraft_logo_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 112 + y = 6 + width = 256 + height = 51 + stay_on_screen = true + element_loading_requirement_container_identifier = d43719a9-3d00-4f85-bb1c-7c890c6612a9-1781454178607 + [loading_requirement_container_meta:d43719a9-3d00-4f85-bb1c-7c890c6612a9-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 50a88f26-459a-4741-a1a7-ab88b1d61830-1785269643872 + [executable_block:50a88f26-459a-4741-a1a7-ab88b1d61830-1785269643872][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4439fe69-4230-402f-a8aa-46b10376fb4b-1785269643872 + [loading_requirement_container_meta:4439fe69-4230-402f-a8aa-46b10376fb4b-1785269643872] = [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 + element_type = vanilla_button + instance_identifier = 514382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 254 + y = 205 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 63d0478f-594c-426c-a553-5f3caa50f275-1785269643872 + [loading_requirement_container_meta:63d0478f-594c-426c-a553-5f3caa50f275-1785269643872] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 58188730-56f3-44dd-9dee-e129f3433f73-1781454178608 + [executable_block:58188730-56f3-44dd-9dee-e129f3433f73-1781454178608][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 472b2e66-d654-41ab-81a2-c27074adfaec-1781454178608 + [loading_requirement_container_meta:472b2e66-d654-41ab-81a2-c27074adfaec-1781454178608] = [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 + element_type = vanilla_button + instance_identifier = minecraft_splash_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 313 + y = 25 + width = 100 + height = 40 + stay_on_screen = true + element_loading_requirement_container_identifier = f013da50-92fc-4311-bbeb-2474a562a92a-1781454178608 + [loading_requirement_container_meta:f013da50-92fc-4311-bbeb-2474a562a92a-1781454178608] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = bd12bd45-6f46-4c4a-ad3d-91299a8a8a8b-1781454178608 + [executable_block:bd12bd45-6f46-4c4a-ad3d-91299a8a8a8b-1781454178608][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b3f69f06-70eb-4e35-a928-9bf1f3991321-1781454178608 + [loading_requirement_container_meta:b3f69f06-70eb-4e35-a928-9bf1f3991321-1781454178608] = [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 + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 282 + width = 129 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 28668476-0e8b-437d-8206-6df0473825ea-1781454178608 + [loading_requirement_container_meta:28668476-0e8b-437d-8206-6df0473825ea-1781454178608] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 615b4415-9938-4ee6-9338-69595cca7764-1781454178607 + [executable_block:615b4415-9938-4ee6-9338-69595cca7764-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 63937860-527f-439d-8f5b-f72429c7b7db-1781454178607 + [loading_requirement_container_meta:63937860-527f-439d-8f5b-f72429c7b7db-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_singleplayer_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 85 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 52d1ac40-b728-400b-8462-50edc0c9fc4d-1781454178607 + [loading_requirement_container_meta:52d1ac40-b728-400b-8462-50edc0c9fc4d-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = fc1b951c-c32f-4426-a8bd-791b9747187d-1781454178607 + [executable_block:fc1b951c-c32f-4426-a8bd-791b9747187d-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d7a0ada2-7a67-4865-ac1a-1b9ac19119d5-1781454178607 + [loading_requirement_container_meta:d7a0ada2-7a67-4865-ac1a-1b9ac19119d5-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = modmenu_titlescreen_mods_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 181 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 952c9a38-35af-4851-953c-90ea04b703ae-1781454178607 + [loading_requirement_container_meta:952c9a38-35af-4851-953c-90ea04b703ae-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 20cd70af-fdb3-4ec1-832e-e0a88775a12e-1785269643872 + [executable_block:20cd70af-fdb3-4ec1-832e-e0a88775a12e-1785269643872][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 007a7034-0181-416b-b71e-9909467a4731-1785269643872 + [loading_requirement_container_meta:007a7034-0181-416b-b71e-9909467a4731-1785269643872] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_realms_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 133 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = a2553a90-1a33-43e9-b7c1-cd207b573608-1785269643872 + [loading_requirement_container_meta:a2553a90-1a33-43e9-b7c1-cd207b573608-1785269643872] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 84f939e2-1375-46f3-b270-a11d9ad47339-1785269643872 + [executable_block:84f939e2-1375-46f3-b270-a11d9ad47339-1785269643872][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 96cb9484-c9f0-4681-8ad6-e595feb5bd98-1785269643872 + [loading_requirement_container_meta:96cb9484-c9f0-4681-8ad6-e595feb5bd98-1785269643872] = [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 + element_type = vanilla_button + instance_identifier = 490382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 230 + y = 205 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 5ab2226b-dbf2-4389-bdd3-22899ac257d8-1785269643872 + [loading_requirement_container_meta:5ab2226b-dbf2-4389-bdd3-22899ac257d8-1785269643872] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 58d8e0c0-7786-4327-bad1-18f128e678c0-1781454178607 + [executable_block:58d8e0c0-7786-4327-bad1-18f128e678c0-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a3925300-fd5e-4c0d-901a-868c6c3894d2-1781454178607 + [loading_requirement_container_meta:a3925300-fd5e-4c0d-901a-868c6c3894d2-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 109 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 93a96edd-51f1-44bf-9faf-8582d9a73201-1781454178607 + [loading_requirement_container_meta:93a96edd-51f1-44bf-9faf-8582d9a73201-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = e38b77c7-1d5f-43c0-9f7b-04a0c16723a2-1785269643872 + [executable_block:e38b77c7-1d5f-43c0-9f7b-04a0c16723a2-1785269643872][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ab56524f-e69f-44a2-ba0c-90e47232e9a8-1785269643872 + [loading_requirement_container_meta:ab56524f-e69f-44a2-ba0c-90e47232e9a8-1785269643872] = [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 + element_type = vanilla_button + instance_identifier = 466382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 206 + y = 205 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 10f0edb9-f23a-49af-866c-b527c51bcd11-1785269643872 + [loading_requirement_container_meta:10f0edb9-f23a-49af-866c-b527c51bcd11-1785269643872] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 37454a84-f397-4c37-b7a6-9d4fed0b607a-1781454178607 + [executable_block:37454a84-f397-4c37-b7a6-9d4fed0b607a-1781454178607][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ca1e06bb-9090-46bc-b0ce-228f4a1b1457-1781454178607 + [loading_requirement_container_meta:ca1e06bb-9090-46bc-b0ce-228f4a1b1457-1781454178607] = [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 + element_type = vanilla_button + instance_identifier = title_screen_copyright_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-right + x = 440 + y = 353 + width = 196 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = 867851a7-a566-4e3a-a6ca-70aac637b654-1781454178607 + [loading_requirement_container_meta:867851a7-a566-4e3a-a6ca-70aac637b654-1781454178607] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/join_multiplayer_screen_layout.txt b/config/fancymenu/customization/join_multiplayer_screen_layout.txt new file mode 100644 index 0000000..4e471ce --- /dev/null +++ b/config/fancymenu/customization/join_multiplayer_screen_layout.txt @@ -0,0 +1,1131 @@ +type = fancymenu_layout + +layout-meta { + identifier = join_multiplayer_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781709097941 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:9dfd042e-7077-46e2-b1e1-38682f1816e5-1781709064865] = [groups:][instances:] +} + +menu_background { + instance_identifier = bbad74aa-3e8d-4720-acad-f9720e81f515-1781268623308 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 4c865eb2-48c4-4b55-be90-b9cc971ff082-1781268623308 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = cd8fdfcd-0176-46ad-bed8-a646b4a2cdc7-1781268623308 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = d9bb90e4-fd43-4d8d-8248-033ba76379a2-1781268623308 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 0b26b523-d250-46bb-b5a5-d0a6058fe7bd-1781268623308 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 08bfe0a3-b63e-4376-bfaf-71d5a1216337-1781268623308 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = fec14da1-edf4-4b06-bcb8-359fb7253af1-1781268623309 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 56a826f2-4aa4-4302-824d-332408c72372-1781268623309 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 01786524-b5cc-4200-bf0d-fd798ccaa839-1781268623309 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = cceab68c-a134-4f79-9fc8-7703bbdfd571-1781268623309 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 0ebda661-c7b4-4d21-866a-580760d3f391-1781268623309 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = bfb6e7ab-2530-4d7c-901c-70d63dc53915-1781268623309 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 46bb7c2d-32e2-48bd-a539-166e719c7c54-1781268623309 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 2a9ac861-bbdc-4296-bcf0-0fd4993e8e4a-1781268623309 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = cfbba2b2-90b9-4c97-a509-454156210292-1781268623309 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 38dd244e-16b6-4695-9518-209f6ef0ed76-1781268623309 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 618591ef-0e19-4960-95b5-e43a6b83deca-1781268623309 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 086522a5-0ef4-4af2-9802-af1be1ab5759-1781268623309 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = b6d82552-1af5-47a0-8362-715d60f0b4ae-1781268623309 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +element { + button_element_executable_block_identifier = dab3e4e8-b4c8-4838-9068-2977f195e148-1781529765907 + [executable_action_instance:d245d6c9-918f-4f1d-9ac5-fb8ca9cb1564-1781709085564][action_type:opengui] = bte_layout + [executable_block:dab3e4e8-b4c8-4838-9068-2977f195e148-1781529765907][type:generic] = [executables:d245d6c9-918f-4f1d-9ac5-fb8ca9cb1564-1781709085564;] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Back + navigatable = true + widget_active_state_requirement_container_identifier = d0534d3c-4b81-4a8d-a127-a7d3d0121b1f-1781529765907 + [loading_requirement_container_meta:d0534d3c-4b81-4a8d-a127-a7d3d0121b1f-1781529765907] = [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 + element_type = custom_button + instance_identifier = 526c96f5-f9f6-4ffc-8d18-a5e395cab483-1781529765907 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = 81 + y = -28 + width = 73 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 58be4d50-0e51-4449-bef2-4aaa7b607ac0-1781529765907 + [loading_requirement_container_meta:58be4d50-0e51-4449-bef2-4aaa7b607ac0-1781529765907] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 9c7566b3-48c0-4f73-9bc8-77cb96478458-1781268623310 + [executable_block:9c7566b3-48c0-4f73-9bc8-77cb96478458-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 8a615813-7153-4ad1-bc42-d735de4f1b87-1781268623310 + [loading_requirement_container_meta:8a615813-7153-4ad1-bc42-d735de4f1b87-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 450948 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 190 + y = 222 + width = 100 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 10647f94-bbe6-4a43-b197-f11ffbcb1007-1781268623310 + [loading_requirement_container_meta:10647f94-bbe6-4a43-b197-f11ffbcb1007-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = d59c412e-efd1-4f3c-a636-97ac7b9a6b01-1781268623311 + [executable_block:d59c412e-efd1-4f3c-a636-97ac7b9a6b01-1781268623311][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a82fee17-70dd-4807-b8d3-bbb637a49618-1781268623311 + [loading_requirement_container_meta:a82fee17-70dd-4807-b8d3-bbb637a49618-1781268623311] = [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 + element_type = vanilla_button + instance_identifier = 8975 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = top-left + x = 7 + y = 5 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = afff7a67-5535-40b3-a7ab-0cb3b1eaa67e-1781268623310 + [loading_requirement_container_meta:afff7a67-5535-40b3-a7ab-0cb3b1eaa67e-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 7f8593e0-83e4-4465-a346-c771109128d6-1781268623310 + [executable_block:7f8593e0-83e4-4465-a346-c771109128d6-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 04649202-5975-4e3e-8eaf-f0452ba705cd-1781268623310 + [loading_requirement_container_meta:04649202-5975-4e3e-8eaf-f0452ba705cd-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 554948 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 294 + y = 222 + width = 100 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 56db9f59-3994-478f-b955-c7603179a5d6-1781268623310 + [loading_requirement_container_meta:56db9f59-3994-478f-b955-c7603179a5d6-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = e892b1ff-9371-48a1-89a9-6cc12e0e315c-1781268623310 + [executable_block:e892b1ff-9371-48a1-89a9-6cc12e0e315c-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = dcc36c57-4506-46aa-93cb-f20aca65726c-1781268623310 + [loading_requirement_container_meta:dcc36c57-4506-46aa-93cb-f20aca65726c-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 580972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + sticky_anchor = false + anchor_point = vanilla + x = 320 + y = 246 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8da76a99-34ca-4217-bd8f-c084293e63af-1781268623310 + [loading_requirement_container_meta:8da76a99-34ca-4217-bd8f-c084293e63af-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = afed3aed-efd5-40aa-9ce6-8b9c8d5629b4-1781268623310 + [executable_block:afed3aed-efd5-40aa-9ce6-8b9c8d5629b4-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c7ba9e7c-83b8-4639-b26c-eaa1301bcd6d-1781268623310 + [loading_requirement_container_meta:c7ba9e7c-83b8-4639-b26c-eaa1301bcd6d-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 46012 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 200 + y = 12 + width = 79 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 9a9e9e3c-277b-405c-9968-b2918fbcc864-1781268623310 + [loading_requirement_container_meta:9a9e9e3c-277b-405c-9968-b2918fbcc864-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = fcb9bcb4-19c0-4d8b-a72a-e9c3976f528a-1781268623310 + [executable_block:fcb9bcb4-19c0-4d8b-a72a-e9c3976f528a-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 11bda291-47e2-4680-826f-be97275c5d17-1781268623310 + [loading_requirement_container_meta:11bda291-47e2-4680-826f-be97275c5d17-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 424972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 164 + y = 246 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4b90a903-a79b-4b4d-ba78-a97ad505d4d7-1781268623310 + [loading_requirement_container_meta:4b90a903-a79b-4b4d-ba78-a97ad505d4d7-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 14bb56ce-a943-4676-a229-1fe209169751-1781268623310 + [executable_block:14bb56ce-a943-4676-a229-1fe209169751-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 3c7add13-2f6f-4ea3-ae40-8915d39ad22c-1781268623310 + [loading_requirement_container_meta:3c7add13-2f6f-4ea3-ae40-8915d39ad22c-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 502972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 242 + y = 246 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4863b6a9-2db1-4960-a3f0-7075ca2fc495-1781268623310 + [loading_requirement_container_meta:4863b6a9-2db1-4960-a3f0-7075ca2fc495-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = b5897a45-8856-45d1-ab48-93d0a8d2b80a-1781268623310 + [executable_block:b5897a45-8856-45d1-ab48-93d0a8d2b80a-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f724ef7b-9654-43bd-af5c-5ef9461c61f9-1781268623310 + [loading_requirement_container_meta:f724ef7b-9654-43bd-af5c-5ef9461c61f9-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 346948 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 222 + width = 100 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8d164f03-e9e2-4522-b1c4-3fa6d398c7d1-1781268623310 + [loading_requirement_container_meta:8d164f03-e9e2-4522-b1c4-3fa6d398c7d1-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = e4a637cd-02f5-4251-8360-421440f10cb8-1781268623310 + [executable_block:e4a637cd-02f5-4251-8360-421440f10cb8-1781268623310][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 54056e71-5f6f-4b43-9eec-63c2342221cf-1781268623310 + [loading_requirement_container_meta:54056e71-5f6f-4b43-9eec-63c2342221cf-1781268623310] = [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 + element_type = vanilla_button + instance_identifier = 346972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 246 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 778ad865-29ed-41f9-8dd9-e285d5ec2279-1781268623310 + [loading_requirement_container_meta:778ad865-29ed-41f9-8dd9-e285d5ec2279-1781268623310] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/level_loading_screen_layout.txt b/config/fancymenu/customization/level_loading_screen_layout.txt new file mode 100644 index 0000000..8fa9b0e --- /dev/null +++ b/config/fancymenu/customization/level_loading_screen_layout.txt @@ -0,0 +1,997 @@ +type = fancymenu_layout + +layout-meta { + identifier = level_loading_screen + render_custom_elements_behind_vanilla = true + last_edited_time = 1785375158697 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:65ecff82-d769-43ef-9a73-6a929b67b37e-1785375132248] = [groups:][instances:] +} + +menu_background { + instance_identifier = 093b6e35-ceaa-4c3c-a049-89ba12745dd9-1781545012653 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 66f160e9-8ae4-45bd-a1d0-b689e803f2f7-1781545012653 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 0e05e304-86c5-46cf-9614-264038be2df7-1781545012653 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 40172c65-63e3-4f8e-bee3-db7849aba657-1781545012653 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = d8d47af2-4304-4402-ba7f-4cbd539aff60-1781545012653 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = cec0283b-da93-49cb-80e8-db778fec09f3-1781545012653 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 1746c22f-4cef-4f1d-98ac-4d9590ece503-1781545012654 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 747c3af9-0750-4d67-8490-1b947068291b-1781545012654 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = d748f5f4-f663-4ced-9e40-26bdc66f5d3b-1781545012654 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = e5d1c127-e318-400f-82f4-7d0701d7b77b-1781545012654 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 154ea41d-3ca8-450f-8b18-cf48c2da45f8-1781545012654 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = b16adbbe-cbec-4c9a-8935-6fee6780ddb9-1781545012654 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 5ebefb32-da8c-4a17-9bcb-4ccc81908772-1781545012654 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 8db84ae3-5bec-4375-a0a5-61a00ce1e776-1781545012654 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = a27c8c3c-6b31-47a4-b1f6-21a42064c64c-1781545012654 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = f4726289-1941-4d02-ae58-9bcd92ce0927-1781545012654 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 8e524492-5bfd-4b6e-9bbd-5c75f992ec03-1781545012654 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 7900f0ec-dadf-4642-859b-17393e579fdd-1781545012654 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 0c786913-f506-4dac-9e5c-e7661d7d5317-1781545012654 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 06c49b02-fc8f-436b-8cfb-6e9c5dd604ce-1781545114745 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-centered + x = -239 + y = -55 + width = 469 + height = 55 + stay_on_screen = false + element_loading_requirement_container_identifier = 25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945 + [loading_requirement_container_meta:25cd01ad-f109-4ad2-8d87-0a3c5deed814-1781530829945] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + interactable = false + source = {"placeholder":"vanillabuttonlabel","values":{"locator":"level_loading_screen:downloading_terrain_text"}} + source_mode = direct + shadow = false + enable_scrolling = false + auto_line_wrapping = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 79fac8d1-c130-4293-b7a9-d34bc2b9f520-1781545114746 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-left + x = 46 + y = -39 + width = 230 + height = 15 + stay_on_screen = true + element_loading_requirement_container_identifier = 3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753 + [loading_requirement_container_meta:3ef2e39e-d778-4672-97b2-647585519d5f-1781491677753] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #F3F3F3FF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +element { + bar_nine_slice = false + background_nine_slice = false + direction = right + progress_for_element_anchor = false + value_mode = percentage + smooth_filling_animation = true + element_type = progress_bar + instance_identifier = 84f13b31-a81a-472e-8b04-9d9c37de1ecc-1781545114747 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-centered + x = -92 + y = -10 + width = 182 + height = 5 + stay_on_screen = true + element_loading_requirement_container_identifier = 0663250b-666a-4492-8292-c0118e8c82b6-1781531111470 + [loading_requirement_container_meta:0663250b-666a-4492-8292-c0118e8c82b6-1781531111470] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + bar_nine_slice_border_top = 5 + bar_nine_slice_border_right = 10 + bar_nine_slice_border_bottom = 5 + bar_nine_slice_border_left = 10 + background_nine_slice_border_top = 5 + background_nine_slice_border_right = 10 + background_nine_slice_border_bottom = 5 + background_nine_slice_border_left = 10 + progress_source = 100.0 + bar_color = #53B237 + background_color = #454647 +} + +element { + element_type = image + instance_identifier = e0415a11-01e1-4a0f-aa25-2095d9de07b9-1781545114747 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-left + x = 11 + y = -44 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813 + [loading_requirement_container_meta:034cdeeb-456a-4040-9fac-28ed054410ab-1781532031813] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/icons/logo.gif + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = 031d79a6-c85b-46ef-a335-96c7d1493e12-1781545114748 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023 + [loading_requirement_container_meta:f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + element_type = image + instance_identifier = 23509c7c-bbaf-4012-a28a-6c13cebb609d-1785373328257 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -47 + y = -41 + width = 94 + height = 75 + stay_on_screen = true + element_loading_requirement_container_identifier = cb4bef9a-d0f8-4f2c-ae46-1907d38c648d-1785373328257 + [loading_requirement_container_meta:cb4bef9a-d0f8-4f2c-ae46-1907d38c648d-1785373328257] = [groups:][instances:9b59f19e-e76f-4a5c-abdb-4e87486a4217-1785373520004;] + [loading_requirement:fancymenu_loading_requirement_is_singpleplayer][requirement_mode:if][req_id:9b59f19e-e76f-4a5c-abdb-4e87486a4217-1785373520004] = + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/textures/bg-2.png + repeat_texture = false + nine_slice_texture = true + nine_slice_texture_border_x = 11 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +vanilla_button { + button_element_executable_block_identifier = fee94335-ba23-4590-a730-391ea6a8428c-1781545012654 + [executable_block:fee94335-ba23-4590-a730-391ea6a8428c-1781545012654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5f1e6c56-304c-4687-9e56-da3fa868fab1-1781545012654 + [loading_requirement_container_meta:5f1e6c56-304c-4687-9e56-da3fa868fab1-1781545012654] = [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 + element_type = vanilla_button + instance_identifier = progress_bar + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 97 + width = 200 + height = 2 + stay_on_screen = true + element_loading_requirement_container_identifier = 25d35157-3abe-497b-a4bb-c2059f8afe1d-1781545012654 + [loading_requirement_container_meta:25d35157-3abe-497b-a4bb-c2059f8afe1d-1781545012654] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = e2b77140-af38-402f-8445-8e48f299e45b-1781545012654 + [executable_block:e2b77140-af38-402f-8445-8e48f299e45b-1781545012654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ddab3f23-b0d7-4d77-8451-632c37f651a5-1781545012654 + [loading_requirement_container_meta:ddab3f23-b0d7-4d77-8451-632c37f651a5-1781545012654] = [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 + element_type = vanilla_button + instance_identifier = chunks + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -50 + y = -53 + width = 100 + height = 100 + stay_on_screen = true + element_loading_requirement_container_identifier = 1781b7b1-54cb-42e4-95ce-9d6a1ea6284f-1781545012654 + [loading_requirement_container_meta:1781b7b1-54cb-42e4-95ce-9d6a1ea6284f-1781545012654] = [groups:][instances:972bd932-009a-4dd2-8604-24f21deb8d29-1785373560791;] + [loading_requirement:fancymenu_loading_requirement_is_singpleplayer][requirement_mode:if][req_id:972bd932-009a-4dd2-8604-24f21deb8d29-1785373560791] = + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = a1ff909e-0812-4edc-acc0-0119ee1b2b7c-1781545012654 + [executable_block:a1ff909e-0812-4edc-acc0-0119ee1b2b7c-1781545012654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 7979fe8a-a20e-4b7d-876f-d214d6fffe80-1781545012654 + [loading_requirement_container_meta:7979fe8a-a20e-4b7d-876f-d214d6fffe80-1781545012654] = [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 + element_type = vanilla_button + instance_identifier = downloading_terrain_text + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 40 + y = 85 + width = 400 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = ca89f89d-0096-4b70-b368-618e148b2b96-1781545012654 + [loading_requirement_container_meta:ca89f89d-0096-4b70-b368-618e148b2b96-1781545012654] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/options_screen_layout.txt b/config/fancymenu/customization/options_screen_layout.txt new file mode 100644 index 0000000..27d5ca0 --- /dev/null +++ b/config/fancymenu/customization/options_screen_layout.txt @@ -0,0 +1,1460 @@ +type = fancymenu_layout + +layout-meta { + identifier = options_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785375489833 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:5ef1852d-2df2-4a93-82ba-81753524be8a-1785375483969] = [groups:group_1;][instances:] + [loading_requirement_group:group_1] = [group_mode:and] + [loading_requirement:fancymenu_loading_requirement_is_multiplayer][requirement_mode:if_not][group:group_1][req_id:9771cd63-535a-4536-a3be-601e6b2b9b29-1785375445314] = + [loading_requirement:fancymenu_loading_requirement_is_singpleplayer][requirement_mode:if_not][group:group_1][req_id:98ea4a8e-fa43-4af1-9bc9-81b5d226a33f-1785375457314] = +} + +menu_background { + instance_identifier = b1cfca56-a911-48d5-89f2-10bac7b501b6-1781268519412 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 00498826-aa81-4133-9a28-a23f14aa2755-1781268519412 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 98e3fcff-1bd9-49f9-aa44-6a53d2b43013-1781268519412 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 700e9f97-f33c-4af8-9910-9d70dfb46a53-1781268519412 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 43822aef-6bd2-4b4e-873d-fe92bda04576-1781268519412 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 962f0da5-f1c0-4f13-976a-0aa15ed220e4-1781268519412 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 553a9e32-9a0f-4db7-8d2c-1fd012bcad33-1781268519412 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = a8a67d31-20bc-421d-85a8-607c70950499-1781268519412 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 25db0f7d-ef25-49ce-b268-41037cabf162-1781268519412 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 38aa2f39-bb31-4773-a032-f4a49357fc6e-1781268519412 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = bb8731e8-da10-42ed-ae39-ae60c8881a55-1781268519412 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 598c3932-ef27-4dfb-9fb6-2a0086a7db87-1781268519412 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 995958e4-6372-429e-ba5e-3e4b28701295-1781268519412 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = e1f10ebb-1100-407a-b09c-d6a25cf42c6e-1781268519412 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 9b34e5cd-e3aa-4c62-bcc5-8c7aff830ba1-1781268519412 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = f1ea6f6d-6c90-449e-8a8a-0adee7ab66c5-1781268519412 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 2a7ae061-20e6-48d6-a766-701a739d1485-1781268519412 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 82e1bec8-c6db-4ea1-9122-39f499537c96-1781268519412 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 04644a44-ddb2-4268-be95-349ab7c30ea2-1781268519412 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = a7c81726-d721-4d53-a765-fdebd95cb457-1781268519414 + [executable_block:a7c81726-d721-4d53-a765-fdebd95cb457-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4c0bcdea-a5b8-45f7-8f67-74a260b6948b-1781268519414 + [loading_requirement_container_meta:4c0bcdea-a5b8-45f7-8f67-74a260b6948b-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 50491 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 91 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 91cdc881-bd8c-4f29-b1ed-d8adeb98afaf-1781268519414 + [loading_requirement_container_meta:91cdc881-bd8c-4f29-b1ed-d8adeb98afaf-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 63a1617e-e524-4abd-8764-aad855efc2e0-1781268519414 + [executable_block:63a1617e-e524-4abd-8764-aad855efc2e0-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 67d30737-3555-445e-8ddb-8f5337205cd9-1781268519414 + [loading_requirement_container_meta:67d30737-3555-445e-8ddb-8f5337205cd9-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 34691 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 91 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 0bf37ce2-cf4c-47ca-8685-6c96096737fc-1781268519414 + [loading_requirement_container_meta:0bf37ce2-cf4c-47ca-8685-6c96096737fc-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 058de559-dd4f-47ed-b316-414e331d455b-1781268519414 + [executable_block:058de559-dd4f-47ed-b316-414e331d455b-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d782afd9-5735-4da1-901a-db3c52aafe2b-1781268519414 + [loading_requirement_container_meta:d782afd9-5735-4da1-901a-db3c52aafe2b-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 504115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 115 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f15acfe0-5950-472f-b411-940becdb2ce7-1781268519414 + [loading_requirement_container_meta:f15acfe0-5950-472f-b411-940becdb2ce7-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 2ec5738e-0d11-4c2a-a8bf-0c96346070f6-1781268519414 + [executable_block:2ec5738e-0d11-4c2a-a8bf-0c96346070f6-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 79815bd5-6afc-4a36-84f5-32e6d67cdcee-1781268519414 + [loading_requirement_container_meta:79815bd5-6afc-4a36-84f5-32e6d67cdcee-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 504187 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 187 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 0afb114a-f49c-4fa4-b65e-895b63f4e357-1781268519414 + [loading_requirement_container_meta:0afb114a-f49c-4fa4-b65e-895b63f4e357-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 8607d26a-c17c-4be7-b3ac-7776e46f6121-1781268519414 + [executable_block:8607d26a-c17c-4be7-b3ac-7776e46f6121-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d7d5ba9b-0234-4c1a-b92c-93dbc856bda1-1781268519414 + [loading_requirement_container_meta:d7d5ba9b-0234-4c1a-b92c-93dbc856bda1-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 34629 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 29 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = b83b46ea-e747-41cc-95f8-afc4c39849b5-1781268519414 + [loading_requirement_container_meta:b83b46ea-e747-41cc-95f8-afc4c39849b5-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 2df449e0-9e48-472f-8b96-5fe3dda8ab2a-1781268519414 + [executable_block:2df449e0-9e48-472f-8b96-5fe3dda8ab2a-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 90f62f90-a72f-41da-a591-5e68458574e9-1781268519414 + [loading_requirement_container_meta:90f62f90-a72f-41da-a591-5e68458574e9-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 346139 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 139 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 35146870-028d-43ac-bbcf-af58c7e78f70-1781268519414 + [loading_requirement_container_meta:35146870-028d-43ac-bbcf-af58c7e78f70-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = da6cc2aa-b548-4c2a-b77f-e7777f0a6d81-1781268519414 + [executable_block:da6cc2aa-b548-4c2a-b77f-e7777f0a6d81-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c764d0f6-5769-4d3a-a8c0-984461cf1785-1781268519414 + [loading_requirement_container_meta:c764d0f6-5769-4d3a-a8c0-984461cf1785-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 346163 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 163 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 9858f836-6876-4d61-9e20-03cab6b7878a-1781268519414 + [loading_requirement_container_meta:9858f836-6876-4d61-9e20-03cab6b7878a-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 0e15dd8b-7e4a-4e6c-897a-c214cf82c6a7-1781268519414 + [executable_block:0e15dd8b-7e4a-4e6c-897a-c214cf82c6a7-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 60cb3ad2-9251-484f-9a76-c39c1cf9f06c-1781268519414 + [loading_requirement_container_meta:60cb3ad2-9251-484f-9a76-c39c1cf9f06c-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 504139 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 139 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = afb55eed-3ed6-415c-b5ca-f74515529d5a-1781268519414 + [loading_requirement_container_meta:afb55eed-3ed6-415c-b5ca-f74515529d5a-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = aeac4945-80b6-4592-9148-f53c4d744474-1781268519414 + [executable_block:aeac4945-80b6-4592-9148-f53c4d744474-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 319af021-0b4b-48f8-b95a-5bd87e22c168-1781268519414 + [loading_requirement_container_meta:319af021-0b4b-48f8-b95a-5bd87e22c168-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 48212 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 222 + y = 12 + width = 36 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 6151142c-1665-4689-aaff-a2b331aec7dd-1781268519414 + [loading_requirement_container_meta:6151142c-1665-4689-aaff-a2b331aec7dd-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 152eaf03-6487-43a8-b451-6d7f156e6046-1781268519414 + [executable_block:152eaf03-6487-43a8-b451-6d7f156e6046-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 808633b3-fbf8-4827-955e-a519fcf7d03e-1781268519414 + [loading_requirement_container_meta:808633b3-fbf8-4827-955e-a519fcf7d03e-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 50429 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 29 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 0041e616-452b-41cb-8cd0-fdec2b26efd2-1781268519414 + [loading_requirement_container_meta:0041e616-452b-41cb-8cd0-fdec2b26efd2-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 7984ac72-8d83-4f18-ae70-944cf092cbaf-1781268519414 + [executable_block:7984ac72-8d83-4f18-ae70-944cf092cbaf-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 67f3f562-2f15-4855-b5ee-cca1e1a9a6ba-1781268519414 + [loading_requirement_container_meta:67f3f562-2f15-4855-b5ee-cca1e1a9a6ba-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 346115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 115 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = b74aa4a3-9c63-4ea8-9ea2-d41b3144236c-1781268519414 + [loading_requirement_container_meta:b74aa4a3-9c63-4ea8-9ea2-d41b3144236c-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 1e624765-6136-443b-a86a-bffd42df8569-1781268519414 + [executable_block:1e624765-6136-443b-a86a-bffd42df8569-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d65228b5-f3fc-412e-a001-b51d40c363ff-1781268519414 + [loading_requirement_container_meta:d65228b5-f3fc-412e-a001-b51d40c363ff-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 504163 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 163 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = b60bc8f6-daaa-43c4-bb66-bdf650093a04-1781268519414 + [loading_requirement_container_meta:b60bc8f6-daaa-43c4-bb66-bdf650093a04-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = ff774bb8-ef63-4692-bc49-0abb4c597800-1781268519414 + [executable_block:ff774bb8-ef63-4692-bc49-0abb4c597800-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 2b777904-b43d-473c-bf86-cc14f92f55c6-1781268519414 + [loading_requirement_container_meta:2b777904-b43d-473c-bf86-cc14f92f55c6-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 400974 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 266 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 04e67d67-c3ff-49bf-abac-5eab5503a6aa-1781268519414 + [loading_requirement_container_meta:04e67d67-c3ff-49bf-abac-5eab5503a6aa-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = c6e3e2c9-d6f6-4270-a752-cb1a48a3a9a9-1781268519414 + [executable_block:c6e3e2c9-d6f6-4270-a752-cb1a48a3a9a9-1781268519414][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 37aa0e5c-5858-4b60-8f72-9655cb7a414a-1781268519414 + [loading_requirement_container_meta:37aa0e5c-5858-4b60-8f72-9655cb7a414a-1781268519414] = [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 + element_type = vanilla_button + instance_identifier = 346187 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 187 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = a6d4d24f-7518-4031-b2a6-53238df35f72-1781268519414 + [loading_requirement_container_meta:a6d4d24f-7518-4031-b2a6-53238df35f72-1781268519414] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/options_screen_layout_1.txt b/config/fancymenu/customization/options_screen_layout_1.txt new file mode 100644 index 0000000..1fa2f5e --- /dev/null +++ b/config/fancymenu/customization/options_screen_layout_1.txt @@ -0,0 +1,1459 @@ +type = fancymenu_layout + +layout-meta { + identifier = options_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785375526155 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:690c8b18-62cc-4dfd-88db-99610cd0750d-1785375494389] = [groups:group_1;][instances:] + [loading_requirement_group:group_1] = [group_mode:or] + [loading_requirement:fancymenu_loading_requirement_is_multiplayer][requirement_mode:if][group:group_1][req_id:fe2f8c36-67cc-4065-adc6-279d51b091d0-1785375511551] = + [loading_requirement:fancymenu_loading_requirement_is_singpleplayer][requirement_mode:if][group:group_1][req_id:1c182f1b-7070-43e7-919d-8f3e9d914dce-1785375518385] = +} + +menu_background { + instance_identifier = eca00174-6694-45d1-b265-ca787aa98ca4-1785265817230 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 94fdc061-d195-48b4-a57c-d6d9789431f1-1785265817230 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 3709a3ef-9a64-4df0-ae4b-35b6dba395d9-1785265817230 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = da0f00d3-a8a2-438b-a888-ffefb9711e60-1785265817230 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = e817b70a-5e00-4b3d-bfec-4d19cfaaf2e4-1785265817230 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = dc216193-a729-495a-9cd0-8172a836a41c-1785265817230 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 9817a9a1-5e91-447d-86b4-1b3ba72f99cd-1785265817230 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 2b41c5a9-2c11-4855-af25-2626458e435a-1785265817230 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 07f1ddb2-0746-4b5a-9388-83f7c3a73323-1785265817230 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 0a6c8ba7-fdc4-4d27-9120-2564f7b01caa-1785265817230 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 68eb6bef-232a-43a2-9a8a-4288cd9bbda5-1785265817230 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = cb7a768b-0b7e-4e00-96f0-b773a1027db2-1785265817230 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 0c052923-9aae-4f07-950a-b9f7242b4414-1785265817231 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 4cd456e1-8fa8-4474-a99a-11b3a1ff6ba4-1785265817231 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 89633dd6-73a3-4e04-9d44-8b19ba60c4b4-1785265817231 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = b62a907e-389d-417a-ace2-260debf41a0e-1785265817231 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 36df8f8b-f173-4329-a91a-72db33827b01-1785265817231 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = f79edbf6-8e27-49d1-b9d0-9fd06f17c2e1-1785265817231 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = a173bd29-b03e-42d3-88a2-e0658d09e138-1785265817231 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = ad8afd56-c3c8-4e9e-b35d-a5ea13de4779-1785265817231 + [executable_block:ad8afd56-c3c8-4e9e-b35d-a5ea13de4779-1785265817231][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 72c9b848-5203-4af8-a9b6-e47dbcd8b069-1785265817231 + [loading_requirement_container_meta:72c9b848-5203-4af8-a9b6-e47dbcd8b069-1785265817231] = [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 + element_type = vanilla_button + instance_identifier = 50429 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 29 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f1ffc4c1-5712-4d4b-bb35-87aa6bc8c57e-1785265817231 + [loading_requirement_container_meta:f1ffc4c1-5712-4d4b-bb35-87aa6bc8c57e-1785265817231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = c7bef6b6-031f-4846-a608-e606ab65bf18-1785265817231 + [executable_block:c7bef6b6-031f-4846-a608-e606ab65bf18-1785265817231][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d97380d0-a4c3-4297-934e-1b17a532d7a3-1785265817231 + [loading_requirement_container_meta:d97380d0-a4c3-4297-934e-1b17a532d7a3-1785265817231] = [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 + element_type = vanilla_button + instance_identifier = 48212 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 222 + y = 12 + width = 36 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = b6e028f1-2b5a-40f5-94e9-b3a4d752f865-1785265817231 + [loading_requirement_container_meta:b6e028f1-2b5a-40f5-94e9-b3a4d752f865-1785265817231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = d83604f3-a9c2-4d4c-b6b1-b0f436ca9b90-1785265817232 + [executable_block:d83604f3-a9c2-4d4c-b6b1-b0f436ca9b90-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 3b0bcbfd-604c-4dcf-9825-2366bd5d0538-1785265817232 + [loading_requirement_container_meta:3b0bcbfd-604c-4dcf-9825-2366bd5d0538-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 346115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 115 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4eff3776-dc76-44b7-9e9e-55890aac8336-1785265817231 + [loading_requirement_container_meta:4eff3776-dc76-44b7-9e9e-55890aac8336-1785265817231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 782452c7-079e-4c31-a54c-a9596c0e7be8-1785265817232 + [executable_block:782452c7-079e-4c31-a54c-a9596c0e7be8-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 62c392fa-2ddf-4688-b58d-ab8f8580d344-1785265817232 + [loading_requirement_container_meta:62c392fa-2ddf-4688-b58d-ab8f8580d344-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 346187 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 187 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 2b890d2a-f231-40c7-8937-f54919546bcb-1785265817232 + [loading_requirement_container_meta:2b890d2a-f231-40c7-8937-f54919546bcb-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = be15210c-4da7-4712-affa-ba978883477d-1785265817232 + [executable_block:be15210c-4da7-4712-affa-ba978883477d-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 841c3d28-f73f-4ca6-bd0c-3621139b52f1-1785265817232 + [loading_requirement_container_meta:841c3d28-f73f-4ca6-bd0c-3621139b52f1-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 504187 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 187 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 523edf6c-f1af-4214-a064-b9c653f17d83-1785265817232 + [loading_requirement_container_meta:523edf6c-f1af-4214-a064-b9c653f17d83-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 24539bee-b8dd-4a93-b790-1f47f5c952f5-1785265817232 + [executable_block:24539bee-b8dd-4a93-b790-1f47f5c952f5-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 95bf4cd4-cebe-4121-a70f-27a9e3a0f752-1785265817232 + [loading_requirement_container_meta:95bf4cd4-cebe-4121-a70f-27a9e3a0f752-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 346139 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 139 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = e616f198-a544-47c5-ba66-6c4f7ee0513d-1785265817232 + [loading_requirement_container_meta:e616f198-a544-47c5-ba66-6c4f7ee0513d-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 2107bc66-b3a6-4f93-8bd5-0acb945b5fe1-1785265817232 + [executable_block:2107bc66-b3a6-4f93-8bd5-0acb945b5fe1-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9a6e4554-1794-4b5f-8ab6-4f29fc9884ed-1785265817232 + [loading_requirement_container_meta:9a6e4554-1794-4b5f-8ab6-4f29fc9884ed-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 504139 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 139 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 7b07f899-b46f-4454-9283-707ebe7fa50a-1785265817232 + [loading_requirement_container_meta:7b07f899-b46f-4454-9283-707ebe7fa50a-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = aadbd8cb-9186-4115-8414-dddc1891320a-1785265817232 + [executable_block:aadbd8cb-9186-4115-8414-dddc1891320a-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 7521075e-78c1-433d-a508-bf0742118e20-1785265817232 + [loading_requirement_container_meta:7521075e-78c1-433d-a508-bf0742118e20-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 400974 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 266 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 0e0aaa2c-81e2-4ff6-b53f-4861e31e1007-1785265817232 + [loading_requirement_container_meta:0e0aaa2c-81e2-4ff6-b53f-4861e31e1007-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 65136a72-852a-41e9-b154-57b34ec9abb2-1785265817232 + [executable_block:65136a72-852a-41e9-b154-57b34ec9abb2-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a7ce19dd-b992-4bc6-94a3-578e59ab6c5c-1785265817232 + [loading_requirement_container_meta:a7ce19dd-b992-4bc6-94a3-578e59ab6c5c-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 346163 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 163 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 05b3fb6a-a2a3-4dbe-867b-67be1e599b13-1785265817232 + [loading_requirement_container_meta:05b3fb6a-a2a3-4dbe-867b-67be1e599b13-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 23e07de6-5e8d-498e-897d-815fe66c4183-1785265817231 + [executable_block:23e07de6-5e8d-498e-897d-815fe66c4183-1785265817231][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 1cc8f0d1-197e-4e1d-9a9e-a4221888ec40-1785265817231 + [loading_requirement_container_meta:1cc8f0d1-197e-4e1d-9a9e-a4221888ec40-1785265817231] = [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 + element_type = vanilla_button + instance_identifier = 34691 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 91 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4680ae40-e9a8-47d1-8a95-7f5425836d11-1785265817231 + [loading_requirement_container_meta:4680ae40-e9a8-47d1-8a95-7f5425836d11-1785265817231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 62ab01a8-280d-4848-8945-35913194e8a4-1785265817231 + [executable_block:62ab01a8-280d-4848-8945-35913194e8a4-1785265817231][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 1880d0bf-cbd6-43cb-b6d8-9a78fcfec370-1785265817231 + [loading_requirement_container_meta:1880d0bf-cbd6-43cb-b6d8-9a78fcfec370-1785265817231] = [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 + element_type = vanilla_button + instance_identifier = 50491 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 91 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = a72d1360-5986-4da7-96ed-2a1fe3fc7451-1785265817231 + [loading_requirement_container_meta:a72d1360-5986-4da7-96ed-2a1fe3fc7451-1785265817231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 9b07ea9e-7fca-4d05-a8ad-456d60da3a46-1785265817232 + [executable_block:9b07ea9e-7fca-4d05-a8ad-456d60da3a46-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4b157b69-c11c-473d-9515-bdac3a71ae59-1785265817232 + [loading_requirement_container_meta:4b157b69-c11c-473d-9515-bdac3a71ae59-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 504163 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 163 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ea471901-b300-4093-9d99-dd42dead741d-1785265817232 + [loading_requirement_container_meta:ea471901-b300-4093-9d99-dd42dead741d-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = b36b7a00-6bbf-4aba-9af7-067855e6adee-1785265817231 + [executable_block:b36b7a00-6bbf-4aba-9af7-067855e6adee-1785265817231][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d97f8ada-fb6b-485b-87fd-6b292e4faf7d-1785265817231 + [loading_requirement_container_meta:d97f8ada-fb6b-485b-87fd-6b292e4faf7d-1785265817231] = [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 + element_type = vanilla_button + instance_identifier = 34629 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 29 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 210e25f1-4f8b-45d6-9319-c993bd07da98-1785265817231 + [loading_requirement_container_meta:210e25f1-4f8b-45d6-9319-c993bd07da98-1785265817231] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 7f454199-0e65-40a7-826a-23b41d899c47-1785265817232 + [executable_block:7f454199-0e65-40a7-826a-23b41d899c47-1785265817232][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 3361d6bd-1ac2-4131-8289-013c398e9e43-1785265817232 + [loading_requirement_container_meta:3361d6bd-1ac2-4131-8289-013c398e9e43-1785265817232] = [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 + element_type = vanilla_button + instance_identifier = 504115 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 115 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 405f915a-12e3-4c23-a534-216c9727cb8d-1785265817232 + [loading_requirement_container_meta:405f915a-12e3-4c23-a534-216c9727cb8d-1785265817232] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/pause_screen_flashback.txt b/config/fancymenu/customization/pause_screen_flashback.txt new file mode 100644 index 0000000..bbf91ac --- /dev/null +++ b/config/fancymenu/customization/pause_screen_flashback.txt @@ -0,0 +1,1604 @@ +type = fancymenu_layout + +layout-meta { + identifier = pause_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785374120860 + is_enabled = false + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:36245b95-5b6d-438c-af45-de34ee332608-1785375900003] = [groups:][instances:] +} + +menu_background { + instance_identifier = 442efde4-9e65-449d-8867-a1d5204149bc-1781578379765 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 26c441e1-d2e2-4009-a826-c6e9e4b1f235-1781578379765 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 8a46edbf-8e30-4baa-9b66-81e6b9b7f509-1781578379765 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = eaaa0cad-2907-4d9b-8f04-0d6470d8182f-1781578379765 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 01ccebb5-99d1-4f76-aa6c-85728655c01b-1781578379765 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 2f51cd0e-9ee6-4c20-8136-c3a07b48e3d4-1781578379766 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 06adef1d-de66-4ca7-825a-bdb3ef59de1b-1781578379766 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 886ba07e-4f78-47b7-997e-89ec49f4429c-1781578379766 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 9acf482d-f94e-4f85-b552-a6b5c282b373-1781578379766 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = d7bc8c9d-756a-461b-9a19-3448f299531d-1781578379766 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 6b9a32e7-e443-4e72-9790-e6d5346e3b88-1781578379766 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = d7c18805-f75c-453f-8c49-eed7e3fcdf21-1781578379766 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 1336a6d9-850a-4d5f-bc87-f553927dbb16-1781578379766 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 3c4f657d-3917-48a0-a945-373e36dc2359-1781578379766 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 27368cae-2fce-4a73-8e63-86d34407a97b-1781578379766 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = a0bc9e80-e16b-4db4-b529-ee145d38c431-1781578379766 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 3ee77397-fa0d-4a29-8e22-91c1c6bc33f0-1781578379766 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = b7f3d101-eb91-4b3e-a4ed-9d14e289c6bc-1781578379766 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = a80635e1-4e79-4af4-b1e4-4f80b1a6c1d7-1781578379766 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:c94f4566-65c1-4cb6-819c-9a6612fb1516-1781578610625][action_type:disable_layout] = pause_screen_layout_1 + [executable_action_instance:d9800572-8c0a-42fb-bc78-26533ba77262-1781578668253][action_type:enable_layout] = pause_screen_layout + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:c94f4566-65c1-4cb6-819c-9a6612fb1516-1781578610625;d9800572-8c0a-42fb-bc78-26533ba77262-1781578668253;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/replay.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = DEACTIVATE%n%REPLAY MODE + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = c313f6f2-f8cb-42f0-95b0-f47a3759ef5f-1781578800878 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-right + x = -31 + y = -30 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + element_type = image + instance_identifier = 9ae35c7e-403b-452f-ad0b-28d63b928869-1785264343280 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = 99d0a16a-893e-4efc-858d-ff9ed1d4fd55-1781268312484 + [loading_requirement_container_meta:99d0a16a-893e-4efc-858d-ff9ed1d4fd55-1781268312484] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = 278d2a0e-0866-4378-9f1b-8aebb41ca9be-1785266033838 + [executable_action_instance:4a514ad2-861d-43f4-9c72-691a16fe9ca0-1785266088036][action_type:mimicbutton] = pause_screen:pause_options_button + [executable_action_instance:e2b5291c-cf66-401b-bfb6-c42f1840fd7d-1785266137918][action_type:set_variable] = is_ingame:true + [executable_block:278d2a0e-0866-4378-9f1b-8aebb41ca9be-1785266033838][type:generic] = [executables:4a514ad2-861d-43f4-9c72-691a16fe9ca0-1785266088036;e2b5291c-cf66-401b-bfb6-c42f1840fd7d-1785266137918;] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Settings + navigatable = true + widget_active_state_requirement_container_identifier = acf8dff0-d668-4e24-a18f-41654ed4d45c-1785266033838 + [loading_requirement_container_meta:acf8dff0-d668-4e24-a18f-41654ed4d45c-1785266033838] = [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 + element_type = custom_button + instance_identifier = d048edd0-732a-406a-a09d-9009b6d92a84-1785266033838 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = 7 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e68a2a8-6f48-4f08-addc-907fc3004bcd-1785266033838 + [loading_requirement_container_meta:2e68a2a8-6f48-4f08-addc-907fc3004bcd-1785266033838] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 278d2a0e-0866-4378-9f1b-8aebb41ca9be-1785266033838 + [executable_action_instance:4a514ad2-861d-43f4-9c72-691a16fe9ca0-1785266088036][action_type:mimicbutton] = pause_screen:538306 + [executable_block:278d2a0e-0866-4378-9f1b-8aebb41ca9be-1785266033838][type:generic] = [executables:4a514ad2-861d-43f4-9c72-691a16fe9ca0-1785266088036;] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Mod Menu + navigatable = true + widget_active_state_requirement_container_identifier = acf8dff0-d668-4e24-a18f-41654ed4d45c-1785266033838 + [loading_requirement_container_meta:acf8dff0-d668-4e24-a18f-41654ed4d45c-1785266033838] = [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 + element_type = custom_button + instance_identifier = c5e2a2e9-9958-4952-99fd-dcade820c08d-1785270323083 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 4 + y = 7 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 2e68a2a8-6f48-4f08-addc-907fc3004bcd-1785266033838 + [loading_requirement_container_meta:2e68a2a8-6f48-4f08-addc-907fc3004bcd-1785266033838] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = ed3e0179-6e63-4894-a627-17de39502752-1781578379769 + [executable_block:ed3e0179-6e63-4894-a627-17de39502752-1781578379769][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 052fba9d-f8cc-4d89-aa37-f2004d8be9e1-1781578379769 + [loading_requirement_container_meta:052fba9d-f8cc-4d89-aa37-f2004d8be9e1-1781578379769] = [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 + element_type = vanilla_button + instance_identifier = pause_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 153 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = d8767e4a-0dca-4117-9c64-b4f129532866-1781578379769 + [loading_requirement_container_meta:d8767e4a-0dca-4117-9c64-b4f129532866-1781578379769] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 718a9c1d-f7a8-4013-bf5d-5efb8d6a5f4f-1785270300208 + [executable_block:718a9c1d-f7a8-4013-bf5d-5efb8d6a5f4f-1785270300208][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c2da25ce-0f45-4288-8604-4d8376319d10-1785270300208 + [loading_requirement_container_meta:c2da25ce-0f45-4288-8604-4d8376319d10-1785270300208] = [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 + element_type = vanilla_button + instance_identifier = 606282 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 106 + y = -41 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 16568d6d-fb90-412a-a7b4-ab03cc5cb8e6-1785270300208 + [loading_requirement_container_meta:16568d6d-fb90-412a-a7b4-ab03cc5cb8e6-1785270300208] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 9605f8ff-7bda-4a77-a892-bfb397d87d19-1785270300208 + [executable_block:9605f8ff-7bda-4a77-a892-bfb397d87d19-1785270300208][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 03413cad-1236-43f7-aa17-262c6399fc52-1785270300208 + [loading_requirement_container_meta:03413cad-1236-43f7-aa17-262c6399fc52-1785270300208] = [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 + element_type = vanilla_button + instance_identifier = pause_send_feedback_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -17 + width = 45 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 7cb81172-dd4b-4a51-8e2f-9ac82349b2eb-1785270300208 + [loading_requirement_container_meta:7cb81172-dd4b-4a51-8e2f-9ac82349b2eb-1785270300208] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = b4d6769b-a170-47a5-8b8e-f1bdaa80431d-1781578379770 + [executable_block:b4d6769b-a170-47a5-8b8e-f1bdaa80431d-1781578379770][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 15c83187-0ee1-4e6f-98f4-3c20146c5b79-1781578379770 + [loading_requirement_container_meta:15c83187-0ee1-4e6f-98f4-3c20146c5b79-1781578379770] = [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 + element_type = vanilla_button + instance_identifier = pause_disconnect_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1167 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = 31 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = e41ef5a6-3be4-4530-b259-f89b31cd2912-1781578379769 + [loading_requirement_container_meta:e41ef5a6-3be4-4530-b259-f89b31cd2912-1781578379769] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = fff3e6e3-da70-450b-ab6d-aba2de97987c-1781578379768 + [executable_block:fff3e6e3-da70-450b-ab6d-aba2de97987c-1781578379768][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 08f0cfef-6789-4ba0-83fb-b968123021d8-1781578379768 + [loading_requirement_container_meta:08f0cfef-6789-4ba0-83fb-b968123021d8-1781578379768] = [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 + element_type = vanilla_button + instance_identifier = pause_advancements_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -41 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f3471421-860e-4267-81b9-1e5aab5bcd01-1781578379768 + [loading_requirement_container_meta:f3471421-860e-4267-81b9-1e5aab5bcd01-1781578379768] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 5f705b81-f245-4253-88e4-de313be9a5aa-1781578379769 + [executable_block:5f705b81-f245-4253-88e4-de313be9a5aa-1781578379769][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f7655f6f-667b-45f8-b9d0-9f64b90c4d4c-1781578379769 + [loading_requirement_container_meta:f7655f6f-667b-45f8-b9d0-9f64b90c4d4c-1781578379769] = [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 + element_type = vanilla_button + instance_identifier = pause_report_bugs_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 57 + y = -17 + width = 45 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f913f7cc-d334-4cac-983f-0968cd00fd42-1781578379769 + [loading_requirement_container_meta:f913f7cc-d334-4cac-983f-0968cd00fd42-1781578379769] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 86df241e-5585-4430-a1bd-c6df27853949-1785270300208 + [executable_block:86df241e-5585-4430-a1bd-c6df27853949-1785270300208][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = e9dc45c5-5353-4d00-a214-0998c36f241b-1785270300208 + [loading_requirement_container_meta:e9dc45c5-5353-4d00-a214-0998c36f241b-1785270300208] = [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 + element_type = vanilla_button + instance_identifier = 490306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -49 + y = -17 + width = 45 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 2d9d3f9c-56c3-4bf7-9806-caf9d3a8a55f-1785270300208 + [loading_requirement_container_meta:2d9d3f9c-56c3-4bf7-9806-caf9d3a8a55f-1785270300208] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 27c173bb-ac51-4610-b1a4-91a57ebf7aa2-1781578379769 + [executable_block:27c173bb-ac51-4610-b1a4-91a57ebf7aa2-1781578379769][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 7216ef3a-80a8-4be7-87d0-62f211d42ba9-1781578379769 + [loading_requirement_container_meta:7216ef3a-80a8-4be7-87d0-62f211d42ba9-1781578379769] = [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 + element_type = vanilla_button + instance_identifier = pause_share_to_lan_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 5 + y = -17 + width = 45 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 15c58536-bf2e-4e35-8f88-dc4be51f5a22-1781578379769 + [loading_requirement_container_meta:15c58536-bf2e-4e35-8f88-dc4be51f5a22-1781578379769] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 98f7b489-2e82-496f-9dd3-f96157b7d587-1781578379768 + [executable_block:98f7b489-2e82-496f-9dd3-f96157b7d587-1781578379768][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 5356d703-9ae6-4bef-b6f1-a11b4640fcb4-1781578379768 + [loading_requirement_container_meta:5356d703-9ae6-4bef-b6f1-a11b4640fcb4-1781578379768] = [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 + element_type = vanilla_button + instance_identifier = pause_return_to_game_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-centered + x = -102 + y = -65 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 890d635f-4100-4bbe-934b-d000fb59a142-1781578379768 + [loading_requirement_container_meta:890d635f-4100-4bbe-934b-d000fb59a142-1781578379768] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 158c139c-5cca-4a69-afd2-ef9ce296c162-1781578379769 + [executable_block:158c139c-5cca-4a69-afd2-ef9ce296c162-1781578379769][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 1ac080dd-503a-4dba-89af-5f149089914b-1781578379769 + [loading_requirement_container_meta:1ac080dd-503a-4dba-89af-5f149089914b-1781578379769] = [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 + element_type = vanilla_button + instance_identifier = pause_stats_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-centered + x = 4 + y = -41 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 67bc96a8-380d-42d8-a9ee-173097c7e0ff-1781578379768 + [loading_requirement_container_meta:67bc96a8-380d-42d8-a9ee-173097c7e0ff-1781578379768] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 74ac4a96-c807-4f73-8d75-34403d19b087-1785270300208 + [executable_block:74ac4a96-c807-4f73-8d75-34403d19b087-1785270300208][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ae2ae3a0-2bef-46e5-beab-0bc416dd3554-1785270300208 + [loading_requirement_container_meta:ae2ae3a0-2bef-46e5-beab-0bc416dd3554-1785270300208] = [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 + element_type = vanilla_button + instance_identifier = 538306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 278 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = bc865b6f-b325-4d7f-b6d1-8f6a22229e22-1785270300208 + [loading_requirement_container_meta:bc865b6f-b325-4d7f-b6d1-8f6a22229e22-1785270300208] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = f206d2ba-fbd2-42e6-91c8-741323fb2c4c-1781578379770 + [executable_block:f206d2ba-fbd2-42e6-91c8-741323fb2c4c-1781578379770][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 769cef11-a205-4d9b-a2f5-2ff0098618e7-1781578379770 + [loading_requirement_container_meta:769cef11-a205-4d9b-a2f5-2ff0098618e7-1781578379770] = [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 + element_type = vanilla_button + instance_identifier = 47440 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 214 + y = 40 + width = 52 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 07a80071-88fb-4e6f-818f-229571f201b4-1781578379770 + [loading_requirement_container_meta:07a80071-88fb-4e6f-818f-229571f201b4-1781578379770] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/pause_screen_multiplayer.txt b/config/fancymenu/customization/pause_screen_multiplayer.txt new file mode 100644 index 0000000..cc019a4 --- /dev/null +++ b/config/fancymenu/customization/pause_screen_multiplayer.txt @@ -0,0 +1,2362 @@ +type = fancymenu_layout + +layout-meta { + identifier = pause_screen + render_custom_elements_behind_vanilla = true + last_edited_time = 1785386771220 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:6719b105-124e-4cb9-b50e-c401d73f299f-1785386771423] = [groups:][instances:3d85e94e-124d-4f6a-af7c-91440b5f3899-1785375111925;] + [loading_requirement:fancymenu_loading_requirement_is_multiplayer][requirement_mode:if][req_id:3d85e94e-124d-4f6a-af7c-91440b5f3899-1785375111925] = +} + +menu_background { + instance_identifier = 47a6b6bb-a38a-4108-bd77-11c281d93173-1781268051646 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 3fec24c5-58d8-4720-9ce3-1dc3433c6868-1781268051646 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = e4cade70-c511-47a0-b5b9-d6d30714f297-1781268051646 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 0b8ce1a4-71ef-471e-a58c-5579be40e3e5-1781268051646 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = a8916ebe-c5a9-4b32-8f33-793550dd7353-1781268051646 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 7a8de234-a6ce-4461-853c-8b0457cf38e3-1781268051646 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 4a1c8f90-1368-4b9c-8c4b-ad2122fe646c-1781268051646 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 92fcd573-410f-465b-8e01-9363b3e08de5-1781268051646 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 66df7409-05cb-4d1a-936f-15b5e31fb807-1781268051646 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = e0c77d4c-621a-4719-8d35-2d97d3d253d5-1781268051646 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 5d4ed936-5491-405e-8666-d707bd8e764d-1781268051646 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 8a3dccd5-d7e4-4762-bad2-c0237371fd2d-1781268051646 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = c48f0654-0c2d-4b40-a9d9-3192af35a992-1781268051646 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 1c2de85a-e887-4c29-9e11-32756e591ba0-1781268051646 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 3a8c1811-f7d6-45d9-bbb6-e10004b92a87-1781268051646 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 9dac5926-6775-473e-b9c2-9662f6e4d5bc-1781268051646 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = e4f63ef2-a382-409f-81c4-c2d70dffc640-1781268051646 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 7f9177ba-fe45-4cff-8e16-ea9d801f9779-1781268051646 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = c961d86c-44d5-4f8d-af20-558e35de82a9-1781268051646 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { + element_type = image + instance_identifier = f69a6992-04db-4c66-bd0f-5a8fb777c49c-1781268312484 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = 99d0a16a-893e-4efc-858d-ff9ed1d4fd55-1781268312484 + [loading_requirement_container_meta:99d0a16a-893e-4efc-858d-ff9ed1d4fd55-1781268312484] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:afc9c521-f0a7-40c5-9bdb-5db1d9871dc2-1785375623462][action_type:mimicbutton] = pause_screen:pause_disconnect_button + [executable_action_instance:3c726f43-86f8-4199-934c-41237a2db1bb-1785375726749][action_type:opengui] = bte_layout + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:afc9c521-f0a7-40c5-9bdb-5db1d9871dc2-1785375623462;3c726f43-86f8-4199-934c-41237a2db1bb-1785375726749;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/leave.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/leave.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = 8c434950-ae21-4449-b7e4-415cd8718904-1781269222503 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -85 + y = 24 + width = 170 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:0b519c1c-057c-4207-855c-7e2a9394a5d6-1781347540273][action_type:mimicbutton] = pause_screen:pause_return_to_game_button + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:0b519c1c-057c-4207-855c-7e2a9394a5d6-1781347540273;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/continue.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/continue.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = 426145a9-d3b4-4880-bc51-987c4b263973-1781347514866 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -85 + y = -28 + width = 170 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755][action_type:mimicbutton] = pause_screen:pause_options_button + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/setting.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/setting.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = d0d67642-0e72-45bc-bd7a-ddaf297639cb-1781347550960 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -85 + y = -2 + width = 84 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:3bdbf0ad-1a01-43b8-909a-79b1c3888c7a-1781348015538][action_type:mimicbutton] = pause_screen:398306 + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:3bdbf0ad-1a01-43b8-909a-79b1c3888c7a-1781348015538;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_legacy.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_legacy_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/mod.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/mod.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = 8655c37b-30d6-48a3-b637-bd357b9fd506-1781347555098 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 1 + y = -2 + width = 84 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755][action_type:mimicbutton] = pause_screen:pause_stats_button + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755;] + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/statistic.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/statistic.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = e4b13733-7b24-43f3-8e7c-4169bde81f65-1781348771989 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-centered + x = -60 + y = -25 + width = 120 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755][action_type:mimicbutton] = pause_screen:pause_share_to_lan_button + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755;] + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/player_report.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/player_report.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = ebd75cc6-2df2-4cb0-8013-e14cd2b37766-1781349076031 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-centered + x = 61 + y = -25 + width = 120 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503 + [executable_action_instance:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755][action_type:mimicbutton] = pause_screen:pause_advancements_button + [executable_block:c12fdf83-7606-466e-9cf2-48f8e300db7b-1781269222503][type:generic] = [executables:2bc9df6a-b06f-44a7-9d92-73c901f5bfc9-1781347993755;] + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/advance.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/advance.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503 + [loading_requirement_container_meta:dfc7b296-6c90-4087-aebc-5d68ad71275e-1781269222503] = [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 + element_type = custom_button + instance_identifier = e5fa14ae-0744-4e1f-b8c3-171d88d73cb1-1781349276016 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-centered + x = -181 + y = -25 + width = 120 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 18272a42-e906-4c09-9b69-93473bda85b1-1781269222503 + [loading_requirement_container_meta:18272a42-e906-4c09-9b69-93473bda85b1-1781269222503] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:59daab7b-6574-467e-9b16-7355382f8254-1785303948734][action_type:mimicbutton] = pause_screen:606282 + [executable_action_instance:ad35f858-6a79-4edc-9118-36175129682d-1785304387792][action_type:set_variable] = is_flashback_recording:true + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:59daab7b-6574-467e-9b16-7355382f8254-1785303948734;ad35f858-6a79-4edc-9118-36175129682d-1785304387792;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:location]flashback:icon_pixelated_start.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = ACTIVATE%n%REPLAY MODE + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = f1780295-8153-43c0-98be-b8573e2956ea-1785303595541 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-right + x = -154 + y = -148 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:6547b17a-58b1-43cf-916c-b45ff8809e11-1785304297286;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:6547b17a-58b1-43cf-916c-b45ff8809e11-1785304297286] = is_flashback_recording:false + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:59daab7b-6574-467e-9b16-7355382f8254-1785303948734][action_type:mimicbutton] = pause_screen:606282 + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:59daab7b-6574-467e-9b16-7355382f8254-1785303948734;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:location]flashback:icon_pixelated_finish.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = ACTIVATE%n%REPLAY MODE + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = dae7f5e4-36e5-49e1-88f9-75b994d536c5-1785304229183 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-right + x = -154 + y = -174 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:group_1;][instances:] + [loading_requirement_group:group_1] = [group_mode:or] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][group:group_1][req_id:3d692b16-e291-4e05-b97e-9ca795fbb7dd-1785307707690] = is_flashback_recording:true + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][group:group_1][req_id:b9df8fa8-2472-4765-a95b-4f055ee946d9-1785307716691] = is_flashback_recording:paused + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:59daab7b-6574-467e-9b16-7355382f8254-1785303948734][action_type:mimicbutton] = pause_screen:606330 + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:59daab7b-6574-467e-9b16-7355382f8254-1785303948734;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:location]flashback:icon_pixelated_cancel.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = ACTIVATE%n%REPLAY MODE + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 9da3dcbf-50b5-425e-8031-2fe7d8327633-1785304247434 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-right + x = -154 + y = -122 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:group_1;][instances:] + [loading_requirement_group:group_1] = [group_mode:or] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][group:group_1][req_id:4d5e4053-b7f5-4e7d-a0d4-5230145f849e-1785307752192] = is_flashback_recording:true + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][group:group_1][req_id:f9eee26b-9586-4c26-b7cd-c63a526f3275-1785307760861] = is_flashback_recording:paused + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:59daab7b-6574-467e-9b16-7355382f8254-1785303948734][action_type:mimicbutton] = pause_screen:606306 + [executable_action_instance:7b072961-6d8d-4d33-936d-ee5d5d27e021-1785307904252][action_type:set_variable] = is_flashback_recording:paused + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:59daab7b-6574-467e-9b16-7355382f8254-1785303948734;7b072961-6d8d-4d33-936d-ee5d5d27e021-1785307904252;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:location]flashback:icon_pixelated_pause.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = ACTIVATE%n%REPLAY MODE + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 0a6fcfd1-ec63-4f1a-8650-02b22144701d-1785304275001 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-right + x = -154 + y = -148 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:9b1f31e9-270d-4d1e-bb4b-a89d4634becb-1785304539184;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:9b1f31e9-270d-4d1e-bb4b-a89d4634becb-1785304539184] = is_flashback_recording:true + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:59daab7b-6574-467e-9b16-7355382f8254-1785303948734][action_type:mimicbutton] = pause_screen:606306 + [executable_action_instance:2f04e283-5f3b-409e-8e7b-ca47b7a53c15-1785307957355][action_type:set_variable] = is_flashback_recording:true + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:59daab7b-6574-467e-9b16-7355382f8254-1785303948734;2f04e283-5f3b-409e-8e7b-ca47b7a53c15-1785307957355;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:location]flashback:icon_pixelated_start.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = ACTIVATE%n%REPLAY MODE + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 56054452-2da2-447d-a0f7-4376c46886e6-1785307778478 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-right + x = -154 + y = -148 + width = 25 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:eaf82548-1365-49a3-b73d-5f3a38521aa9-1785307852116;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:eaf82548-1365-49a3-b73d-5f3a38521aa9-1785307852116] = is_flashback_recording:paused + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = 0f27a18f-fbed-4e77-9151-f2a73ac09d64-1781268051648 + [executable_block:0f27a18f-fbed-4e77-9151-f2a73ac09d64-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c0938a97-d267-4652-b1a5-a9ec0a456624-1781268051648 + [loading_requirement_container_meta:c0938a97-d267-4652-b1a5-a9ec0a456624-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = pause_return_to_game_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = mid-left + x = 30 + y = -20 + width = 135 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = d845a105-6503-4b43-a383-730c4e8d0722-1781268051648 + [loading_requirement_container_meta:d845a105-6503-4b43-a383-730c4e8d0722-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 45829d58-39a7-4474-a983-5d91c737dd19-1785270164565 + [executable_block:45829d58-39a7-4474-a983-5d91c737dd19-1785270164565][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 83ca79e7-0561-46b5-8007-f1d0c9fd0c70-1785270164565 + [loading_requirement_container_meta:83ca79e7-0561-46b5-8007-f1d0c9fd0c70-1785270164565] = [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 + element_type = vanilla_button + instance_identifier = 538306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 278 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8bb9662b-f58a-4861-8ffc-eceeaf4b8c14-1785270164565 + [loading_requirement_container_meta:8bb9662b-f58a-4861-8ffc-eceeaf4b8c14-1785270164565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 6c7e2a93-1a27-481f-9417-4ce5f65fd2da-1781268051648 + [executable_block:6c7e2a93-1a27-481f-9417-4ce5f65fd2da-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = e7f87b7b-37c8-43d7-b62c-194bc0cbf292-1781268051648 + [loading_requirement_container_meta:e7f87b7b-37c8-43d7-b62c-194bc0cbf292-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = pause_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = pause_return_to_game_button + x = 0 + y = 30 + width = 135 + height = 25 + stay_on_screen = true + element_loading_requirement_container_identifier = a24ba4d8-17bc-4e0a-825d-01a16d9b064f-1781268051648 + [loading_requirement_container_meta:a24ba4d8-17bc-4e0a-825d-01a16d9b064f-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = f22d0fb2-e3fc-4232-81ac-3712b066c263-1785303578951 + [executable_block:f22d0fb2-e3fc-4232-81ac-3712b066c263-1785303578951][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 1fdaaf2b-3ba7-4182-bddd-2695ca290057-1785303578951 + [loading_requirement_container_meta:1fdaaf2b-3ba7-4182-bddd-2695ca290057-1785303578951] = [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 + element_type = vanilla_button + instance_identifier = 606282 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = 151 + y = -23 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 737aade1-dcd5-4d1b-a149-22b107adb9a1-1785303578951 + [loading_requirement_container_meta:737aade1-dcd5-4d1b-a149-22b107adb9a1-1785303578951] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = f0f86292-f045-4dfb-8d23-6ac5c57005cf-1781552210729 + [executable_block:f0f86292-f045-4dfb-8d23-6ac5c57005cf-1781552210729][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b38ed471-b150-47ca-b1fb-69cee4c6396d-1781552210729 + [loading_requirement_container_meta:b38ed471-b150-47ca-b1fb-69cee4c6396d-1781552210729] = [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 + element_type = vanilla_button + instance_identifier = pause_share_to_lan_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 254 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 1358cced-ced5-4a10-873b-b35e3730dd18-1781552210729 + [loading_requirement_container_meta:1358cced-ced5-4a10-873b-b35e3730dd18-1781552210729] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = a1818172-5f60-4535-8e74-ab033f7a014e-1785270164565 + [executable_block:a1818172-5f60-4535-8e74-ab033f7a014e-1785270164565][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a68059d4-f739-426f-a792-4128d8ad964d-1785270164565 + [loading_requirement_container_meta:a68059d4-f739-426f-a792-4128d8ad964d-1785270164565] = [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 + element_type = vanilla_button + instance_identifier = pause_send_feedback_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 206 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 33b2016c-7538-482f-a6d2-ccabe5327816-1785270164565 + [loading_requirement_container_meta:33b2016c-7538-482f-a6d2-ccabe5327816-1785270164565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 03355942-cef6-48f3-9236-190e54093265-1781268051648 + [executable_block:03355942-cef6-48f3-9236-190e54093265-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f62fab28-b234-4bfe-9ca0-f07f42d6b240-1781268051648 + [loading_requirement_container_meta:f62fab28-b234-4bfe-9ca0-f07f42d6b240-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = pause_advancements_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = pause_return_to_game_button + x = 5 + y = 110 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4974b0f1-ea25-4a1b-b291-cd84678a02e4-1781268051648 + [loading_requirement_container_meta:4974b0f1-ea25-4a1b-b291-cd84678a02e4-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = e7883b2b-fa6e-4ee8-a8f3-27114b843c2c-1781268051648 + [executable_block:e7883b2b-fa6e-4ee8-a8f3-27114b843c2c-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = cd63a81e-db53-4d1c-a6a3-d02347e62402-1781268051648 + [loading_requirement_container_meta:cd63a81e-db53-4d1c-a6a3-d02347e62402-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = pause_disconnect_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = pause_return_to_game_button + x = 0 + y = 78 + width = 134 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = f99545fb-7ff9-4c45-95b3-e2962e7f36d4-1781268051648 + [loading_requirement_container_meta:f99545fb-7ff9-4c45-95b3-e2962e7f36d4-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 9cae6f30-af19-44d0-96f8-a5df9dee82f0-1785270164565 + [executable_block:9cae6f30-af19-44d0-96f8-a5df9dee82f0-1785270164565][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 7c191a9e-a3a5-4d6b-8c48-81a32094c4d6-1785270164565 + [loading_requirement_container_meta:7c191a9e-a3a5-4d6b-8c48-81a32094c4d6-1785270164565] = [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 + element_type = vanilla_button + instance_identifier = 490306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 230 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ed39e7d8-d2de-4d73-98a9-a60740ff7e33-1785270164565 + [loading_requirement_container_meta:ed39e7d8-d2de-4d73-98a9-a60740ff7e33-1785270164565] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 44e8d29b-0092-4494-8320-d5fa66a6a215-1781268051648 + [executable_block:44e8d29b-0092-4494-8320-d5fa66a6a215-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6df8eb31-e753-4325-b7d0-80085c5f89c2-1781268051648 + [loading_requirement_container_meta:6df8eb31-e753-4325-b7d0-80085c5f89c2-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = pause_stats_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = pause_return_to_game_button + x = 5 + y = 90 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = aad37bef-df1e-4a8f-85d7-212ee1be9d7e-1781268051648 + [loading_requirement_container_meta:aad37bef-df1e-4a8f-85d7-212ee1be9d7e-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 14bd0ab7-617e-4eda-b3b9-9cb78406f570-1781268051648 + [executable_block:14bd0ab7-617e-4eda-b3b9-9cb78406f570-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d6a7a571-0daf-49e7-9bf6-c12d5e1c8356-1781268051648 + [loading_requirement_container_meta:d6a7a571-0daf-49e7-9bf6-c12d5e1c8356-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = 47440 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 214 + y = 40 + width = 52 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = f992fa81-ee0d-4241-85ca-e60594ad6c29-1781268051648 + [loading_requirement_container_meta:f992fa81-ee0d-4241-85ca-e60594ad6c29-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = c89f8fd7-bdda-41f0-a752-66eaab06493f-1781268051648 + [executable_block:c89f8fd7-bdda-41f0-a752-66eaab06493f-1781268051648][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 1fa93dc0-c610-4741-b3c3-37f8f35fe0dd-1781268051648 + [loading_requirement_container_meta:1fa93dc0-c610-4741-b3c3-37f8f35fe0dd-1781268051648] = [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 + element_type = vanilla_button + instance_identifier = pause_report_bugs_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-right + x = -500 + y = -107 + width = 74 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 3bd1aa1e-85fd-47ec-a469-a6b0ad2970ab-1781268051648 + [loading_requirement_container_meta:3bd1aa1e-85fd-47ec-a469-a6b0ad2970ab-1781268051648] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/pause_screen_replaymod.txt b/config/fancymenu/customization/pause_screen_replaymod.txt new file mode 100644 index 0000000..711edb8 --- /dev/null +++ b/config/fancymenu/customization/pause_screen_replaymod.txt @@ -0,0 +1,1387 @@ +type = fancymenu_layout + +layout-meta { + identifier = pause_screen + render_custom_elements_behind_vanilla = true + last_edited_time = 1785374115728 + is_enabled = false + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:85287809-843e-4547-a54e-bd3ae7372d35-1785375900034] = [groups:][instances:59131ecc-54ed-458d-a9f2-4956c3e43652-1785374087672;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:59131ecc-54ed-458d-a9f2-4956c3e43652-1785374087672] = replay_mode:replaymod +} + +menu_background { + instance_identifier = 30e023cf-d563-4ffb-83f4-413907fa148a-1785373837275 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 6193c437-181a-4f59-b836-dfe423f7fc53-1785373837275 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 2947eb86-049a-4c58-acea-7b1029332319-1785373837275 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = b835d57a-c804-492f-91b2-a99b0e69ec2a-1785373837275 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 522a8016-c20b-4d79-a34e-53f237138722-1785373837275 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = a0749b3a-5db4-42d9-bb4a-6b337eb9e119-1785373837275 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = ba981988-f2c0-426e-840e-218621967d6b-1785373837275 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = cc754360-c571-4c23-bfe6-27a3baeec42a-1785373837275 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = d47a1d6e-ce6d-4331-947f-b4cccc95c2b4-1785373837275 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = ddf4ef04-0c7a-40a4-9b31-69e4d8c39564-1785373837275 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = b4f24de4-e855-414a-aee8-b144ad277606-1785373837275 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = c1a56f5a-f7d9-4c79-abea-fa708ee2e354-1785373837275 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 33306566-bdcb-41b0-aaa8-b9112d9e52e3-1785373837277 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 6ac3b582-d870-4be4-9e03-e69834321207-1785373837277 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 4c29b326-8cbd-4e23-b529-e5a3f56321e5-1785373837277 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 2195f479-facd-4cf5-9e9f-7ce684daf512-1785373837277 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 15c36302-7efa-4af9-adad-35721aa16f39-1785373837277 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 0bccc8c5-3c97-4455-ad68-11d7acdb44ee-1785373837277 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 59b7ecd7-b34d-4e9f-a9fb-49fc94c72e0f-1785373837277 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 { + interactable = false + source = ^^^%n%ReplayMod Mode%n%^^^ + source_mode = direct + shadow = true + enable_scrolling = false + 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 + click_event_color = #0771FCFF + hover_event_color = #0771FCFF + quote_color = #818181FF + quote_italic = false + bullet_list_dot_color = #A9A9A9FF + parse_markdown = true + table_show_header = true + table_alternate_row_colors = true + table_line_color = #787878FF + table_header_background_color = #323232FF + table_row_background_color = #282828FF + table_alternate_row_color = #3C3C3CFF + element_type = text_v2 + instance_identifier = 2ba06b1c-324d-45af-9eed-d8b176ebac32-1785373950466 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -100 + y = -109 + width = 200 + height = 14 + stay_on_screen = true + element_loading_requirement_container_identifier = d8c85e81-a7e2-479b-9fb9-198d59e66486-1785373950466 + [loading_requirement_container_meta:d8c85e81-a7e2-479b-9fb9-198d59e66486-1785373950466] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + base_color = #FFFFFFFF + scale = 1.0 + text_border = 2 + line_spacing = 2 + quote_indent = 8 + bullet_list_indent = 8 + bullet_list_spacing = 3 + table_line_thickness = 1.0 + table_cell_padding = 8.0 + table_margin = 4.0 +} + +vanilla_button { + button_element_executable_block_identifier = 2f62eff0-77ed-494f-819e-ac6327fe991b-1785373837280 + [executable_block:2f62eff0-77ed-494f-819e-ac6327fe991b-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Settings + navigatable = true + widget_active_state_requirement_container_identifier = fc8eb719-7b63-4f68-a71d-af7f99ae7198-1785373837280 + [loading_requirement_container_meta:fc8eb719-7b63-4f68-a71d-af7f99ae7198-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = top-centered + x = -102 + y = 153 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = d95ea2d9-f98a-4853-9de8-d21f82e914b1-1785373837280 + [loading_requirement_container_meta:d95ea2d9-f98a-4853-9de8-d21f82e914b1-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = bdfe14ce-c6c1-42de-ae0f-1d7a983f344b-1785373837280 + [executable_block:bdfe14ce-c6c1-42de-ae0f-1d7a983f344b-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 2d81c7c3-012c-426e-85f6-684aba3628c8-1785373837280 + [loading_requirement_container_meta:2d81c7c3-012c-426e-85f6-684aba3628c8-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = 538306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 278 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 1056c375-3d95-462b-8529-97af3573f54d-1785373837280 + [loading_requirement_container_meta:1056c375-3d95-462b-8529-97af3573f54d-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = a03c05f2-2792-45db-9d0f-93b2e3a231d8-1785373837280 + [executable_block:a03c05f2-2792-45db-9d0f-93b2e3a231d8-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 29115e54-9f93-44c1-bd08-3df6beafb785-1785373837280 + [loading_requirement_container_meta:29115e54-9f93-44c1-bd08-3df6beafb785-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_disconnect_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 177 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 6a4d9079-9f41-4ec6-8bf8-ff6ac2f5cf2f-1785373837280 + [loading_requirement_container_meta:6a4d9079-9f41-4ec6-8bf8-ff6ac2f5cf2f-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 279cbf6d-0801-4226-b8e4-301c16f2dc11-1785373837280 + [executable_block:279cbf6d-0801-4226-b8e4-301c16f2dc11-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 16fc811b-5543-47f4-94c6-53fd5fdb2f2c-1785373837280 + [loading_requirement_container_meta:16fc811b-5543-47f4-94c6-53fd5fdb2f2c-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = 490306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 230 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ab2ae7f8-fe2e-4217-b205-2344e4264088-1785373837280 + [loading_requirement_container_meta:ab2ae7f8-fe2e-4217-b205-2344e4264088-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = b58a0ae7-4d7d-4193-b465-0c3f36397c12-1785373837280 + [executable_block:b58a0ae7-4d7d-4193-b465-0c3f36397c12-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 27f63d74-b20c-4184-aa9a-1fa2f2cd02e2-1785373837280 + [loading_requirement_container_meta:27f63d74-b20c-4184-aa9a-1fa2f2cd02e2-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = 606282 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 346 + y = 105 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 144a224b-5601-442c-b18a-d231b11ad3e9-1785373837280 + [loading_requirement_container_meta:144a224b-5601-442c-b18a-d231b11ad3e9-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 873501d3-cdc7-4530-aa08-848639cf5354-1785373837280 + [executable_block:873501d3-cdc7-4530-aa08-848639cf5354-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4183a51e-b01e-49c7-8c97-37b3b17f0781-1785373837280 + [loading_requirement_container_meta:4183a51e-b01e-49c7-8c97-37b3b17f0781-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_share_to_lan_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 254 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = eee64bcf-a76a-46fc-b70e-01ed777a397c-1785373837280 + [loading_requirement_container_meta:eee64bcf-a76a-46fc-b70e-01ed777a397c-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 8a0cd239-13aa-403b-aa69-6e06969fbb76-1785373837280 + [executable_block:8a0cd239-13aa-403b-aa69-6e06969fbb76-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 95bc8f0b-3a68-47ed-966f-6a6f131bee25-1785373837280 + [loading_requirement_container_meta:95bc8f0b-3a68-47ed-966f-6a6f131bee25-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_stats_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = top-centered + x = 4 + y = 129 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 6d0fd62a-d205-4faa-8534-de9120f2c1b5-1785373837280 + [loading_requirement_container_meta:6d0fd62a-d205-4faa-8534-de9120f2c1b5-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 5f769ce0-0bd6-4040-a02d-81f3318e5f6d-1785373837280 + [executable_block:5f769ce0-0bd6-4040-a02d-81f3318e5f6d-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b01aaf06-b9fc-4516-8fb0-66bcbd36c25f-1785373837280 + [loading_requirement_container_meta:b01aaf06-b9fc-4516-8fb0-66bcbd36c25f-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_send_feedback_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 206 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = e8324bf0-093a-4024-8545-2d36ede1e648-1785373837280 + [loading_requirement_container_meta:e8324bf0-093a-4024-8545-2d36ede1e648-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = e7a18aa4-671f-4b2a-8ff9-fff9437f0337-1785373837280 + [executable_block:e7a18aa4-671f-4b2a-8ff9-fff9437f0337-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9711cb74-a9ca-45a6-a998-fb96218f48cb-1785373837280 + [loading_requirement_container_meta:9711cb74-a9ca-45a6-a998-fb96218f48cb-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_report_bugs_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 182 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4e749960-f7ac-4e94-9d3b-6f6053462b33-1785373837280 + [loading_requirement_container_meta:4e749960-f7ac-4e94-9d3b-6f6053462b33-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = d34cbeac-2514-4806-ae89-a55674887603-1785373837280 + [executable_block:d34cbeac-2514-4806-ae89-a55674887603-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 63c5df6e-701c-43a8-a13d-2b8a07de67a0-1785373837280 + [loading_requirement_container_meta:63c5df6e-701c-43a8-a13d-2b8a07de67a0-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = 47440 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 214 + y = 40 + width = 52 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 48c75d17-caeb-447f-b0a7-ece7fda2b4d9-1785373837280 + [loading_requirement_container_meta:48c75d17-caeb-447f-b0a7-ece7fda2b4d9-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 56ff496a-f1dc-47fa-b1fc-f60d89476465-1785373837280 + [executable_block:56ff496a-f1dc-47fa-b1fc-f60d89476465-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = Continue + navigatable = true + widget_active_state_requirement_container_identifier = 27f81e65-fb29-41f3-a950-f362727ac42c-1785373837280 + [loading_requirement_container_meta:27f81e65-fb29-41f3-a950-f362727ac42c-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_return_to_game_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = top-centered + x = -102 + y = 129 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = c5c448f5-0273-4d61-8ae4-c92c3fb44a02-1785373837280 + [loading_requirement_container_meta:c5c448f5-0273-4d61-8ae4-c92c3fb44a02-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = a60f0ce8-1670-4d0c-8ecc-d9bba8ce350f-1785373837280 + [executable_block:a60f0ce8-1670-4d0c-8ecc-d9bba8ce350f-1785373837280][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 79229c00-f32d-49a8-91e2-806243111775-1785373837280 + [loading_requirement_container_meta:79229c00-f32d-49a8-91e2-806243111775-1785373837280] = [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 + element_type = vanilla_button + instance_identifier = pause_advancements_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = top-centered + x = -102 + y = 129 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = e3abd4d0-270d-4c96-b06e-f03e74e7af53-1785373837280 + [loading_requirement_container_meta:e3abd4d0-270d-4c96-b06e-f03e74e7af53-1785373837280] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/config/fancymenu/customization/pause_screen_singleplayer.txt b/config/fancymenu/customization/pause_screen_singleplayer.txt new file mode 100644 index 0000000..e68ce0f --- /dev/null +++ b/config/fancymenu/customization/pause_screen_singleplayer.txt @@ -0,0 +1,1299 @@ +type = fancymenu_layout + +layout-meta { + identifier = pause_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785375602725 + is_enabled = false + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:1ba9dfa1-cc72-43ed-80f1-901af53fd3f0-1785375900041] = [groups:][instances:b05b1e76-8122-4787-bbfd-1201373fbce7-1785375093124;] + [loading_requirement:fancymenu_loading_requirement_is_singpleplayer][requirement_mode:if][req_id:b05b1e76-8122-4787-bbfd-1201373fbce7-1785375093124] = +} + +menu_background { + instance_identifier = 7d66e6fa-b0cb-4461-8ebb-4fbbec7eb39f-1785374196616 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 0bb1b0a2-7381-43a0-94a3-b1a7e8e47ba5-1785374196616 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 736eb145-6614-4760-a7c9-9ea1c2a7d47d-1785374196616 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 4643ddc7-a3c4-4de7-894a-88f16f57e113-1785374196616 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 1a896e07-77b8-4b1a-9138-6ba207cc5ff5-1785374196616 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 246c4697-a3ee-4c5c-be9c-6fb898aec957-1785374196616 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 66deb59f-a0fb-4b43-ac8b-5378496f048d-1785374196617 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = f85d6362-d924-452b-8a63-5b0f70d7b241-1785374196617 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = cf7b34dd-4fb2-42a1-ae60-87f4846747d2-1785374196617 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 46b45e5e-f927-4a62-8ae3-37ba5a058fbf-1785374196617 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 4d81ff2c-2067-4758-909b-4ea6b29f41da-1785374196617 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = a665b282-24fb-453c-bbe8-2702878c9c5c-1785374196617 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = eef6d8b9-1e0f-4895-b6f0-d269f0e6299d-1785374196617 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 83365bfa-6321-4aef-bd9e-ddd5221e1925-1785374196617 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 07ae1d91-7849-40bc-aaed-aca590465828-1785374196617 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 8d802e95-8445-4344-860c-462bc205fdb5-1785374196617 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 2b833630-ea4d-4a39-8d38-306c91fd73f1-1785374196617 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 311164b8-7e83-40c2-aea0-29e349cf51e6-1785374196617 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = a5202a19-6be9-4991-b55e-0c60571cd0bf-1785374196617 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = 9861f646-34a6-45cd-8799-ca8f165a76c5-1785374196620 + [executable_block:9861f646-34a6-45cd-8799-ca8f165a76c5-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 7db73cf6-73ad-48f6-b2a3-d55b1727d16a-1785374196620 + [loading_requirement_container_meta:7db73cf6-73ad-48f6-b2a3-d55b1727d16a-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = 538306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 278 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 49ce554a-0d0a-4b8f-ae23-8ecfd4342059-1785374196620 + [loading_requirement_container_meta:49ce554a-0d0a-4b8f-ae23-8ecfd4342059-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = c30378e9-558f-40fd-a5c1-1fae50f07800-1785374196620 + [executable_block:c30378e9-558f-40fd-a5c1-1fae50f07800-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 90aecb69-dd96-47a6-9148-542675701e87-1785374196620 + [loading_requirement_container_meta:90aecb69-dd96-47a6-9148-542675701e87-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_report_bugs_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 182 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 1c0a99a3-7ab4-41c4-af1f-222df20ec8c1-1785374196620 + [loading_requirement_container_meta:1c0a99a3-7ab4-41c4-af1f-222df20ec8c1-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 495e6c7b-d1d1-43df-a807-86c2b442101d-1785374196620 + [executable_block:495e6c7b-d1d1-43df-a807-86c2b442101d-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 03f95448-cdb9-4709-8726-6d1f0923c375-1785374196620 + [loading_requirement_container_meta:03f95448-cdb9-4709-8726-6d1f0923c375-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_send_feedback_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 206 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 9dc0f6fa-6e42-4c4f-b27e-e66c37784714-1785374196620 + [loading_requirement_container_meta:9dc0f6fa-6e42-4c4f-b27e-e66c37784714-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 13e86221-726b-4013-b108-34a53143f6d2-1785374196620 + [executable_block:13e86221-726b-4013-b108-34a53143f6d2-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9e1e164e-0cc2-404c-8568-0016711fb4f8-1785374196620 + [loading_requirement_container_meta:9e1e164e-0cc2-404c-8568-0016711fb4f8-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_return_to_game_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 81 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4eb9cbc9-b92e-44f0-8d56-67c50ac7fa1e-1785374196620 + [loading_requirement_container_meta:4eb9cbc9-b92e-44f0-8d56-67c50ac7fa1e-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 562434e6-8619-4a5a-8a7a-996dc202fcd8-1785374196620 + [executable_block:562434e6-8619-4a5a-8a7a-996dc202fcd8-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 31526521-bdf0-4526-a0b7-901ce0208a08-1785374196620 + [loading_requirement_container_meta:31526521-bdf0-4526-a0b7-901ce0208a08-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = 490306 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 230 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 79316586-2933-44ba-95b2-f34cb28744bf-1785374196620 + [loading_requirement_container_meta:79316586-2933-44ba-95b2-f34cb28744bf-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = e033c689-52f0-4661-a757-819f04ee6be1-1785374196620 + [executable_block:e033c689-52f0-4661-a757-819f04ee6be1-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 0a3def81-9193-43a5-88ff-488fd119462e-1785374196620 + [loading_requirement_container_meta:0a3def81-9193-43a5-88ff-488fd119462e-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 153 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8c960873-7cd2-4433-bc7d-bf891e83b237-1785374196620 + [loading_requirement_container_meta:8c960873-7cd2-4433-bc7d-bf891e83b237-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 055c65b8-15ac-48f9-9922-cd8c99734cdc-1785374196620 + [executable_block:055c65b8-15ac-48f9-9922-cd8c99734cdc-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4a333e8d-d97a-4f1d-8b7d-9fc35c5c0dad-1785374196620 + [loading_requirement_container_meta:4a333e8d-d97a-4f1d-8b7d-9fc35c5c0dad-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_advancements_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 105 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 84773c29-2c04-4bb3-bab2-5427d57aff24-1785374196620 + [loading_requirement_container_meta:84773c29-2c04-4bb3-bab2-5427d57aff24-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 4982a745-7b5a-4999-8831-c09739cefe4b-1785374196620 + [executable_block:4982a745-7b5a-4999-8831-c09739cefe4b-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = f4b82d6c-d29b-4b89-9315-70e65fb1ee38-1785374196620 + [loading_requirement_container_meta:f4b82d6c-d29b-4b89-9315-70e65fb1ee38-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = 606282 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 346 + y = 105 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 853495a4-9442-4adf-851b-d4c0d233fb0d-1785374196620 + [loading_requirement_container_meta:853495a4-9442-4adf-851b-d4c0d233fb0d-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 2cf84e6c-ff8a-42f7-b872-4b265e453b68-1785374196620 + [executable_block:2cf84e6c-ff8a-42f7-b872-4b265e453b68-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 09641e07-d108-46ef-8500-01104191e8fa-1785374196620 + [loading_requirement_container_meta:09641e07-d108-46ef-8500-01104191e8fa-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_disconnect_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 138 + y = 177 + width = 204 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 89fa4f4f-1877-4409-abd4-e531dd9eb747-1785374196620 + [loading_requirement_container_meta:89fa4f4f-1877-4409-abd4-e531dd9eb747-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 066fadcc-51df-4564-bf3b-3cc2e345c3e6-1785374196620 + [executable_block:066fadcc-51df-4564-bf3b-3cc2e345c3e6-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 2c5680a9-e724-4d54-9c3a-31bf79983bbd-1785374196620 + [loading_requirement_container_meta:2c5680a9-e724-4d54-9c3a-31bf79983bbd-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_stats_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 105 + width = 98 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 4fea93c1-0126-4b3d-9d97-463675c82570-1785374196620 + [loading_requirement_container_meta:4fea93c1-0126-4b3d-9d97-463675c82570-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 0d2aaa2e-d552-40fb-98a5-3debdbc86c98-1785374196620 + [executable_block:0d2aaa2e-d552-40fb-98a5-3debdbc86c98-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9375340f-ee94-490f-a9f1-283dffd90951-1785374196620 + [loading_requirement_container_meta:9375340f-ee94-490f-a9f1-283dffd90951-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = pause_share_to_lan_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 254 + y = 129 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 63ad044b-47e1-4c9b-a2c8-624022048088-1785374196620 + [loading_requirement_container_meta:63ad044b-47e1-4c9b-a2c8-624022048088-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 18ecb3b6-3969-4a3f-b8f0-64902b73b20c-1785374196620 + [executable_block:18ecb3b6-3969-4a3f-b8f0-64902b73b20c-1785374196620][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 98abd45c-7c13-4b38-b7fe-25548c149805-1785374196620 + [loading_requirement_container_meta:98abd45c-7c13-4b38-b7fe-25548c149805-1785374196620] = [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 + element_type = vanilla_button + instance_identifier = 47440 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 214 + y = 40 + width = 52 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 4af0e2ee-3058-4cbb-8e32-ebe1ec110e3c-1785374196620 + [loading_requirement_container_meta:4af0e2ee-3058-4cbb-8e32-ebe1ec110e3c-1785374196620] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/progress_screen_layout.txt b/config/fancymenu/customization/progress_screen_layout.txt new file mode 100644 index 0000000..f4e5935 --- /dev/null +++ b/config/fancymenu/customization/progress_screen_layout.txt @@ -0,0 +1,507 @@ +type = fancymenu_layout + +layout-meta { + identifier = progress_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781544895203 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:f126cd17-e7ce-4338-864a-3d24068cc243-1781544878514] = [groups:][instances:] +} + +menu_background { + instance_identifier = cd5a8b4d-3a07-4dc7-89d5-17faa43d6894-1781472998445 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 33d27b91-ab2c-4ef7-bfee-4f0813b00ec7-1781472998445 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 79c9a1ee-0c6a-4528-bb9b-c9ace786e367-1781472998445 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 55d47208-4abd-45f7-aac0-83d14b1f37d2-1781472998445 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 9683ed72-0a37-49b8-b4dd-5d29942ed9ed-1781472998445 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 9644a835-08b8-4377-8a86-f3dbe6e5e119-1781472998445 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 88790b96-5222-419f-9a15-feddda241674-1781472998445 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 6a996689-50db-4f0b-a234-d828f29d8a04-1781472998445 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 007c5992-1287-459e-be0d-1d1e32c164bc-1781472998445 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8d386fae-7c0a-4030-8a11-0d6aa6568da9-1781472998445 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = fef7b78b-2bc8-41e5-a485-c4947a60fddb-1781472998445 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 5069725f-fba7-4b57-9b5e-ce5e577e5213-1781472998445 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 0c3f50ef-154d-408c-8d21-ea32beba5d1f-1781472998445 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = abfdaa1c-2e7f-4080-80fd-74ee14f67ca3-1781472998445 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 3222a771-45c2-4f46-ab42-c957ce1cfb0c-1781472998445 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 2d7b6aca-cde6-4a91-bccf-99b8c3e25a40-1781472998445 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = db02f9fe-25cc-400d-a6a7-70d078487efe-1781472998445 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 04b05e66-5387-4ca2-a959-95f45a63361e-1781472998445 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 3fc5d40e-f4af-406c-a698-65f7415fe6f4-1781472998445 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = 033f01d8-6c77-4526-94b4-d80433aa1770-1781472998446 + [executable_block:033f01d8-6c77-4526-94b4-d80433aa1770-1781472998446][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = d0059970-c767-4227-b1ca-a5dd2e6a3e63-1781472998446 + [loading_requirement_container_meta:d0059970-c767-4227-b1ca-a5dd2e6a3e63-1781472998446] = [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 + element_type = vanilla_button + instance_identifier = header + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = mid-centered + x = -262 + y = -24 + width = 500 + height = 29 + stay_on_screen = true + element_loading_requirement_container_identifier = a53f1d70-29c6-477b-b6bf-06a5d0a5e3cc-1781472998446 + [loading_requirement_container_meta:a53f1d70-29c6-477b-b6bf-06a5d0a5e3cc-1781472998446] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = aeb08dc0-2658-4e62-a8d7-a99b8f3004b9-1781472998446 + [executable_block:aeb08dc0-2658-4e62-a8d7-a99b8f3004b9-1781472998446][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4988cc3d-c482-450b-9902-04b17d31b16d-1781472998446 + [loading_requirement_container_meta:4988cc3d-c482-450b-9902-04b17d31b16d-1781472998446] = [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 + element_type = vanilla_button + instance_identifier = stage + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = bottom-centered + x = -262 + y = -113 + width = 500 + height = 16 + stay_on_screen = true + element_loading_requirement_container_identifier = af8abd85-5cb2-40bb-b231-51553453997c-1781472998446 + [loading_requirement_container_meta:af8abd85-5cb2-40bb-b231-51553453997c-1781472998446] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = true + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/safety_screen_layout.txt b/config/fancymenu/customization/safety_screen_layout.txt new file mode 100644 index 0000000..eb23294 --- /dev/null +++ b/config/fancymenu/customization/safety_screen_layout.txt @@ -0,0 +1,740 @@ +type = fancymenu_layout + +layout-meta { + identifier = safety_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1781708921332 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:865ede04-da78-4fd0-ac7f-72882e4b6d32-1781708873025] = [groups:][instances:] +} + +menu_background { + instance_identifier = 02fd863a-f19c-41a5-9643-5b3a4c09a7fb-1781708873025 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = b55802e1-b4b5-4850-9728-fa11717be041-1781708873025 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = 0e8c1c68-25c5-44fe-8a45-2155b1351d7d-1781708873025 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 9dcb4db9-1894-48d7-9a7d-6cbb6401691b-1781708873025 + background_type = slideshow + show_background = false +} + +menu_background { + instance_identifier = 1e8d475b-70e0-4c76-84ee-995d8a7642a7-1781708873025 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = 24420177-a2c3-4399-bad8-d7b981fbc694-1781708873025 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = cdc2deb9-deeb-41ec-9f94-31c4b101c2bd-1781708873026 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 33f13b32-aa03-42d2-b70f-ed34a1d8fdb1-1781708873026 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 7a5d4a00-3b46-4b28-9e37-3af46622dbad-1781708873026 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 3a9472dc-4504-46ef-a5b0-1588ec9276b6-1781708873026 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = 9a7d01a4-5b10-44b9-8788-b9239e86a2e5-1781708873026 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 790afb3a-ee55-4ebc-b298-2fdb65c34d9d-1781708873026 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 3009c1b8-76ac-48ac-9463-2831d1df3bb5-1781708873027 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 0072c934-559d-40c0-8b69-b39f58577d6c-1781708873027 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 9a5d35c3-d730-4ac6-bf98-44d70f4ed28e-1781708873027 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 90f82e39-2b4b-4977-b8d6-18e6334d3add-1781708873027 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 6e88f388-1412-43a9-80e2-46d906e86412-1781708873027 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 9fdd662c-cf63-4645-a328-1c87ed1e1b5c-1781708873027 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 2f224cc7-bcf4-43bd-bba8-0585e07b7caa-1781708873027 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +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 = 09769bce-247f-4ccc-ba15-1055c136de33-1781708873036 + [executable_block:09769bce-247f-4ccc-ba15-1055c136de33-1781708873036][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 04320bb4-8559-4755-b9cd-fac9aeb5b676-1781708873036 + [loading_requirement_container_meta:04320bb4-8559-4755-b9cd-fac9aeb5b676-1781708873036] = [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 + element_type = vanilla_button + instance_identifier = 413515 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 153 + y = 161 + width = 173 + height = 17 + stay_on_screen = true + element_loading_requirement_container_identifier = ea8fbe57-e99a-446a-a97b-4b180d5b2da0-1781708873035 + [loading_requirement_container_meta:ea8fbe57-e99a-446a-a97b-4b180d5b2da0-1781708873035] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = c0b08f2a-75cd-4179-bf5b-bbd725e589a1-1781708873035 + [executable_block:c0b08f2a-75cd-4179-bf5b-bbd725e589a1-1781708873035][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a02f7f36-1448-4563-8a0b-a713ba7038c9-1781708873035 + [loading_requirement_container_meta:a02f7f36-1448-4563-8a0b-a713ba7038c9-1781708873035] = [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 + element_type = vanilla_button + instance_identifier = 404440 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 144 + y = 68 + width = 192 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = fb0366b8-8832-4b52-b6ec-0c55bf83e898-1781708873034 + [loading_requirement_container_meta:fb0366b8-8832-4b52-b6ec-0c55bf83e898-1781708873034] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = aaff7f01-dc36-4808-9f7b-5ce1cc7c3a84-1781708873035 + [executable_block:aaff7f01-dc36-4808-9f7b-5ce1cc7c3a84-1781708873035][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 19fc5b35-ff01-4e98-8f01-8d806c1aa917-1781708873035 + [loading_requirement_container_meta:19fc5b35-ff01-4e98-8f01-8d806c1aa917-1781708873035] = [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 + element_type = vanilla_button + instance_identifier = 50469 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 50 + y = 97 + width = 380 + height = 44 + stay_on_screen = true + element_loading_requirement_container_identifier = fececa96-3d1e-4718-b2f2-35dd752eadab-1781708873035 + [loading_requirement_container_meta:fececa96-3d1e-4718-b2f2-35dd752eadab-1781708873035] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 356cade5-92e8-4a8e-a3b6-46ab082ff694-1781708873036 + [executable_block:356cade5-92e8-4a8e-a3b6-46ab082ff694-1781708873036][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 68f84546-bc87-4774-9870-ae830c12ef52-1781708873036 + [loading_requirement_container_meta:68f84546-bc87-4774-9870-ae830c12ef52-1781708873036] = [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 + element_type = vanilla_button + instance_identifier = 346540 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 186 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = a1c071b7-6930-4906-a86c-cd801b07e311-1781708873036 + [loading_requirement_container_meta:a1c071b7-6930-4906-a86c-cd801b07e311-1781708873036] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = fd205cb4-e5ba-4f92-badd-06eccf984a46-1781708873037 + [executable_block:fd205cb4-e5ba-4f92-badd-06eccf984a46-1781708873037][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4db2b4f8-1716-4217-889f-3492173b9acb-1781708873037 + [loading_requirement_container_meta:4db2b4f8-1716-4217-889f-3492173b9acb-1781708873037] = [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 + element_type = vanilla_button + instance_identifier = 504540 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 186 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = f75d3f4e-8f94-47a3-94b7-3ffdde678fcc-1781708873036 + [loading_requirement_container_meta:f75d3f4e-8f94-47a3-94b7-3ffdde678fcc-1781708873036] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/select_world_screen_layout.txt b/config/fancymenu/customization/select_world_screen_layout.txt new file mode 100644 index 0000000..154e1ba --- /dev/null +++ b/config/fancymenu/customization/select_world_screen_layout.txt @@ -0,0 +1,983 @@ +type = fancymenu_layout + +layout-meta { + identifier = select_world_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785386484026 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:a8875cae-ca67-4a6e-a564-0e23a23034fc-1785386460888] = [groups:][instances:] +} + +menu_background { + instance_identifier = ffe7a925-656e-48b8-ae3e-35add23635bf-1785386460888 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 75435485-c01f-4e11-805c-287475579959-1785386460888 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = a2b12482-5a8a-4d26-816d-48de264c21e5-1785386460888 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = 9637a374-d905-46a7-8de4-49a15f0ea60a-1785386460888 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 505a8365-4282-44eb-8b12-5543fb343812-1785386460888 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = ba5980d1-3054-46f6-ac8f-49cf2da22891-1785386460889 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = a8dbb79f-21f1-4af1-9ba9-d6a174da2bbd-1785386460889 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = afca238d-868d-45e3-93f2-adfadbc401f5-1785386460889 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 01ac4cfb-e7b3-40b4-ac07-bf3ffda33648-1785386460889 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8bb90147-c5d2-457b-be7f-609067bfde19-1785386460889 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = d2e480ef-368b-4d1b-b698-e58ea0d829a1-1785386460889 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = f31d5322-1632-4249-9fb9-c90bf93bd614-1785386460889 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 9d14dae2-02cf-4fd6-8351-8104983522e7-1785386460889 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = 2527c84e-59f9-41e1-ae90-1c5a3dca9a06-1785386460889 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = c1da3c3a-88ff-4405-8885-7d977d4f8c3d-1785386460889 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 4d1e2c0e-a808-4711-9411-6f62bfe6771e-1785386460889 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 9e8b3db2-348c-457a-a23e-20b502f8bf56-1785386460889 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = 8149098d-19a3-4b4d-967d-bab70991c94a-1785386460889 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = 59e3f6e1-a9a8-4ca4-98e5-e77dcf3638d2-1785386460889 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = true +} + +layout_action_executable_blocks { +} + +vanilla_button { + button_element_executable_block_identifier = 4a57e773-b264-4fe2-92b8-5dc02fa73c53-1785386460890 + [executable_block:4a57e773-b264-4fe2-92b8-5dc02fa73c53-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = dcac6fd4-e58a-42cd-a387-a238ab87065b-1785386460890 + [loading_requirement_container_meta:dcac6fd4-e58a-42cd-a387-a238ab87065b-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 583972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 323 + y = 264 + width = 71 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 52392f6b-2da6-4268-af99-480583e07c37-1785386460890 + [loading_requirement_container_meta:52392f6b-2da6-4268-af99-480583e07c37-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 47020db5-fcce-48e9-a7b2-4be983afd086-1785386460890 + [executable_block:47020db5-fcce-48e9-a7b2-4be983afd086-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = fa544027-a471-4c67-9d29-a056b14e1dba-1785386460890 + [loading_requirement_container_meta:fa544027-a471-4c67-9d29-a056b14e1dba-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 504972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 264 + width = 71 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = a19370da-67ea-4c13-a1ca-3def32ce0ba6-1785386460890 + [loading_requirement_container_meta:a19370da-67ea-4c13-a1ca-3def32ce0ba6-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 7e8528ad-2357-41dd-a3de-24a1d7f8d0e1-1785386460890 + [executable_block:7e8528ad-2357-41dd-a3de-24a1d7f8d0e1-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 9dab2576-b762-4f32-a0ae-e1d991976a84-1785386460890 + [loading_requirement_container_meta:9dab2576-b762-4f32-a0ae-e1d991976a84-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 425972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 165 + y = 264 + width = 71 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = c58a6edb-e26d-4a7e-8e3d-0123a6564d87-1785386460890 + [loading_requirement_container_meta:c58a6edb-e26d-4a7e-8e3d-0123a6564d87-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 6f8e1da3-8c76-4eb0-bd9a-7124309277b7-1785386460890 + [executable_block:6f8e1da3-8c76-4eb0-bd9a-7124309277b7-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4b300a69-b317-41a1-a220-1f135953a008-1785386460890 + [loading_requirement_container_meta:4b300a69-b317-41a1-a220-1f135953a008-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 346972 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 264 + width = 71 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = b758714f-d1a9-4b8f-b7af-8388d7c62226-1785386460890 + [loading_requirement_container_meta:b758714f-d1a9-4b8f-b7af-8388d7c62226-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = c30ed894-5fbe-4e9c-8f7a-4da2edc6bf49-1785386460890 + [executable_block:c30ed894-5fbe-4e9c-8f7a-4da2edc6bf49-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = a8a70540-58fd-4a60-99c3-10214c6e4c0f-1785386460890 + [loading_requirement_container_meta:a8a70540-58fd-4a60-99c3-10214c6e4c0f-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 40021 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 140 + y = 21 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 43794462-4fbe-4611-995c-70ac9d37e946-1785386460890 + [loading_requirement_container_meta:43794462-4fbe-4611-995c-70ac9d37e946-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 9c9e79b4-91f6-4bc3-afc8-50d810c03aa8-1785386460890 + [executable_block:9c9e79b4-91f6-4bc3-afc8-50d810c03aa8-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 69721589-ad30-48a7-bcd2-e5f44e82dce2-1785386460890 + [loading_requirement_container_meta:69721589-ad30-48a7-bcd2-e5f44e82dce2-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 346948 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 86 + y = 240 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 9e614190-278f-4851-8b64-a00f82cca628-1785386460890 + [loading_requirement_container_meta:9e614190-278f-4851-8b64-a00f82cca628-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 13f21617-1f45-43b0-bafb-4c7955a932a0-1785386460890 + [executable_block:13f21617-1f45-43b0-bafb-4c7955a932a0-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = ffbc8428-45ce-4e40-9e3a-69dc4a55c864-1785386460890 + [loading_requirement_container_meta:ffbc8428-45ce-4e40-9e3a-69dc4a55c864-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 504948 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 244 + y = 240 + width = 150 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 777b0562-07f3-473d-8b1d-9c54facfcd21-1785386460890 + [loading_requirement_container_meta:777b0562-07f3-473d-8b1d-9c54facfcd21-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = 16971a58-4c87-4fb5-8ce0-d4ee563c345b-1785386460890 + [executable_block:16971a58-4c87-4fb5-8ce0-d4ee563c345b-1785386460890][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 574087d5-82fc-41c1-9750-95db5034685b-1785386460890 + [loading_requirement_container_meta:574087d5-82fc-41c1-9750-95db5034685b-1785386460890] = [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 + element_type = vanilla_button + instance_identifier = 4698 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 0 + auto_sizing_base_screen_height = 0 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 209 + y = 8 + width = 62 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 699f00e8-68aa-4026-bc58-d9a364ca1549-1785386460890 + [loading_requirement_container_meta:699f00e8-68aa-4026-bc58-d9a364ca1549-1785386460890] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + diff --git a/config/fancymenu/customization/title_screen_layout.txt b/config/fancymenu/customization/title_screen_layout.txt new file mode 100644 index 0000000..3061ae5 --- /dev/null +++ b/config/fancymenu/customization/title_screen_layout.txt @@ -0,0 +1,2699 @@ +type = fancymenu_layout + +layout-meta { + identifier = title_screen + render_custom_elements_behind_vanilla = false + last_edited_time = 1785386405374 + is_enabled = true + randommode = false + randomgroup = 1 + randomonlyfirsttime = false + layout_index = 0 + [loading_requirement_container_meta:c8026af1-fbe9-4676-8eb6-adfc638eb8c7-1785386383313] = [groups:][instances:7274809f-423d-45f2-977d-896ec59747f8-1781454282181;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:7274809f-423d-45f2-977d-896ec59747f8-1781454282181] = is_first_time:false +} + +menu_background { + instance_identifier = 06b89f60-d2e2-4887-887b-389fa2ce08a0-1781212082650 + background_type = color_fancymenu + show_background = false + color = #FFC800FF +} + +menu_background { + instance_identifier = 5c9cc49a-ebb4-4899-81f2-d60c7e70672d-1781212082650 + background_type = panorama + show_background = false +} + +menu_background { + instance_identifier = bdd32a4a-4ee0-4262-aa3d-8721cc9771d9-1781212082650 + background_type = image + show_background = false + slide = false + repeat_texture = false + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + restart_animated_on_menu_load = false +} + +menu_background { + instance_identifier = f31f50b9-e303-4356-a723-62ea9b4a43b4-1781212082650 + background_type = slideshow + show_background = true + slideshow_name = main_menu +} + +menu_background { + instance_identifier = 2587a2c4-0259-4a4b-b104-ac25682c510b-1781212082650 + background_type = video + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false + play_in_editor = true +} + +menu_background { + instance_identifier = c5e70036-a4f4-4607-a77d-58df4fdc2be8-1781212082650 + background_type = video_mcef + show_background = false + loop = false + volume = 1.0 + sound_source = master + parallax = false + parallax_intensity_x = 0.02 + parallax_intensity_y = 0.02 + invert_parallax = false +} + +menu_background { + instance_identifier = 8948c128-ff60-42a6-a61f-d6d2a388407f-1781212082651 + background_type = browser + show_background = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +menu_background { + instance_identifier = 8c0a23d4-d7db-4ce0-b6e9-2ddae1830c33-1781212082651 + background_type = glsl + show_background = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +menu_background { + instance_identifier = 735eaecb-7280-46c0-a1e7-f57c89e173e3-1781212082651 + background_type = drippy_color_background + show_background = false + color = #FD5757FF +} + +decoration_overlay { + overlay_type = browser + instance_identifier = 8163072d-52d8-4634-ab0f-f490de172423-1781212082652 + show_decoration_overlay = false + url = https://docs.fancymenu.net + consume_mouse_clicks = true + consume_mouse_scrolls = true + consume_keyboard_presses = true + process_mouse_clicks = true + process_mouse_scrolls = true + process_keyboard_presses = true + hide_video_controls = false + loop_videos = false + mute_media = false + media_volume = 1.0 +} + +decoration_overlay { + overlay_type = glsl + instance_identifier = ad611e54-abfa-42fb-9c3f-18ff9a92b034-1781212082652 + show_decoration_overlay = false + inline_shader_source = + buffer_a_inline_source = + buffer_b_inline_source = + buffer_c_inline_source = + buffer_d_inline_source = + image_ichannel0_input = none + image_ichannel1_input = none + image_ichannel2_input = none + image_ichannel3_input = none + buffer_a_ichannel0_input = none + buffer_a_ichannel1_input = none + buffer_a_ichannel2_input = none + buffer_a_ichannel3_input = none + buffer_b_ichannel0_input = none + buffer_b_ichannel1_input = none + buffer_b_ichannel2_input = none + buffer_b_ichannel3_input = none + buffer_c_ichannel0_input = none + buffer_c_ichannel1_input = none + buffer_c_ichannel2_input = none + buffer_c_ichannel3_input = none + buffer_d_ichannel0_input = none + buffer_d_ichannel1_input = none + buffer_d_ichannel2_input = none + buffer_d_ichannel3_input = none + compile_mode = auto + force_shadertoy_compatibility = true + freeze_time = false + time_scale = 1.0 + enable_blending = true + use_input = true + mouse_position_requires_hold = false + opacity_multiplier = 1.0 + show_compile_errors = true +} + +decoration_overlay { + overlay_type = buddy + instance_identifier = 5926a8aa-75a5-4155-bb3d-3de7c482f25c-1781212082652 + show_decoration_overlay = false + buddy_hunger_decay_per_tick = 0.005 + buddy_happiness_decay_per_tick = 0.003 + buddy_fun_decay_per_tick = 0.002 + buddy_energy_decay_per_tick = 0.002 + buddy_energy_sleep_regen_per_tick = 0.03 + buddy_play_energy_drain_per_tick = 0.03 + buddy_play_fun_gain_per_tick = 0.05 + buddy_play_happiness_gain_per_tick = 0.01 + buddy_play_hunger_drain_per_tick = 0.01 + buddy_chase_energy_drain_per_tick = 0.024 + buddy_chase_hunger_drain_per_tick = 0.005 + buddy_hop_energy_drain_per_tick = 0.005 + buddy_hop_hunger_drain_per_tick = 0.002 + buddy_excited_energy_drain_per_tick = 0.01 + buddy_excited_happiness_gain_per_tick = 0.01 + buddy_excited_hunger_drain_per_tick = 0.003 + buddy_running_energy_drain_per_tick = 0.01 + buddy_running_hunger_drain_per_tick = 0.005 + buddy_food_hunger_gain = 20.0 + buddy_food_happiness_gain = 5.0 + buddy_pet_happiness_gain = 15.0 + buddy_wakeup_happiness_penalty = 2.5 + buddy_max_poops_cap = 10 + buddy_can_die = true +} + +decoration_overlay { + overlay_type = string_lights + instance_identifier = 4f18a2e0-18d8-404f-ba74-db98c867ab0d-1781212082652 + show_decoration_overlay = false + string_lights_scale = 1.0 + string_lights_wind_strength = 1.0 + string_lights_flicker_speed = 1.0 + string_lights_left_center_to_top_center = true + string_lights_right_center_to_top_center = true + string_lights_bottom_left_to_top_center = false + string_lights_bottom_right_to_top_center = false + string_lights_top_left_to_top_right = true + string_lights_bottom_left_to_bottom_right = false + string_lights_loose_left_top = false + string_lights_loose_right_top = false + string_lights_left_center_to_top_center_christmas_mode = false + string_lights_right_center_to_top_center_christmas_mode = false + string_lights_bottom_left_to_top_center_christmas_mode = false + string_lights_bottom_right_to_top_center_christmas_mode = false + string_lights_top_left_to_top_right_christmas_mode = false + string_lights_bottom_left_to_bottom_right_christmas_mode = false + string_lights_loose_left_top_christmas_mode = false + string_lights_loose_right_top_christmas_mode = false + string_lights_left_center_to_top_center_color_hex = #FFD27A + string_lights_right_center_to_top_center_color_hex = #FFD27A + string_lights_bottom_left_to_top_center_color_hex = #FFD27A + string_lights_bottom_right_to_top_center_color_hex = #FFD27A + string_lights_top_left_to_top_right_color_hex = #FFD27A + string_lights_bottom_left_to_bottom_right_color_hex = #FFD27A + string_lights_loose_left_top_color_hex = #FFD27A + string_lights_loose_right_top_color_hex = #FFD27A +} + +decoration_overlay { + overlay_type = fireworks + instance_identifier = d199d2be-f824-4169-aade-a32aeb5c6553-1781212082652 + show_decoration_overlay = false + fireworks_scale = 1.0 + fireworks_explosion_size = 1.0 + fireworks_amount = 1.0 + fireworks_show_rockets = true +} + +decoration_overlay { + overlay_type = snowfall + instance_identifier = 82283955-d9ee-47ac-b8b4-5f965606de6c-1781212082652 + show_decoration_overlay = false + snow_intensity = 1.0 + snow_scale = 1.0 + snow_speed = 1.0 + snow_accumulation = true + snow_color_hex = #FFFFFF +} + +decoration_overlay { + overlay_type = rainfall + instance_identifier = 1d428020-067f-4e8e-a614-de695b75816a-1781212082652 + show_decoration_overlay = false + rain_intensity = 1.0 + rain_scale = 1.0 + rain_thunder_brightness = 1.0 + rain_puddles = true + rain_drips = true + rain_thunder = false + rain_color_hex = #CFE7FF +} + +decoration_overlay { + overlay_type = fireflies + instance_identifier = 26e5ae00-e617-476c-80a8-40a4b21afacf-1781212082652 + show_decoration_overlay = false + firefly_group_density = 1.0 + firefly_group_amount = 1.0 + firefly_group_size = 1.0 + firefly_scale = 1.0 + firefly_follow_mouse = true + firefly_landing = true + firefly_color_hex = #FFE08A +} + +decoration_overlay { + overlay_type = leaves + instance_identifier = de20689f-31f5-46f9-bc46-29a839f174d5-1781212082652 + show_decoration_overlay = false + leaves_density = 1.0 + leaves_wind_intensity = 1.0 + leaves_wind_blows = true + leaves_fall_speed = 1.0 + leaves_scale = 1.0 + leaves_color_start_hex = #7BA84F + leaves_color_end_hex = #D58A3B +} + +decoration_overlay { + overlay_type = confetti + instance_identifier = e35f47fd-6d3e-47b3-9231-f3fab35bbba3-1781212082652 + show_decoration_overlay = false + confetti_scale = 1.0 + confetti_fall_speed = 1.0 + confetti_burst_density = 1.0 + confetti_burst_amount = 1.0 + confetti_particle_cap = 500 + confetti_color_mix_mode = true + confetti_mouse_click_mode = false + confetti_color_hex = #FFFFFF +} + +customization { + action = backgroundoptions + keepaspectratio = true +} + +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 = true + apply_vanilla_background_blur = false +} + +layout_action_executable_blocks { +} + +element { + element_type = image + instance_identifier = 0fe65808-20c6-4ed4-85a3-37aa8b7bed10-1781212468023 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = top-centered + x = -105 + y = 22 + width = 210 + height = 35 + stay_on_screen = true + element_loading_requirement_container_identifier = f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023 + [loading_requirement_container_meta:f75eaa69-73df-4cee-bb1a-09787e19d045-1781212468023] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = false + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + source = [source:local]/config/fancymenu/assets/banners/main.png + repeat_texture = false + nine_slice_texture = false + nine_slice_texture_border_x = 5 + nine_slice_texture_border_y = 5 + restart_animated_on_menu_load = false + image_tint = #FFFFFF + rounding_radius_top_left = 0.0 + rounding_radius_top_right = 0.0 + rounding_radius_bottom_right = 0.0 + rounding_radius_bottom_left = 0.0 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:8b716f8c-cf3e-420b-88c8-31c4bddc0b0a-1781215185451][action_type:opengui] = bte_layout + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:8b716f8c-cf3e-420b-88c8-31c4bddc0b0a-1781215185451;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/images/multiplayer.png + iconhovered = [source:local]/config/fancymenu/assets/images/multiplayer_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 85bde445-1034-4842-bff9-03ef2bfc11b1-1781212568971 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = mid-centered + x = -35 + y = -41 + width = 70 + height = 106 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:98498217-55dd-44fc-8ac5-802d9512bfcb-1781541774927][action_type:joinserver] = {%!n!%%!s!%%!s!%%!s!%%!s!%"placeholder": "json",%!n!%%!s!%%!s!%%!s!%%!s!%"values": {%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"source": "/config/fancymenu/assets/buildteams.json",%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%"json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%!n!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%%!s!%}.ip"%!n!%%!s!%%!s!%%!s!%%!s!%}%!n!%} + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:98498217-55dd-44fc-8ac5-802d9512bfcb-1781541774927;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/images/continue.png + iconhovered = [source:local]/config/fancymenu/assets/images/continue_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Last Joined Server:%n%&e{%n% "placeholder": "json",%n% "values": {%n% "source": "/config/fancymenu/assets/buildteams.json",%n% "json_path": "$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.name"%n% }%n%}&r%n%{%n% "placeholder": "serverplayercount",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.ip"}}"%n% }%n%} | {%n% "placeholder": "serverversion",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.ip"}}"%n% }%n%}%n%{%n% "placeholder": "serverstatus",%n% "values": {%n% "ip": "{"placeholder":"json","values":{"source":"/config/fancymenu/assets/buildteams.json",%n% "json_path":"$.{"placeholder": "getvariable","values": {"name": "current_server"}%n% }.ip"}}"%n% }%n%} + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 73790beb-09db-4601-965e-107b1cf74633-1781212976643 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 85bde445-1034-4842-bff9-03ef2bfc11b1-1781212568971 + x = -71 + y = 0 + width = 70 + height = 106 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:020df65e-82e1-4cf6-a551-a02dfc6e508f-1781642997560;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if_not][req_id:020df65e-82e1-4cf6-a551-a02dfc6e508f-1781642997560] = current_server:first-time + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:76f579ac-439f-46cf-914f-1dc1ec53a072-1781216502686][action_type:openlink] = https://go.buildtheearth.net/dc + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:76f579ac-439f-46cf-914f-1dc1ec53a072-1781216502686;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/discord.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/discord_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/discord.png + iconhovered = [source:local]/config/fancymenu/assets/icons/discord.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + description = Join our Discord!%n%https://go.buildtheearth.net/dc + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = dd2fc0ac-4b95-407d-bb95-9aca1bc8850d-1781213062494 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = b3b31961-6398-4210-b333-fcb1f5b6f52c-1781279831767 + x = 142 + y = 0 + width = 23 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:6f0384da-6e50-4c48-a8b9-16e8ddf5ef5f-1781216243688][action_type:mimicbutton] = title_screen:mc_titlescreen_singleplayer_button + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:6f0384da-6e50-4c48-a8b9-16e8ddf5ef5f-1781216243688;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/images/singleplayer.png + iconhovered = [source:local]/config/fancymenu/assets/images/singleplayer_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 936aba2b-afc6-485d-a79a-09f5e0943746-1781216219501 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = element + anchor_point_element = 85bde445-1034-4842-bff9-03ef2bfc11b1-1781212568971 + x = 71 + y = 0 + width = 70 + height = 106 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:6198cc48-b953-433d-94b2-6c3f8c0d7e83-1781279745860][action_type:mimicbutton] = title_screen:mc_titlescreen_quit_button + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:6198cc48-b953-433d-94b2-6c3f8c0d7e83-1781279745860;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_back.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_back_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/quit.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/quit.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = 13237aaf-2517-4460-8946-f9c37d46bb55-1781279697200 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = b3b31961-6398-4210-b333-fcb1f5b6f52c-1781279831767 + x = 71 + y = 0 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:6198cc48-b953-433d-94b2-6c3f8c0d7e83-1781279745860][action_type:mimicbutton] = title_screen:mc_titlescreen_options_button + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:6198cc48-b953-433d-94b2-6c3f8c0d7e83-1781279745860;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/setting.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/setting.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = b3b31961-6398-4210-b333-fcb1f5b6f52c-1781279831767 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = element + anchor_point_element = 85bde445-1034-4842-bff9-03ef2bfc11b1-1781212568971 + x = 0 + y = 109 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167 + [executable_action_instance:6198cc48-b953-433d-94b2-6c3f8c0d7e83-1781279745860][action_type:mimicbutton] = title_screen:modmenu_titlescreen_mods_button + [executable_block:1730282d-b416-4fe0-b470-91496bf3a0f7-1781279605167][type:generic] = [executables:6198cc48-b953-433d-94b2-6c3f8c0d7e83-1781279745860;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_legacy.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_legacy_hover.png + iconnormal = [source:local]/config/fancymenu/assets/labels/start_pause_layout/mod.png + iconhovered = [source:local]/config/fancymenu/assets/labels/start_pause_layout/mod.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + navigatable = true + widget_active_state_requirement_container_identifier = 006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167 + [loading_requirement_container_meta:006e1cfa-b65c-4d13-9bb4-c3229401a31c-1781279605167] = [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 + element_type = custom_button + instance_identifier = b1dfc261-6aba-4a81-afa5-86e18580c997-1781279839806 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = b3b31961-6398-4210-b333-fcb1f5b6f52c-1781279831767 + x = -71 + y = 0 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167 + [loading_requirement_container_meta:7220cac3-0258-4a3f-8e40-2fee612d9b7b-1781279605167] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:bdeab1dc-fa71-4eb3-b5bb-0dc98847188c-1781490135664][action_type:set_variable] = is_first_time:true + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:bdeab1dc-fa71-4eb3-b5bb-0dc98847188c-1781490135664;] + iconnormal = [source:local]/config/fancymenu/assets/icons/intro.png + iconhovered = [source:local]/config/fancymenu/assets/icons/intro.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + description = Open Documentation + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = a4d458d6-2800-4033-bf16-b512b269bea0-1781490089552 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = bottom-left + x = 5 + y = -29 + width = 23 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:7739d5be-3755-4494-8a95-652175ddfc2e-1781643234290][action_type:show_toast] = {"width":260,"durationMs":5000,"title":"Action Warning!","message":"Please join to existing BTE Server first!","iconSource":"[source:location]fancymenu:textures/dialog/icons/warning.png","backgroundSource":""} + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:7739d5be-3755-4494-8a95-652175ddfc2e-1781643234290;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_main.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_main_hover.png + iconnormal = [source:local]/config/fancymenu/assets/images/continue.png + iconhovered = [source:local]/config/fancymenu/assets/images/continue_hover.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = true + description = Joining to last%n%visited Server. + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 453418dd-f155-4faf-8987-638ee263ddad-1781642847515 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = element + anchor_point_element = 85bde445-1034-4842-bff9-03ef2bfc11b1-1781212568971 + x = -71 + y = 0 + width = 70 + height = 106 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:239bda8c-1c58-48b9-b17b-5dc782286271-1781642968364;] + [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:239bda8c-1c58-48b9-b17b-5dc782286271-1781642968364] = current_server:first-time + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:4810a259-be79-4bed-987c-8f48c20f3e79-1781526695977][action_type:mimicbutton] = title_screen:604358 + [executable_action_instance:3034a0be-e8c6-4c67-b7a4-ec80e27c7e01-1785308691870][action_type:set_variable] = is_replay_mode:flashback + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:4810a259-be79-4bed-987c-8f48c20f3e79-1781526695977;3034a0be-e8c6-4c67-b7a4-ec80e27c7e01-1785308691870;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_2.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_2_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/replay.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + description = Replay Viewer + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = abec08b0-2571-4a89-8482-bc3b3cd05e9c-1785265263165 + custom_element_layer_name = flashback_only + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = element + anchor_point_element = dd2fc0ac-4b95-407d-bb95-9aca1bc8850d-1781213062494 + x = 0 + y = -26 + width = 23 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:group_1;][instances:] + [loading_requirement_group:group_1] = [group_mode:and] + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if_not][group:group_1][req_id:ab2a0da9-61b4-4a0d-b6a2-da4e303dfedc-1785265291041] = replaymod + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][group:group_1][req_id:75ab8c71-cfa6-4680-8f9e-96605acd5580-1785265300167] = flashback + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:4810a259-be79-4bed-987c-8f48c20f3e79-1781526695977][action_type:mimicbutton] = title_screen:400334 + [executable_action_instance:6db06dd5-2243-4b42-a170-20690b508582-1785308594681][action_type:set_variable] = is_replay_mode:replaymod + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:4810a259-be79-4bed-987c-8f48c20f3e79-1781526695977;6db06dd5-2243-4b42-a170-20690b508582-1785308594681;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/replay.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/replay_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/replay.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + description = Replay Viewer + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = 04d9211f-6329-4725-a2c6-55aca44c3d9a-1781526156028 + custom_element_layer_name = replaymod + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = element + anchor_point_element = dd2fc0ac-4b95-407d-bb95-9aca1bc8850d-1781213062494 + x = 0 + y = -26 + width = 23 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:][instances:4dda71ee-aaf7-4774-9399-218f21cc9356-1785265141920;] + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][req_id:4dda71ee-aaf7-4774-9399-218f21cc9356-1785265141920] = replaymod + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +element { + button_element_executable_block_identifier = 00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971 + [executable_action_instance:4810a259-be79-4bed-987c-8f48c20f3e79-1781526695977][action_type:mimicbutton] = title_screen:604358 + [executable_action_instance:64eb1175-2518-4954-ad2c-e1d431468eb3-1785308656034][action_type:set_variable] = is_replay_mode:flashback + [executable_block:00bd2afc-6572-4074-ba33-5e37a5cffbb6-1781212568971][type:generic] = [executables:4810a259-be79-4bed-987c-8f48c20f3e79-1781526695977;64eb1175-2518-4954-ad2c-e1d431468eb3-1785308656034;] + backgroundnormal = [source:local]/config/fancymenu/assets/textures/button_2.png + backgroundhovered = [source:local]/config/fancymenu/assets/textures/button_2_hover.png + iconnormal = [source:local]/config/fancymenu/assets/icons/replay.png + iconhovered = [source:local]/config/fancymenu/assets/icons/replay.png + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + description = Replay Viewer + navigatable = true + widget_active_state_requirement_container_identifier = 8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971 + [loading_requirement_container_meta:8eb8a9f9-caf3-4da9-93b0-3f5d903758ec-1781212568971] = [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 + element_type = custom_button + instance_identifier = d46a60c7-6312-4fab-81d9-f23b24600400-1785264710237 + custom_element_layer_name = flashback_with_replaymod + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = element + anchor_point_element = dd2fc0ac-4b95-407d-bb95-9aca1bc8850d-1781213062494 + x = 0 + y = -50 + width = 23 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971 + [loading_requirement_container_meta:aca3c9ce-0a6b-4909-a5cb-8bd5e498ff41-1781212568971] = [groups:group_1;][instances:] + [loading_requirement_group:group_1] = [group_mode:and] + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][group:group_1][req_id:9f0e3c7e-274b-4b4a-8ef7-aa6725340692-1785265210467] = replaymod + [loading_requirement:fancymenu_loading_requirement_is_mod_loaded][requirement_mode:if][group:group_1][req_id:436bf9ca-06fd-49e9-94c6-1a72cc08d19e-1785265220803] = flashback + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 +} + +vanilla_button { + button_element_executable_block_identifier = eb4eb812-e19b-4859-95ab-aad49b491e48-1785269606845 + [executable_block:eb4eb812-e19b-4859-95ab-aad49b491e48-1785269606845][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 0d1b3473-993c-45e9-abd7-041ff0308375-1785269606845 + [loading_requirement_container_meta:0d1b3473-993c-45e9-abd7-041ff0308375-1785269606845] = [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 + element_type = vanilla_button + instance_identifier = 466382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 286 + y = 229 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 9643693d-62af-495f-9f7f-c858d8156eea-1785269606843 + [loading_requirement_container_meta:9643693d-62af-495f-9f7f-c858d8156eea-1785269606843] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = c5382dcf-1477-4865-b2c9-b6c0b07768bd-1781212082653 + [executable_block:c5382dcf-1477-4865-b2c9-b6c0b07768bd-1781212082653][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6f943df2-96df-44bb-af3c-aab88c340f59-1781212082653 + [loading_requirement_container_meta:6f943df2-96df-44bb-af3c-aab88c340f59-1781212082653] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_quit_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0fe65808-20c6-4ed4-85a3-37aa8b7bed10-1781212468023 + x = -70 + y = 67 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 1c2d42c5-3dca-489e-b12b-c17ead8487a1-1781212082653 + [loading_requirement_container_meta:1c2d42c5-3dca-489e-b12b-c17ead8487a1-1781212082653] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 82f2334a-a194-40e8-a8b9-6bff16605fc5-1781212082653 + [executable_block:82f2334a-a194-40e8-a8b9-6bff16605fc5-1781212082653][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + label = + navigatable = true + widget_active_state_requirement_container_identifier = 204db34d-7542-4491-9d33-2c9f50a010db-1781212082653 + [loading_requirement_container_meta:204db34d-7542-4491-9d33-2c9f50a010db-1781212082653] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_singleplayer_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0fe65808-20c6-4ed4-85a3-37aa8b7bed10-1781212468023 + x = -120 + y = 130 + width = 70 + height = 105 + stay_on_screen = true + element_loading_requirement_container_identifier = dddbcec7-d877-4f84-bba3-f358239f72e3-1781212082653 + [loading_requirement_container_meta:dddbcec7-d877-4f84-bba3-f358239f72e3-1781212082653] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 5b910e20-530e-4553-ae87-d4e5638ce8de-1785269606845 + [executable_block:5b910e20-530e-4553-ae87-d4e5638ce8de-1785269606845][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = b62e531d-d7d4-4d4c-920a-a447ec087576-1785269606845 + [loading_requirement_container_meta:b62e531d-d7d4-4d4c-920a-a447ec087576-1785269606845] = [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 + element_type = vanilla_button + instance_identifier = 490382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 310 + y = 229 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = ef6ecebd-068f-44f1-b3ca-79ad30882261-1785269606845 + [loading_requirement_container_meta:ef6ecebd-068f-44f1-b3ca-79ad30882261-1785269606845] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = bc4a806d-d141-4c48-969b-c10f9c6cacc0-1785269606845 + [executable_block:bc4a806d-d141-4c48-969b-c10f9c6cacc0-1785269606845][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 0d14dcdf-c90d-44d6-9ab5-bd2f80b2569a-1785269606845 + [loading_requirement_container_meta:0d14dcdf-c90d-44d6-9ab5-bd2f80b2569a-1785269606845] = [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 + element_type = vanilla_button + instance_identifier = 514382 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 334 + y = 229 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 70c50f30-60ca-4eb5-a5d5-f43dd6a53aca-1785269606845 + [loading_requirement_container_meta:70c50f30-60ca-4eb5-a5d5-f43dd6a53aca-1785269606845] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = cf630373-69a7-468b-9698-4af7230495da-1781345977826 + [executable_block:cf630373-69a7-468b-9698-4af7230495da-1781345977826][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6f492052-9b03-4608-9ad7-edf730e05485-1781345977826 + [loading_requirement_container_meta:6f492052-9b03-4608-9ad7-edf730e05485-1781345977826] = [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 + element_type = vanilla_button + instance_identifier = title_screen_copyright_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = bottom-right + x = 145 + y = 238 + width = 196 + height = 10 + stay_on_screen = true + element_loading_requirement_container_identifier = e34d10a5-1dad-4fe4-8e11-3d6eef699337-1781345977826 + [loading_requirement_container_meta:e34d10a5-1dad-4fe4-8e11-3d6eef699337-1781345977826] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = false +} + +vanilla_button { + button_element_executable_block_identifier = e2339db0-0aa9-4623-87c5-cb081da60f57-1785271486804 + [executable_block:e2339db0-0aa9-4623-87c5-cb081da60f57-1785271486804][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 3762e529-4b40-430e-ade4-bab04d4fc671-1785271486804 + [loading_requirement_container_meta:3762e529-4b40-430e-ade4-bab04d4fc671-1785271486804] = [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 + element_type = vanilla_button + instance_identifier = 400334 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 220 + y = 181 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 704d971b-d701-493f-a238-f63e6dc1f878-1785271486804 + [loading_requirement_container_meta:704d971b-d701-493f-a238-f63e6dc1f878-1785271486804] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 500b3b32-5137-4ef9-9438-5d9bf31f6404-1781212082653 + [executable_block:500b3b32-5137-4ef9-9438-5d9bf31f6404-1781212082653][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 6c3af400-b440-4792-a62a-d351bcd33192-1781212082653 + [loading_requirement_container_meta:6c3af400-b440-4792-a62a-d351bcd33192-1781212082653] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_options_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0fe65808-20c6-4ed4-85a3-37aa8b7bed10-1781212468023 + x = -85 + y = 127 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 758161e7-0e18-4719-a820-904600af6929-1781212082653 + [loading_requirement_container_meta:758161e7-0e18-4719-a820-904600af6929-1781212082653] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = b32aa44c-fc1d-4f82-9b86-1ce8a36e7e24-1781212082653 + [executable_block:b32aa44c-fc1d-4f82-9b86-1ce8a36e7e24-1781212082653][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = e4d52418-52f5-407c-a13e-cb37e7570001-1781212082653 + [loading_requirement_container_meta:e4d52418-52f5-407c-a13e-cb37e7570001-1781212082653] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_multiplayer_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0fe65808-20c6-4ed4-85a3-37aa8b7bed10-1781212468023 + x = 28 + y = 72 + width = 80 + height = 120 + stay_on_screen = true + element_loading_requirement_container_identifier = 159baa2a-017d-4826-b714-3c9989122f34-1781212082653 + [loading_requirement_container_meta:159baa2a-017d-4826-b714-3c9989122f34-1781212082653] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 85e8720e-1896-4e38-b051-f7b721331a06-1781212082654 + [executable_block:85e8720e-1896-4e38-b051-f7b721331a06-1781212082654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 8fece138-d553-4892-8969-b12a90e086b1-1781212082654 + [loading_requirement_container_meta:8fece138-d553-4892-8969-b12a90e086b1-1781212082654] = [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 + element_type = vanilla_button + instance_identifier = minecraft_realms_notification_icons_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1200 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 355 + y = 195 + width = 62 + height = 18 + stay_on_screen = true + element_loading_requirement_container_identifier = 0602e22e-c048-4d49-8549-b50605d436b4-1781212082654 + [loading_requirement_container_meta:0602e22e-c048-4d49-8549-b50605d436b4-1781212082654] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 42b4b8d5-e1f6-4713-af9a-d1ef9a1999be-1781212082653 + [executable_block:42b4b8d5-e1f6-4713-af9a-d1ef9a1999be-1781212082653][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = c60bdafe-2932-4566-b984-52417750a489-1781212082653 + [loading_requirement_container_meta:c60bdafe-2932-4566-b984-52417750a489-1781212082653] = [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 + element_type = vanilla_button + instance_identifier = modmenu_titlescreen_mods_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = element + anchor_point_element = 0fe65808-20c6-4ed4-85a3-37aa8b7bed10-1781212468023 + x = -80 + y = 95 + width = 70 + height = 23 + stay_on_screen = true + element_loading_requirement_container_identifier = 2a3c0bd1-8173-41db-b890-8d603617e933-1781212082653 + [loading_requirement_container_meta:2a3c0bd1-8173-41db-b890-8d603617e933-1781212082653] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = a46e7982-b52f-4068-886b-fa2446c41375-1785269606845 + [executable_block:a46e7982-b52f-4068-886b-fa2446c41375-1785269606845][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 2d73f8ae-ff2d-4645-a82f-0ecf7cfccaa0-1785269606845 + [loading_requirement_container_meta:2d73f8ae-ff2d-4645-a82f-0ecf7cfccaa0-1785269606845] = [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 + element_type = vanilla_button + instance_identifier = 604358 + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1168 + auto_sizing_base_gui_scale = 4 + sticky_anchor = false + anchor_point = vanilla + x = 424 + y = 205 + width = 20 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 687699c5-8247-4872-8d5d-b635677cc4f2-1785269606845 + [loading_requirement_container_meta:687699c5-8247-4872-8d5d-b635677cc4f2-1785269606845] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 424f3ba6-8140-46d4-ae68-b064897cc541-1781212082654 + [executable_block:424f3ba6-8140-46d4-ae68-b064897cc541-1781212082654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 942281b1-0427-4c7b-9286-72fc63a86a92-1781212082654 + [loading_requirement_container_meta:942281b1-0427-4c7b-9286-72fc63a86a92-1781212082654] = [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 + element_type = vanilla_button + instance_identifier = minecraft_branding_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1096 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 2 + y = 379 + width = 129 + height = 9 + stay_on_screen = true + element_loading_requirement_container_identifier = 1862d123-4bbc-49db-a396-50409e207a28-1781212082654 + [loading_requirement_container_meta:1862d123-4bbc-49db-a396-50409e207a28-1781212082654] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = dfba37e1-b6cc-4241-81a3-01dfc71c96d0-1785265723435 + [executable_block:dfba37e1-b6cc-4241-81a3-01dfc71c96d0-1785265723435][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 4eb57d80-bdb3-4418-87a2-9bbb119a3d23-1785265723435 + [loading_requirement_container_meta:4eb57d80-bdb3-4418-87a2-9bbb119a3d23-1785265723435] = [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 + element_type = vanilla_button + instance_identifier = mc_titlescreen_realms_button + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 220 + y = 157 + width = 200 + height = 20 + stay_on_screen = true + element_loading_requirement_container_identifier = 8f8800a4-bce9-444c-bd56-9e7d334ffd75-1785265723435 + [loading_requirement_container_meta:8f8800a4-bce9-444c-bd56-9e7d334ffd75-1785265723435] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 7bc32f9b-e29c-4b00-ab94-1d9509a79dd3-1781212082654 + [executable_block:7bc32f9b-e29c-4b00-ab94-1d9509a79dd3-1781212082654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 25f26eee-6c21-4872-87b3-a048d3c51f06-1781212082654 + [loading_requirement_container_meta:25f26eee-6c21-4872-87b3-a048d3c51f06-1781212082654] = [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 + element_type = vanilla_button + instance_identifier = minecraft_logo_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 192 + y = 6 + width = 256 + height = 51 + stay_on_screen = true + element_loading_requirement_container_identifier = 582ef29c-bc10-4671-9603-311a1043ada6-1781212082653 + [loading_requirement_container_meta:582ef29c-bc10-4671-9603-311a1043ada6-1781212082653] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + +vanilla_button { + button_element_executable_block_identifier = 821f94ff-2a32-417a-8eb4-331b521108e4-1781212082654 + [executable_block:821f94ff-2a32-417a-8eb4-331b521108e4-1781212082654][type:generic] = [executables:] + underline_label_on_hover = false + transparent_background = false + restartbackgroundanimations = true + nine_slice_custom_background = false + navigatable = true + widget_active_state_requirement_container_identifier = 95eeea17-bd13-4c9c-87d7-a3b674ef3953-1781212082654 + [loading_requirement_container_meta:95eeea17-bd13-4c9c-87d7-a3b674ef3953-1781212082654] = [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 + element_type = vanilla_button + instance_identifier = minecraft_splash_widget + appearance_delay = no_delay + disappearance_delay = no_delay + fade_in_v2 = no_fading + fade_out = no_fading + auto_sizing = false + auto_sizing_base_screen_width = 1920 + auto_sizing_base_screen_height = 1095 + auto_sizing_base_gui_scale = 0 + sticky_anchor = false + anchor_point = vanilla + x = 393 + y = 25 + width = 100 + height = 40 + stay_on_screen = true + element_loading_requirement_container_identifier = 6a2544b5-5c72-4c6e-8b7e-0ab4b929574a-1781212082654 + [loading_requirement_container_meta:6a2544b5-5c72-4c6e-8b7e-0ab4b929574a-1781212082654] = [groups:][instances:] + enable_parallax = false + invert_parallax = false + animated_offset_x = 0 + animated_offset_y = 0 + load_once_per_session = false + layer_hidden_in_editor = false + advanced_rotation_mode = false + advanced_vertical_tilt_mode = false + advanced_horizontal_tilt_mode = false + should_be_affected_by_decoration_overlays = true + in_editor_color = #FFC800FF + advanced_posx = -2147483648 + advanced_posy = -2147483648 + advanced_width = -2147483648 + advanced_height = -2147483648 + stretch_x = false + stretch_y = false + appearance_delay_seconds = 1.0 + disappearance_delay_seconds = 1.0 + fade_in_speed = 1.0 + fade_out_speed = 1.0 + base_opacity = 1.0 + parallax_intensity_x = 0.5 + parallax_intensity_y = 0.5 + rotation_degrees = 0.0 + advanced_rotation_degrees = 0.0 + vertical_tilt_degrees = 0.0 + advanced_vertical_tilt_degrees = 0.0 + horizontal_tilt_degrees = 0.0 + advanced_horizontal_tilt_degrees = 0.0 + label_scale = 1.0 + label_shadow = true + nine_slice_border_x = 5 + nine_slice_border_y = 5 + nine_slice_slider_handle_border_x = 5 + nine_slice_slider_handle_border_y = 5 + automated_button_clicks = 0 + is_hidden = true +} + diff --git a/overrides/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget b/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget similarity index 55% rename from overrides/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget rename to config/fancymenu/layout_editor/widgets/element_layer_control.lewidget index 1411537..7ecbf7a 100644 --- a/overrides/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget +++ b/config/fancymenu/layout_editor/widgets/element_layer_control.lewidget @@ -1,10 +1,10 @@ type = layout_editor_widget_settings settings { - offset_x = -225.0 - offset_y = 114.0 - inner_width = 209.0 - inner_height = 300.0 + offset_x = -219.5 + offset_y = 63.735817 + inner_width = 200.0 + inner_height = 263.93826 snapping_side = top-right expanded = true visible = true diff --git a/overrides/config/fancymenu/legacy_checklist.txt b/config/fancymenu/legacy_checklist.txt similarity index 100% rename from overrides/config/fancymenu/legacy_checklist.txt rename to config/fancymenu/legacy_checklist.txt diff --git a/config/fancymenu/listener_instances.txt b/config/fancymenu/listener_instances.txt new file mode 100644 index 0000000..0b6a448 --- /dev/null +++ b/config/fancymenu/listener_instances.txt @@ -0,0 +1,2 @@ +type = listener_instances + diff --git a/config/fancymenu/options.txt b/config/fancymenu/options.txt new file mode 100644 index 0000000..160d9b1 --- /dev/null +++ b/config/fancymenu/options.txt @@ -0,0 +1,155 @@ +##[general] + +I:default_gui_scale = '4'; +B:force_fullscreen = 'false'; +B:play_vanilla_menu_music = 'true'; + + +##[customization] + +B:modpack_mode = 'false'; +B:show_customization_overlay = 'true'; +B:advanced_customization_mode = 'true'; + + +##[loading] + +B:game_intro_fade_out = 'true'; +S:game_intro_sound_channel = 'master'; +S:preload_resources = '[slideshow]main_menu%!source_end!%[source:local]config/fancymenu/assets/banners/main.png%!source_end!%'; +B:allow_game_intro_skip = 'false'; +S:game_intro_animation_name = ''; +F:game_intro_volume = '1.0'; +S:custom_game_intro_skip_text = ''; + + +##[window] + +B:show_custom_window_icon = 'true'; +S:custom_window_icon_macos = '/config/fancymenu/assets/icons/logomac.icns'; +S:custom_window_icon_32 = '/config/fancymenu/assets/icons/logo32.png'; +S:custom_window_title = 'BuiltTheEarth - v0.2.0'; +S:custom_window_icon_16 = '/config/fancymenu/assets/icons/logo16.png'; + + +##[global_customizations] + +B:global_slider_background_nine_slice = 'true'; +S:global_slider_handle_hover = '[source:local]/config/fancymenu/assets/textures/slider_hover.png'; +S:global_button_background_normal = '[source:local]/config/fancymenu/assets/textures/button_2.png'; +B:global_button_label_shadow = 'false'; +S:global_button_background_inactive = ''; +B:global_button_background_nine_slice = 'true'; +S:global_button_label_hover_color = ''; +F:global_slider_label_scale = '1.0'; +S:global_button_label_base_color = ''; +S:global_button_click_sound = '[source:local]/config/fancymenu/assets/release.ogg'; +S:global_slider_label_base_color = ''; +B:global_button_label_underline_on_hover = 'false'; +I:global_button_background_nine_slice_border_right = '5'; +I:global_slider_background_nine_slice_border_top = '5'; +I:global_slider_handle_nine_slice_border_top = '5'; +I:global_slider_handle_nine_slice_border_bottom = '5'; +F:global_button_label_scale = '1.0'; +S:global_slider_label_scale_raw = ''; +S:global_slider_handle_inactive = ''; +B:global_slider_label_shadow = 'true'; +S:global_button_label_scale_raw = ''; +I:global_slider_handle_nine_slice_border_right = '5'; +S:global_slider_label_hover_color = ''; +I:global_slider_background_nine_slice_border_bottom = '5'; +S:global_menu_music_tracks = ''; +I:global_slider_background_nine_slice_border_left = '5'; +S:global_button_background_hover = '[source:local]/config/fancymenu/assets/textures/button_2_hover.png'; +I:global_button_background_nine_slice_border_top = '5'; +S:global_slider_background = '[source:local]/config/fancymenu/assets/textures/slider_bg.png'; +I:global_button_background_nine_slice_border_bottom = '5'; +B:global_slider_label_underline_on_hover = 'false'; +B:global_slider_handle_nine_slice = 'true'; +I:global_button_background_nine_slice_border_left = '5'; +B:global_button_background_transparent = 'false'; +B:seamless_world_loading = 'false'; +B:global_slider_background_transparent = 'false'; +S:global_slider_handle_normal = '[source:local]/config/fancymenu/assets/textures/slider.png'; +I:global_slider_background_nine_slice_border_right = '5'; +S:global_background_panorama = ''; +I:global_slider_handle_nine_slice_border_left = '5'; +S:global_menu_background_texture = ''; + + +##[multiplayer_screen] + +B:show_multiplayer_screen_server_icons = 'true'; + + +##[singleplayer_screen] + +B:show_singleplayer_screen_world_icons = 'true'; + + +##[layout_editor] + +B:show_layout_editor_grid = 'true'; +B:enable_element_rotation_controls = 'true'; +D:anchor_overlay_hover_charging_time_seconds = '2.0'; +B:anchor_overlay_change_anchor_on_element_hover = 'true'; +B:anchor_overlay_show_all_connection_lines = 'true'; +I:layout_editor_grid_size = '20'; +S:anchor_overlay_color_border_override = ''; +B:layout_editor_grid_snapping = 'true'; +B:anchor_overlay_change_anchor_on_area_hover = 'true'; +S:anchor_overlay_color_base_override = ''; +F:anchor_overlay_opacity_normal = '0.5'; +F:anchor_overlay_opacity_busy = '0.7'; +S:anchor_overlay_visibility_mode = 'dragging'; +F:layout_editor_grid_snapping_strength = '1.0'; +B:invert_anchor_overlay_color = 'false'; +B:enable_element_tilting_controls = 'true'; + + +##[ui] + +B:enable_ui_animations = 'true'; +S:ui_scale_v2 = 'medium'; +I:context_menu_hover_open_speed = '1'; +S:ui_theme = 'dark'; +B:pip_window_docking = 'true'; +B:enable_ui_blur = 'true'; +F:ui_blur_intensity = '3.0'; +B:use_minecraft_font = 'true'; +B:play_ui_click_sounds = 'true'; +B:smooth_font_multiline_rendering = 'false'; + + +##[debug_overlay] + +B:show_debug_overlay = 'false'; +B:debug_overlay_show_basic_screen_category = 'true'; +B:debug_overlay_show_resources_category = 'true'; +B:debug_overlay_show_system_category = 'true'; +B:debug_overlay_show_advanced_screen_category = 'true'; + + +##[tutorial] + +B:show_welcome_screen = 'false'; + + +##[keyframe_editor] + +B:arrow_keys_move_preview = 'false'; + + +##[advanced] + +L:placeholder_caching_duration_ms = '30'; +L:requirement_caching_duration_ms = '0'; + + +##[dev] + +B:mcp_server_enabled = 'false'; +B:dev_pip_window_debug = 'false'; +B:dev_force_mcef_missing = 'false'; +B:dev_force_watermedia_missing = 'false'; +I:mcp_server_port = '48561'; \ No newline at end of file diff --git a/config/fancymenu/slideshows/mainmenu/backgrounds.json b/config/fancymenu/slideshows/mainmenu/backgrounds.json new file mode 100644 index 0000000..8902dd4 --- /dev/null +++ b/config/fancymenu/slideshows/mainmenu/backgrounds.json @@ -0,0 +1,26 @@ +{ + "1": { + "url": "https://cdn.buildtheearth.net/uploads/b83f00a7a9a30369aecfe714b859b13f75cb9047ea4982894ad672946035a4cc", + "credit": "Azguendare_" + }, + "2": { + "url": "https://cdn.buildtheearth.net/uploads/401f90fb89d8349935cbf8a46d67604c36cf283be6edabe4892a6bac159fcf17", + "credit": "phattiel" + }, + "3": { + "url": "https://cdn.buildtheearth.net/uploads/4bcfe6a2e29fce8c7e572c4a4a70f9e8acaf6390d9c5478cded090eeb80a578b", + "credit": "av1ks" + }, + "4": { + "url": "https://cdn.buildtheearth.net/uploads/4bcfe6a2e29fce8c7e572c4a4a70f9e8acaf6390d9c5478cded090eeb80a578b", + "credit": "richtigerichtung, norwod and thatsjustlukas" + }, + "5": { + "url": "https://cdn.buildtheearth.net/uploads/21ca3ee59b381b30c47d05f68dd33c2da365c0905952e1c0b4146030af6ff09d", + "credit": "davixdevelop, magix92, pineapplestrix, adi1203" + }, + "logo": { + "url": "https://cdn.buildtheearth.net/uploads/553cee2de3cb651ccbe6c5405e746bfb57926fe8adf97d1d6ed708d7815f0485", + "credit": null + } +} \ No newline at end of file diff --git a/overrides/config/fancymenu/assets/backgrounds/0.png b/config/fancymenu/slideshows/mainmenu/images/0.png similarity index 100% rename from overrides/config/fancymenu/assets/backgrounds/0.png rename to config/fancymenu/slideshows/mainmenu/images/0.png diff --git a/overrides/config/fancymenu/assets/backgrounds/1.png b/config/fancymenu/slideshows/mainmenu/images/1.png similarity index 100% rename from overrides/config/fancymenu/assets/backgrounds/1.png rename to config/fancymenu/slideshows/mainmenu/images/1.png diff --git a/overrides/config/fancymenu/assets/backgrounds/2.png b/config/fancymenu/slideshows/mainmenu/images/2.png similarity index 100% rename from overrides/config/fancymenu/assets/backgrounds/2.png rename to config/fancymenu/slideshows/mainmenu/images/2.png diff --git a/overrides/config/fancymenu/assets/backgrounds/3.png b/config/fancymenu/slideshows/mainmenu/images/3.png similarity index 100% rename from overrides/config/fancymenu/assets/backgrounds/3.png rename to config/fancymenu/slideshows/mainmenu/images/3.png diff --git a/overrides/config/fancymenu/assets/backgrounds/4.png b/config/fancymenu/slideshows/mainmenu/images/4.png similarity index 100% rename from overrides/config/fancymenu/assets/backgrounds/4.png rename to config/fancymenu/slideshows/mainmenu/images/4.png diff --git a/overrides/config/fancymenu/slideshows/mainmenuold/images/image_01.png b/config/fancymenu/slideshows/mainmenu/images/5.png similarity index 100% rename from overrides/config/fancymenu/slideshows/mainmenuold/images/image_01.png rename to config/fancymenu/slideshows/mainmenu/images/5.png diff --git a/overrides/config/fancymenu/slideshows/mainmenuold/images/image_02.png b/config/fancymenu/slideshows/mainmenu/images/6.png similarity index 100% rename from overrides/config/fancymenu/slideshows/mainmenuold/images/image_02.png rename to config/fancymenu/slideshows/mainmenu/images/6.png diff --git a/overrides/config/fancymenu/slideshows/mainmenuold/images/image_03.png b/config/fancymenu/slideshows/mainmenu/images/7.png similarity index 100% rename from overrides/config/fancymenu/slideshows/mainmenuold/images/image_03.png rename to config/fancymenu/slideshows/mainmenu/images/7.png diff --git a/overrides/config/fancymenu/slideshows/mainmenuold/images/image_04.png b/config/fancymenu/slideshows/mainmenu/images/8.png similarity index 100% rename from overrides/config/fancymenu/slideshows/mainmenuold/images/image_04.png rename to config/fancymenu/slideshows/mainmenu/images/8.png diff --git a/overrides/config/fancymenu/slideshows/mainmenuold/images/image_05.png b/config/fancymenu/slideshows/mainmenu/images/9.png similarity index 100% rename from overrides/config/fancymenu/slideshows/mainmenuold/images/image_05.png rename to config/fancymenu/slideshows/mainmenu/images/9.png diff --git a/overrides/config/fancymenu/slideshows/mainmenu/properties.txt b/config/fancymenu/slideshows/mainmenu/properties.txt similarity index 100% rename from overrides/config/fancymenu/slideshows/mainmenu/properties.txt rename to config/fancymenu/slideshows/mainmenu/properties.txt diff --git a/config/fancymenu/ui_themes/cherry_blossom.json b/config/fancymenu/ui_themes/cherry_blossom.json new file mode 100644 index 0000000..cb27c4b --- /dev/null +++ b/config/fancymenu/ui_themes/cherry_blossom.json @@ -0,0 +1,374 @@ +{ + "identifier": "cherry_blossom", + "display_name": "fancymenu.ui.themes.cherry_blossom", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#39323D0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#39323DFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#FAF4F8B9" + }, + "ui_blur_overlay_border_color": { + "hex": "#DDCFDAA0" + }, + "ui_blur_interface_background_tint": { + "hex": "#F9F3F7D7" + }, + "ui_blur_interface_border_color": { + "hex": "#DDCFDAA0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#F0E8EED7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFBFD9B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F5EBF291" + }, + "ui_blur_interface_area_border_color": { + "hex": "#D7CAD596" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#FFD8EB8C" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFBFD9B" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#FFDDEC9B" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#FFE8F4AF" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#FFD6E8AF" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#D3C7D296" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#39323DFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#817A86FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFBFD96" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#D3C7D296" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#E0749CD2" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#39323DFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#817A86FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#9D96A2FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#39323DFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFFAFDDC" + }, + "ui_icon_button_hover_color": { + "hex": "#3E37430D" + }, + "ui_icon_texture_color": { + "hex": "#3E3743FF" + }, + "ui_overlay_background_color": { + "hex": "#F5EFF3FF" + }, + "ui_overlay_border_color": { + "hex": "#D9CDD7FF" + }, + "ui_interface_background_color": { + "hex": "#FBF6F9FF" + }, + "ui_interface_border_color": { + "hex": "#D9CDD7FF" + }, + "ui_interface_title_bar_color": { + "hex": "#EEE6ECFF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFCFEFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F4ECF2FF" + }, + "ui_interface_area_border_color": { + "hex": "#D9CDD7FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#FFD8EBFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFBFDFF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#FFDDECFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#FFE8F4FF" + }, + "ui_interface_widget_border_color": { + "hex": "#D0C5D0FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#342E3AFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#847D89FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFBFDFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#D2C7D2FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#E0749CFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#342E3AFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#948E9AFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#9E97A3FF" + }, + "ui_interface_generic_text_color": { + "hex": "#342E3AFF" + }, + "ui_tooltip_background_color": { + "hex": "#F7F0F5FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#229E6EFF" + }, + "error_color": { + "hex": "#DB3F60FF" + }, + "warning_color": { + "hex": "#E07B34FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#DD688FFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#D878A65F" + }, + "layout_editor_grid_color_center": { + "hex": "#BC598873" + }, + "layout_editor_element_border_color_normal": { + "hex": "#DB5A88FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#EC7CABFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#B060CDFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#EC9958FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#8BC46AFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DB3F60C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000060" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#4EBE9CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#2B7866FF" + }, + "menu_bar_close_icon_color": { + "hex": "#E04B6CFF" + }, + "pip_docking_overlay_color": { + "hex": "#DD688F50" + }, + "pip_docking_overlay_border_color": { + "hex": "#DD688FC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#BAAFBA8C" + }, + "scroll_grabber_color_hover": { + "hex": "#A297A4B4" + }, + "actions_entry_background_color_action": { + "hex": "#EEE9EEFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#E2DBE3FF" + }, + "actions_entry_background_color_if": { + "hex": "#E5F3FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D2E7FCFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F3E9FCFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#E8DAF7FF" + }, + "actions_entry_background_color_else": { + "hex": "#FFF1E3FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE4CCFF" + }, + "actions_entry_background_color_while": { + "hex": "#E4F6F1FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D2EEE7FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6DDFF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFEBC3FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E6EDFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D4DFFCFF" + }, + "actions_entry_background_color_folder": { + "hex": "#F8E6EEFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F1D4DFFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#F1EDF0FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E5DFE5FF" + }, + "actions_chain_indicator_color": { + "hex": "#AD7D9E96" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#DB5A88CD" + }, + "actions_chain_indicator_selected_color": { + "hex": "#EBA462DC" + }, + "actions_minimap_background_color": { + "hex": "#FAF4F8E1" + }, + "actions_minimap_border_color": { + "hex": "#CEC3CEDC" + }, + "actions_minimap_viewport_color": { + "hex": "#0000001C" + }, + "actions_minimap_viewport_border_color": { + "hex": "#78648278" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#C06E94DC" + }, + "bullet_list_dot_color_1": { + "hex": "#DB5A88FF" + }, + "bullet_list_dot_color_2": { + "hex": "#E3859CFF" + }, + "bullet_list_dot_color_3": { + "hex": "#ECA35CFF" + }, + "input_field_suggestions_background_color": { + "hex": "#FAF4F8FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#342E3AFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#C64C7AFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#9B939FFF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#79707EFF" + }, + "text_editor_text_color": { + "hex": "#342E3AFF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#DB3F60FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#E07B34FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#6D9F40FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#349888FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#3976CFFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#9556D2FF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#CA519AFF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#D24A5CFF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E97842FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#DFA840FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#3EAA7CFF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#2E7683FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#ECA35CFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/cozy_campfire.json b/config/fancymenu/ui_themes/cozy_campfire.json new file mode 100644 index 0000000..4c58861 --- /dev/null +++ b/config/fancymenu/ui_themes/cozy_campfire.json @@ -0,0 +1,374 @@ +{ + "identifier": "cozy_campfire", + "display_name": "fancymenu.ui.themes.cozy_campfire", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#F2E5D00D" + }, + "ui_blur_icon_texture_color": { + "hex": "#F2E5D0FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#181310B9" + }, + "ui_blur_overlay_border_color": { + "hex": "#5C4E42A0" + }, + "ui_blur_interface_background_tint": { + "hex": "#1A1410D7" + }, + "ui_blur_interface_border_color": { + "hex": "#5C4E42A0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#261E16D7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#221B149B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#18141096" + }, + "ui_blur_interface_area_border_color": { + "hex": "#60524696" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#4E362896" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#241C1696" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#B0622C96" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#32261CAA" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#CE7834AA" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#60524696" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#9C9286FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#221B1496" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#60524696" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#DC7E3AC8" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#9C9286FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#8A8074FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#F2E5D0FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#1C1610DC" + }, + "ui_icon_button_hover_color": { + "hex": "#F2E5D00D" + }, + "ui_icon_texture_color": { + "hex": "#F2E5D0FF" + }, + "ui_overlay_background_color": { + "hex": "#1A1410FF" + }, + "ui_overlay_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_background_color": { + "hex": "#18130FFF" + }, + "ui_interface_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_title_bar_color": { + "hex": "#2A2018FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#221B14FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#16120EFF" + }, + "ui_interface_area_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#463024FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#241C16FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#B0622CFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#34281EFF" + }, + "ui_interface_widget_border_color": { + "hex": "#564A40FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#9C9286FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#221B14FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#564A40FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#DC7E3AFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#F2E5D0FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#9C9286FF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#8A8074FF" + }, + "ui_interface_generic_text_color": { + "hex": "#F2E5D0FF" + }, + "ui_tooltip_background_color": { + "hex": "#1C1610FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#6EC47AFF" + }, + "error_color": { + "hex": "#DC5C4EFF" + }, + "warning_color": { + "hex": "#E88E40FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#E88E40FF" + }, + "layout_editor_grid_color_normal": { + "hex": "#AA6C4C6E" + }, + "layout_editor_grid_color_center": { + "hex": "#E88E4082" + }, + "layout_editor_element_border_color_normal": { + "hex": "#E88E40FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#F6AA56FF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#A266B6FF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#ECA450FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#78BE78FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DC5C4EC8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#F2E5D0FF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#5CBA9CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#347460FF" + }, + "menu_bar_close_icon_color": { + "hex": "#E88E40FF" + }, + "pip_docking_overlay_color": { + "hex": "#E88E4050" + }, + "pip_docking_overlay_border_color": { + "hex": "#E88E40C8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#645A5096" + }, + "scroll_grabber_color_hover": { + "hex": "#8C7C6CC8" + }, + "actions_entry_background_color_action": { + "hex": "#282018FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#362A1EFF" + }, + "actions_entry_background_color_if": { + "hex": "#222C28FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#2C3A34FF" + }, + "actions_entry_background_color_else_if": { + "hex": "#2E2428FF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#3C2E34FF" + }, + "actions_entry_background_color_else": { + "hex": "#38281CFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#463424FF" + }, + "actions_entry_background_color_while": { + "hex": "#1C302CFF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#243E38FF" + }, + "actions_entry_background_color_delay": { + "hex": "#3C341CFF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#4C4222FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#242C38FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#2E3A4CFF" + }, + "actions_entry_background_color_folder": { + "hex": "#38262AFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#483238FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#241E20FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#30282CFF" + }, + "actions_chain_indicator_color": { + "hex": "#9A7862B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#E88E40D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#DC7E3ADC" + }, + "actions_minimap_background_color": { + "hex": "#16120ED2" + }, + "actions_minimap_border_color": { + "hex": "#62564CDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF20" + }, + "actions_minimap_viewport_border_color": { + "hex": "#B89C8678" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#E88E40DC" + }, + "bullet_list_dot_color_1": { + "hex": "#E88E40FF" + }, + "bullet_list_dot_color_2": { + "hex": "#C0805AFF" + }, + "bullet_list_dot_color_3": { + "hex": "#84BA84FF" + }, + "input_field_suggestions_background_color": { + "hex": "#221B14FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#F2E5D0FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#E88E40FF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#827A72FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#AAA096FF" + }, + "text_editor_text_color": { + "hex": "#E6DAC6FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#E87054FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#E88E40FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#84C66EFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#60BEAAFF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#76A6ECFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#B07EECFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#D67EB6FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#DC5C4EFF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E88E40FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#F2BC62FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#76D294FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#5EA6B0FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#E88E40FF" + } +} \ No newline at end of file diff --git a/overrides/config/fancymenu/ui_themes/dark.json b/config/fancymenu/ui_themes/dark.json similarity index 51% rename from overrides/config/fancymenu/ui_themes/dark.json rename to config/fancymenu/ui_themes/dark.json index 67b5605..b58c058 100644 --- a/overrides/config/fancymenu/ui_themes/dark.json +++ b/config/fancymenu/ui_themes/dark.json @@ -1,17 +1,183 @@ { "identifier": "dark", "display_name": "fancymenu.ui.themes.dark", - "menu_bar_bottom_line_color": { - "hex": "#5D6164FF" + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#262626AE" + }, + "ui_blur_overlay_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_background_tint": { + "hex": "#262626D8" + }, + "ui_blur_interface_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#4F4F4FAE" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#2B2B2B64" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#05050549" + }, + "ui_blur_interface_area_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#7D7D8335" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#47474766" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#7E7E7E66" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#539CD44D" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#86C6F84D" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#5D616464" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#717577FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#2B2B2B66" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#5D616466" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#5D616466" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#717577FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#808080FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#131313A9" + }, + "ui_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_overlay_background_color": { + "hex": "#282828FF" + }, + "ui_overlay_border_color": { + "hex": "#3E4042FF" + }, + "ui_interface_background_color": { + "hex": "#212121FF" + }, + "ui_interface_border_color": { + "hex": "#3E4042FF" + }, + "ui_interface_title_bar_color": { + "hex": "#575757FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#2B2B2BFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#262626FF" + }, + "ui_interface_area_border_color": { + "hex": "#3B3B3BFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#323232FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#282828FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#34A2F5FF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#147FD0FF" + }, + "ui_interface_widget_border_color": { + "hex": "#3B3B3BFF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#717577FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#2B2B2BFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#3B3B3BFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#3B3B3BFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#CEDDEDFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#717577FF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#808080FF" + }, + "ui_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_tooltip_background_color": { + "hex": "#2B2B2BFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#31CE05FF" + }, + "error_color": { + "hex": "#ED4545FF" + }, + "warning_color": { + "hex": "#E59B12FF" }, "layout_editor_mouse_selection_rectangle_color": { "hex": "#0394FCFF" }, "layout_editor_grid_color_normal": { - "hex": "#BA79F164" + "hex": "#404040FF" }, "layout_editor_grid_color_center": { - "hex": "#5B5EFF64" + "hex": "#5A5A5AFF" }, "layout_editor_element_border_color_normal": { "hex": "#0394FCFF" @@ -43,54 +209,24 @@ "layout_editor_anchor_point_overlay_color_border": { "hex": "#114F34FF" }, - "layout_editor_close_icon_color": { + "menu_bar_close_icon_color": { "hex": "#DA3C1EFF" }, + "pip_docking_overlay_color": { + "hex": "#4096FF50" + }, + "pip_docking_overlay_border_color": { + "hex": "#4096FFC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, "scroll_grabber_color_normal": { "hex": "#595B5D64" }, "scroll_grabber_color_hover": { "hex": "#66686864" }, - "screen_background_color": { - "hex": "#3C3F41FF" - }, - "screen_background_color_darker": { - "hex": "#262626FF" - }, - "element_border_color_normal": { - "hex": "#5D6164FF" - }, - "element_border_color_hover": { - "hex": "#5D6164FF" - }, - "element_background_color_normal": { - "hex": "#474747FF" - }, - "element_background_color_hover": { - "hex": "#539CD4FF" - }, - "slider_handle_color_normal": { - "hex": "#4784B4FF" - }, - "slider_handle_color_hover": { - "hex": "#539CD4FF" - }, - "area_background_color": { - "hex": "#2B2B2BFF" - }, - "edit_box_background_color": { - "hex": "#2B2B2BFF" - }, - "edit_box_border_color_normal": { - "hex": "#5D6164FF" - }, - "edit_box_border_color_focused": { - "hex": "#5D6164FF" - }, - "list_entry_color_selected_hovered": { - "hex": "#323232FF" - }, "actions_entry_background_color_action": { "hex": "#3A3F44FF" }, @@ -121,6 +257,18 @@ "actions_entry_background_color_while_hover": { "hex": "#2D5C52FF" }, + "actions_entry_background_color_delay": { + "hex": "#524C24FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#635C30FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#344660FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#3F5470FF" + }, "actions_entry_background_color_folder": { "hex": "#50303CFF" }, @@ -157,69 +305,33 @@ "actions_minimap_tooltip_border_color": { "hex": "#78AADCDC" }, - "text_editor_sidebar_color": { - "hex": "#313335FF" - }, - "text_editor_line_number_text_color_normal": { - "hex": "#5B5C5EFF" - }, - "text_editor_line_number_text_color_selected": { - "hex": "#899396FF" - }, - "listing_dot_color_1": { + "bullet_list_dot_color_1": { "hex": "#3E86A0FF" }, - "listing_dot_color_2": { + "bullet_list_dot_color_2": { "hex": "#AD6C79FF" }, - "listing_dot_color_3": { + "bullet_list_dot_color_3": { "hex": "#AA823FFF" }, - "suggestions_background_color": { + "input_field_suggestions_background_color": { "hex": "#474747FF" }, - "suggestions_text_color_normal": { + "input_field_suggestions_text_color_normal": { "hex": "#CEDDEDFF" }, - "suggestions_text_color_selected": { + "input_field_suggestions_text_color_selected": { "hex": "#64A5ECFF" }, - "ui_texture_color": { - "hex": "#FFFFFFFF" - }, - "generic_text_base_color": { - "hex": "#FFFFFFFF" - }, - "element_label_color_normal": { - "hex": "#CEDDEDFF" - }, - "element_label_color_inactive": { - "hex": "#717577FF" - }, - "edit_box_text_color_normal": { - "hex": "#CEDDEDFF" - }, - "edit_box_text_color_uneditable": { - "hex": "#717577FF" - }, - "edit_box_suggestion_text_color": { - "hex": "#808080FF" + "text_editor_line_number_text_color_normal": { + "hex": "#5B5C5EFF" }, - "description_area_text_color": { - "hex": "#CEDDEDFF" + "text_editor_line_number_text_color_selected": { + "hex": "#899396FF" }, "text_editor_text_color": { "hex": "#9EAAB8FF" }, - "success_text_color": { - "hex": "#31CE05FF" - }, - "error_text_color": { - "hex": "#ED4545FF" - }, - "warning_text_color": { - "hex": "#E59B12FF" - }, "text_editor_text_formatting_nested_text_color_1": { "hex": "#EB7F7FFF" }, diff --git a/config/fancymenu/ui_themes/dark_high_contrast.json b/config/fancymenu/ui_themes/dark_high_contrast.json new file mode 100644 index 0000000..23b9ca3 --- /dev/null +++ b/config/fancymenu/ui_themes/dark_high_contrast.json @@ -0,0 +1,374 @@ +{ + "identifier": "dark_high_contrast", + "display_name": "fancymenu.ui.themes.dark_high_contrast", + "allow_blur": false, + "allow_animations": false, + "interface_corner_rounding_radius": 0.0, + "widget_corner_rounding_radius": 0.0, + "ui_blur_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#000000DC" + }, + "ui_blur_overlay_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_background_tint": { + "hex": "#000000DC" + }, + "ui_blur_interface_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#0C0C0CDC" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#080808DC" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#000000DC" + }, + "ui_blur_interface_area_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#FFAA0078" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#080808DC" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#FFAA00C8" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#1E1E1EDC" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#FFD200DC" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#BEBEBEFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#000000DC" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#FFFFFFDC" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#FFAA00DC" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#BEBEBEFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#C8C8C8FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#000000E6" + }, + "ui_icon_button_hover_color": { + "hex": "#FFFFFF0D" + }, + "ui_icon_texture_color": { + "hex": "#FFFFFFFF" + }, + "ui_overlay_background_color": { + "hex": "#000000FF" + }, + "ui_overlay_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_background_color": { + "hex": "#000000FF" + }, + "ui_interface_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_title_bar_color": { + "hex": "#0C0C0CFF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#080808FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#000000FF" + }, + "ui_interface_area_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#FFAA00FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#080808FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#FFAA00FF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#1E1E1EFF" + }, + "ui_interface_widget_border_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#BEBEBEFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#000000FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#FFAA00FF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#BEBEBEFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#C8C8C8FF" + }, + "ui_interface_generic_text_color": { + "hex": "#FFFFFFFF" + }, + "ui_tooltip_background_color": { + "hex": "#000000FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#00FF80FF" + }, + "error_color": { + "hex": "#FF4040FF" + }, + "warning_color": { + "hex": "#FFD000FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#FFAA00FF" + }, + "layout_editor_grid_color_normal": { + "hex": "#FFFFFF8C" + }, + "layout_editor_grid_color_center": { + "hex": "#FFAA00B4" + }, + "layout_editor_element_border_color_normal": { + "hex": "#FFFFFFFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#FFAA00FF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#00C8FFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#FFD000FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#00FF80FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#FF4040DC" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#000000B4" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#00FFB4FF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#00966EFF" + }, + "menu_bar_close_icon_color": { + "hex": "#FF4040FF" + }, + "pip_docking_overlay_color": { + "hex": "#FFAA0078" + }, + "pip_docking_overlay_border_color": { + "hex": "#FFAA00DC" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#FFFFFF8C" + }, + "scroll_grabber_color_hover": { + "hex": "#FFAA00C8" + }, + "actions_entry_background_color_action": { + "hex": "#0F0F0FFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#1E1E1EFF" + }, + "actions_entry_background_color_if": { + "hex": "#001E3CFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#002D5AFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#23003CFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#37005AFF" + }, + "actions_entry_background_color_else": { + "hex": "#3C2300FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#5A3700FF" + }, + "actions_entry_background_color_while": { + "hex": "#002D28FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#00413AFF" + }, + "actions_entry_background_color_delay": { + "hex": "#3C3200FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#554600FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#001E46FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#002D64FF" + }, + "actions_entry_background_color_folder": { + "hex": "#3C001EFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#55002DFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#141414FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#232323FF" + }, + "actions_chain_indicator_color": { + "hex": "#FFFFFFB4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#FFAA00DC" + }, + "actions_chain_indicator_selected_color": { + "hex": "#FFD000F0" + }, + "actions_minimap_background_color": { + "hex": "#000000DC" + }, + "actions_minimap_border_color": { + "hex": "#FFFFFFDC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF28" + }, + "actions_minimap_viewport_border_color": { + "hex": "#FFAA008C" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#FFAA00DC" + }, + "bullet_list_dot_color_1": { + "hex": "#FFAA00FF" + }, + "bullet_list_dot_color_2": { + "hex": "#00C8FFFF" + }, + "bullet_list_dot_color_3": { + "hex": "#00FF80FF" + }, + "input_field_suggestions_background_color": { + "hex": "#000000FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#FFFFFFFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#FFAA00FF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#C8C8C8FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#FFFFFFFF" + }, + "text_editor_text_color": { + "hex": "#FFFFFFFF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#FF4040FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#FFD000FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#00FF80FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#00C8FFFF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#78B4FFFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#C878FFFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#FF78C8FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#FF6464FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#FFAA00FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#FFE650FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#00FFA0FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#00DCC8FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#FFD000FF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/light.json b/config/fancymenu/ui_themes/light.json new file mode 100644 index 0000000..66e5666 --- /dev/null +++ b/config/fancymenu/ui_themes/light.json @@ -0,0 +1,374 @@ +{ + "identifier": "light", + "display_name": "fancymenu.ui.themes.light", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#2C313A0D" + }, + "ui_blur_icon_texture_color": { + "hex": "#2C313AFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#F8FAFDB4" + }, + "ui_blur_overlay_border_color": { + "hex": "#CED4DD96" + }, + "ui_blur_interface_background_tint": { + "hex": "#F8FAFDD2" + }, + "ui_blur_interface_border_color": { + "hex": "#B4B9BEA8" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#EBEFF5D2" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFFFF96" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F2F6FB8C" + }, + "ui_blur_interface_area_border_color": { + "hex": "#CCD2DC8C" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#CEE0FF82" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFF96" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#D8E9FF96" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#E8F2FFAA" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#D2E4FFAA" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#C6CED996" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#2C313AFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#787E88FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFFFF96" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#C6CED996" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#6FA9FFC8" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#2C313AFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#787E88FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#9197A1FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#2C313AFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFFFFFDC" + }, + "ui_icon_button_hover_color": { + "hex": "#363C450D" + }, + "ui_icon_texture_color": { + "hex": "#363C45FF" + }, + "ui_overlay_background_color": { + "hex": "#F2F4F7FF" + }, + "ui_overlay_border_color": { + "hex": "#D2D8E0FF" + }, + "ui_interface_background_color": { + "hex": "#F7F8FAFF" + }, + "ui_interface_border_color": { + "hex": "#D2D8E0FF" + }, + "ui_interface_title_bar_color": { + "hex": "#EBEEF2FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F1F4F8FF" + }, + "ui_interface_area_border_color": { + "hex": "#D6DBE3FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#DCE9FFFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#D8E9FFFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#E6F0FFFF" + }, + "ui_interface_widget_border_color": { + "hex": "#C8CED7FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#2A2E36FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#7A818AFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#C7CED9FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#6FA9FFFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#2A2E36FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#8C929CFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#969DA8FF" + }, + "ui_interface_generic_text_color": { + "hex": "#2A2E36FF" + }, + "ui_tooltip_background_color": { + "hex": "#F5F7FBFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#16A34AFF" + }, + "error_color": { + "hex": "#DC2626FF" + }, + "warning_color": { + "hex": "#D97706FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#3B82F6FF" + }, + "layout_editor_grid_color_normal": { + "hex": "#8B5CF65A" + }, + "layout_editor_grid_color_center": { + "hex": "#2563EB64" + }, + "layout_editor_element_border_color_normal": { + "hex": "#3B82F6FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#22D3EEFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9333EAFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#F59E0BFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#84CC16FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#EF4444C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000060" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#10B981FF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#0F766EFF" + }, + "menu_bar_close_icon_color": { + "hex": "#EF4444FF" + }, + "pip_docking_overlay_color": { + "hex": "#3B82F650" + }, + "pip_docking_overlay_border_color": { + "hex": "#3B82F6C8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#B0B6BE82" + }, + "scroll_grabber_color_hover": { + "hex": "#969CA5AA" + }, + "actions_entry_background_color_action": { + "hex": "#E8ECF3FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#DDE3ECFF" + }, + "actions_entry_background_color_if": { + "hex": "#E3F1FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D2E7FFFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F0E7FFFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#E3D6FFFF" + }, + "actions_entry_background_color_else": { + "hex": "#FFF2DFFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE8C4FF" + }, + "actions_entry_background_color_while": { + "hex": "#E3F7F2FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D2F0E7FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6D9FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFECC0FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E7EEFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D6E1FFFF" + }, + "actions_entry_background_color_folder": { + "hex": "#F8E7EEFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F3D6E1FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#EFF1F4FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E2E6ECFF" + }, + "actions_chain_indicator_color": { + "hex": "#5C7EB28C" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#42A5F5C8" + }, + "actions_chain_indicator_selected_color": { + "hex": "#F59E0BDC" + }, + "actions_minimap_background_color": { + "hex": "#F5F8FCDC" + }, + "actions_minimap_border_color": { + "hex": "#C4CCD6DC" + }, + "actions_minimap_viewport_color": { + "hex": "#0000001E" + }, + "actions_minimap_viewport_border_color": { + "hex": "#5A78A078" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#5A8CC8DC" + }, + "bullet_list_dot_color_1": { + "hex": "#3B82F6FF" + }, + "bullet_list_dot_color_2": { + "hex": "#EC4899FF" + }, + "bullet_list_dot_color_3": { + "hex": "#F59E0BFF" + }, + "input_field_suggestions_background_color": { + "hex": "#F5F7FBFF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#2A2E36FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#2563EBFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#9197A0FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#69717DFF" + }, + "text_editor_text_color": { + "hex": "#2A2E36FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#E11D48FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#D97706FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#65A30DFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#0D9488FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#2563EBFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#7C3AEDFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#DB2777FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#EF4444FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#F97316FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#EAB308FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#22C55EFF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#0E7490FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#F59E0BFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/light_high_contrast.json b/config/fancymenu/ui_themes/light_high_contrast.json new file mode 100644 index 0000000..f7f74c4 --- /dev/null +++ b/config/fancymenu/ui_themes/light_high_contrast.json @@ -0,0 +1,374 @@ +{ + "identifier": "light_high_contrast", + "display_name": "fancymenu.ui.themes.light_high_contrast", + "allow_blur": false, + "allow_animations": false, + "interface_corner_rounding_radius": 0.0, + "widget_corner_rounding_radius": 0.0, + "ui_blur_icon_button_hover_color": { + "hex": "#0000000D" + }, + "ui_blur_icon_texture_color": { + "hex": "#000000FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#FFFFFFEB" + }, + "ui_blur_overlay_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_background_tint": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#F5F5F5EB" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F5F5F5EB" + }, + "ui_blur_interface_area_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#0078FF8C" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#0078FFD2" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#EBEBEBEB" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#00A0FFEB" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#000000EB" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#000000FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#505050FF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFFFFEB" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#000000EB" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#0078FFEB" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#000000FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#505050FF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#5A5A5AFF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#000000FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFFFFFF5" + }, + "ui_icon_button_hover_color": { + "hex": "#0000000D" + }, + "ui_icon_texture_color": { + "hex": "#000000FF" + }, + "ui_overlay_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_overlay_border_color": { + "hex": "#000000FF" + }, + "ui_interface_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_border_color": { + "hex": "#000000FF" + }, + "ui_interface_title_bar_color": { + "hex": "#F5F5F5FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F5F5F5FF" + }, + "ui_interface_area_border_color": { + "hex": "#000000FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#0078FFFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFFFFFF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#0078FFFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#EBEBEBFF" + }, + "ui_interface_widget_border_color": { + "hex": "#000000FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#000000FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#505050FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFFFFFF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#000000FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#0078FFFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#000000FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#505050FF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#5A5A5AFF" + }, + "ui_interface_generic_text_color": { + "hex": "#000000FF" + }, + "ui_tooltip_background_color": { + "hex": "#FFFFFFFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#009600FF" + }, + "error_color": { + "hex": "#C80000FF" + }, + "warning_color": { + "hex": "#B46E00FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#0078FFFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#0000008C" + }, + "layout_editor_grid_color_center": { + "hex": "#0078FFB4" + }, + "layout_editor_element_border_color_normal": { + "hex": "#000000FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#0078FFFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#8C00FFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#B46E00FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#009600FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#C80000DC" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#000000B4" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#00AA8CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#006E5AFF" + }, + "menu_bar_close_icon_color": { + "hex": "#C80000FF" + }, + "pip_docking_overlay_color": { + "hex": "#0078FF78" + }, + "pip_docking_overlay_border_color": { + "hex": "#0078FFDC" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#0000008C" + }, + "scroll_grabber_color_hover": { + "hex": "#0078FFC8" + }, + "actions_entry_background_color_action": { + "hex": "#FFFFFFFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#EBEBEBFF" + }, + "actions_entry_background_color_if": { + "hex": "#E6F5FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D2EBFFFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F5E6FFFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#EBD2FFFF" + }, + "actions_entry_background_color_else": { + "hex": "#FFF0DCFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE4C8FF" + }, + "actions_entry_background_color_while": { + "hex": "#E1F5F0FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D0ECE6FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6D6FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFEBBEFF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E6EEFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D2E0FFFF" + }, + "actions_entry_background_color_folder": { + "hex": "#FFE6F0FF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F8D2E2FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#F0F0F0FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E1E1E1FF" + }, + "actions_chain_indicator_color": { + "hex": "#000000B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#0078FFDC" + }, + "actions_chain_indicator_selected_color": { + "hex": "#0078FFF0" + }, + "actions_minimap_background_color": { + "hex": "#FFFFFFE6" + }, + "actions_minimap_border_color": { + "hex": "#000000E6" + }, + "actions_minimap_viewport_color": { + "hex": "#00000028" + }, + "actions_minimap_viewport_border_color": { + "hex": "#0078FF8C" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#0078FFDC" + }, + "bullet_list_dot_color_1": { + "hex": "#0078FFFF" + }, + "bullet_list_dot_color_2": { + "hex": "#8C00FFFF" + }, + "bullet_list_dot_color_3": { + "hex": "#009600FF" + }, + "input_field_suggestions_background_color": { + "hex": "#FFFFFFFF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#000000FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#0078FFFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#3C3C3CFF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#000000FF" + }, + "text_editor_text_color": { + "hex": "#000000FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#C80000FF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#B46E00FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#009600FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#008CA0FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#0078FFFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#8C00FFFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#C80078FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#C80000FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#B46E00FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#967800FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#009600FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#006E78FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#0078FFFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/pumpkin_soup.json b/config/fancymenu/ui_themes/pumpkin_soup.json new file mode 100644 index 0000000..63688d7 --- /dev/null +++ b/config/fancymenu/ui_themes/pumpkin_soup.json @@ -0,0 +1,374 @@ +{ + "identifier": "pumpkin_soup", + "display_name": "fancymenu.ui.themes.pumpkin_soup", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#3C2D240D" + }, + "ui_blur_icon_texture_color": { + "hex": "#3C2D24FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#FAF4ECB9" + }, + "ui_blur_overlay_border_color": { + "hex": "#D2C0AFA0" + }, + "ui_blur_interface_background_tint": { + "hex": "#F9F2EAD7" + }, + "ui_blur_interface_border_color": { + "hex": "#D2C0AFA0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#EEE3D6D7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#FFFAF59B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#F4E8DC96" + }, + "ui_blur_interface_area_border_color": { + "hex": "#CCBAAA96" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#FFD5B096" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#FFFAF59B" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#FFCC9E9B" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#FFE2C6AF" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#FFBE80AF" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#C8B8AA96" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#3C2D24FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#84786EFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#FFFAF596" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#C8B8AA96" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#E67E3CD2" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#3C2D24FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#84786EFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#A09488FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#3C2D24FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#FFF9F2DC" + }, + "ui_icon_button_hover_color": { + "hex": "#3C2D240D" + }, + "ui_icon_texture_color": { + "hex": "#3C2D24FF" + }, + "ui_overlay_background_color": { + "hex": "#F5EEE5FF" + }, + "ui_overlay_border_color": { + "hex": "#D0BEAEFF" + }, + "ui_interface_background_color": { + "hex": "#FBF5EDFF" + }, + "ui_interface_border_color": { + "hex": "#D0BEAEFF" + }, + "ui_interface_title_bar_color": { + "hex": "#ECE1D4FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#FFFBF6FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#F4E9DDFF" + }, + "ui_interface_area_border_color": { + "hex": "#D0BEAEFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#FFD5B0FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#FFFAF5FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#FFCC9EFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#FFE2C6FF" + }, + "ui_interface_widget_border_color": { + "hex": "#C6B6A8FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#382A22FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#887C70FF" + }, + "ui_interface_input_field_background_color": { + "hex": "#FFFAF5FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#C8B8AAFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#E67E3CFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#382A22FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#968A7EFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#A2968AFF" + }, + "ui_interface_generic_text_color": { + "hex": "#382A22FF" + }, + "ui_tooltip_background_color": { + "hex": "#F8F1E9FF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#20996AFF" + }, + "error_color": { + "hex": "#DA4E3AFF" + }, + "warning_color": { + "hex": "#E67E3CFF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#E67E3CFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#DB8C5864" + }, + "layout_editor_grid_color_center": { + "hex": "#C16E4078" + }, + "layout_editor_element_border_color_normal": { + "hex": "#E67E3CFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#F4A460FF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#AA6836FF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#EC9C4EFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#78AA6EFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DA4E3AC8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000060" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#FFFFFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#5CB08CFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#38785EFF" + }, + "menu_bar_close_icon_color": { + "hex": "#E67E3CFF" + }, + "pip_docking_overlay_color": { + "hex": "#E67E3C50" + }, + "pip_docking_overlay_border_color": { + "hex": "#E67E3CC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#BAAA9C8C" + }, + "scroll_grabber_color_hover": { + "hex": "#A09286B4" + }, + "actions_entry_background_color_action": { + "hex": "#EFE8E0FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#E4DBD1FF" + }, + "actions_entry_background_color_if": { + "hex": "#E7F2FFFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#D6E8FAFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#F4E9FAFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#E8D9F3FF" + }, + "actions_entry_background_color_else": { + "hex": "#FFEFDDFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#FFE2C6FF" + }, + "actions_entry_background_color_while": { + "hex": "#E3F5EFFF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#D2EEE5FF" + }, + "actions_entry_background_color_delay": { + "hex": "#FFF6D6FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#FFEBBEFF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#E6EEFFFF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#D2E0FFFF" + }, + "actions_entry_background_color_folder": { + "hex": "#FAE5DCFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#F3D4C8FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#F2ECE6FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#E6DED6FF" + }, + "actions_chain_indicator_color": { + "hex": "#AE846AA0" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#E67E3CD2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#EC9C4EDC" + }, + "actions_minimap_background_color": { + "hex": "#FAF4ECE1" + }, + "actions_minimap_border_color": { + "hex": "#C6B8AADC" + }, + "actions_minimap_viewport_color": { + "hex": "#0000001C" + }, + "actions_minimap_viewport_border_color": { + "hex": "#987E6E78" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#E67E3CDC" + }, + "bullet_list_dot_color_1": { + "hex": "#E67E3CFF" + }, + "bullet_list_dot_color_2": { + "hex": "#C07652FF" + }, + "bullet_list_dot_color_3": { + "hex": "#96AA72FF" + }, + "input_field_suggestions_background_color": { + "hex": "#FAF4ECFF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#382A22FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#D0682EFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#9C9186FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#786E64FF" + }, + "text_editor_text_color": { + "hex": "#382A22FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#DA4E3AFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#E67E3CFF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#76A65CFF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#369C86FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#4A84D2FF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#A066D2FF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#CA5C96FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#DA4E3AFF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E67E3CFF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#D6AC56FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#58AA76FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#3E828CFF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#E67E3CFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/purple_void.json b/config/fancymenu/ui_themes/purple_void.json new file mode 100644 index 0000000..9165a3c --- /dev/null +++ b/config/fancymenu/ui_themes/purple_void.json @@ -0,0 +1,374 @@ +{ + "identifier": "purple_void", + "display_name": "fancymenu.ui.themes.purple_void", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#D2B4FF10" + }, + "ui_blur_icon_texture_color": { + "hex": "#EBEBEEFF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#0C0C0EBE" + }, + "ui_blur_overlay_border_color": { + "hex": "#34343CAA" + }, + "ui_blur_interface_background_tint": { + "hex": "#0A0A0CDC" + }, + "ui_blur_interface_border_color": { + "hex": "#34343CAA" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#101012DC" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#0E0E10AA" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#0A0A0C9B" + }, + "ui_blur_interface_area_border_color": { + "hex": "#3A3A40A0" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#3C205C96" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#101012A0" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#16161AA0" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#3C1E60B4" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#A85CF0B4" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#3A3A40AA" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#91919AFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#101012A0" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#3A3A40A0" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#AA60FFD2" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#91919AFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#787882FF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#EBEBEEFF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#0C0C0EDC" + }, + "ui_icon_button_hover_color": { + "hex": "#D2B4FF10" + }, + "ui_icon_texture_color": { + "hex": "#EBEBEEFF" + }, + "ui_overlay_background_color": { + "hex": "#0C0C0EFF" + }, + "ui_overlay_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_background_color": { + "hex": "#0A0A0CFF" + }, + "ui_interface_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_title_bar_color": { + "hex": "#101012FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#0E0E10FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#0A0A0CFF" + }, + "ui_interface_area_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#2E1846FF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#101012FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#16161AFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#3C1E60FF" + }, + "ui_interface_widget_border_color": { + "hex": "#34343CFF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#91919AFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#0E0E10FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#34343CFF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#AA60FFFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#EBEBEEFF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#91919AFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#787882FF" + }, + "ui_interface_generic_text_color": { + "hex": "#EBEBEEFF" + }, + "ui_tooltip_background_color": { + "hex": "#101012FF" + }, + "info_color": { + "hex": "#AA60FFFF" + }, + "success_color": { + "hex": "#5CC678FF" + }, + "error_color": { + "hex": "#EC4E60FF" + }, + "warning_color": { + "hex": "#ECA84AFF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#AA60FFFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#8652CC78" + }, + "layout_editor_grid_color_center": { + "hex": "#AA60FF8C" + }, + "layout_editor_element_border_color_normal": { + "hex": "#A058F8FF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#C884FFFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#BA6AFFFF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#ECA84AFF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#60D2AAFF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#EC4E60C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#0000008C" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#EBDEFFFF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#60D2AAFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#2E765CFF" + }, + "menu_bar_close_icon_color": { + "hex": "#EC6276FF" + }, + "pip_docking_overlay_color": { + "hex": "#A058F85A" + }, + "pip_docking_overlay_border_color": { + "hex": "#A058F8C8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#54545C8C" + }, + "scroll_grabber_color_hover": { + "hex": "#845CBABE" + }, + "actions_entry_background_color_action": { + "hex": "#141418FF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_if": { + "hex": "#141418FF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_else_if": { + "hex": "#141418FF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_else": { + "hex": "#141418FF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_while": { + "hex": "#141418FF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_delay": { + "hex": "#141418FF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#141418FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_folder": { + "hex": "#141418FF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#1C1C20FF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#141418FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#1C1C20FF" + }, + "actions_chain_indicator_color": { + "hex": "#7E62A2B4" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#AA60FFD2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#C884FFDC" + }, + "actions_minimap_background_color": { + "hex": "#0A0A0CD2" + }, + "actions_minimap_border_color": { + "hex": "#3C3C44DC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF20" + }, + "actions_minimap_viewport_border_color": { + "hex": "#BEBEC878" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#AA60FFDC" + }, + "bullet_list_dot_color_1": { + "hex": "#AA60FFFF" + }, + "bullet_list_dot_color_2": { + "hex": "#8456C4FF" + }, + "bullet_list_dot_color_3": { + "hex": "#60D2AAFF" + }, + "input_field_suggestions_background_color": { + "hex": "#121214FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#EBEBEEFF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#AA60FFFF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#606068FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#888892FF" + }, + "text_editor_text_color": { + "hex": "#DADAE0FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#C884FFFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#ECA84AFF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#7ED6A6FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#70BAE0FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#868CE8FF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#B478E8FF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#DC78C8FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#EC4E60FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#ECA84AFF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#EECC60FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#78DCA0FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#70AAD2FF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#C884FFFF" + } +} \ No newline at end of file diff --git a/config/fancymenu/ui_themes/spooky_season.json b/config/fancymenu/ui_themes/spooky_season.json new file mode 100644 index 0000000..b5ded92 --- /dev/null +++ b/config/fancymenu/ui_themes/spooky_season.json @@ -0,0 +1,374 @@ +{ + "identifier": "spooky_season", + "display_name": "fancymenu.ui.themes.spooky_season", + "allow_blur": true, + "allow_animations": true, + "interface_corner_rounding_radius": 6.0, + "widget_corner_rounding_radius": 6.0, + "ui_blur_icon_button_hover_color": { + "hex": "#F2E7D90D" + }, + "ui_blur_icon_texture_color": { + "hex": "#F2E7D9FF" + }, + "ui_blur_overlay_background_tint": { + "hex": "#100D14B9" + }, + "ui_blur_overlay_border_color": { + "hex": "#4E4656A0" + }, + "ui_blur_interface_background_tint": { + "hex": "#120F17D7" + }, + "ui_blur_interface_border_color": { + "hex": "#4E4656A0" + }, + "ui_blur_interface_title_bar_tint": { + "hex": "#1E1822D7" + }, + "ui_blur_interface_area_background_color_type_1": { + "hex": "#1B161F9B" + }, + "ui_blur_interface_area_background_color_type_2": { + "hex": "#130F1796" + }, + "ui_blur_interface_area_border_color": { + "hex": "#564D6296" + }, + "ui_blur_interface_area_entry_selected_color": { + "hex": "#3F2D5096" + }, + "ui_blur_interface_widget_background_color_normal_type_1": { + "hex": "#1F192496" + }, + "ui_blur_interface_widget_background_color_normal_type_2": { + "hex": "#753F1996" + }, + "ui_blur_interface_widget_background_color_hover_type_1": { + "hex": "#322337AA" + }, + "ui_blur_interface_widget_background_color_hover_type_2": { + "hex": "#915222AA" + }, + "ui_blur_interface_widget_border_color": { + "hex": "#564D6296" + }, + "ui_blur_interface_widget_label_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_blur_interface_widget_label_color_inactive": { + "hex": "#968F9DFF" + }, + "ui_blur_interface_input_field_background_color": { + "hex": "#1B161F96" + }, + "ui_blur_interface_input_field_border_color_normal": { + "hex": "#564D6296" + }, + "ui_blur_interface_input_field_border_color_focused": { + "hex": "#D4782BC8" + }, + "ui_blur_interface_input_field_text_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_blur_interface_input_field_text_color_uneditable": { + "hex": "#968F9DFF" + }, + "ui_blur_interface_input_field_suggestion_text_color": { + "hex": "#857C8DFF" + }, + "ui_blur_interface_generic_text_color": { + "hex": "#F2E7D9FF" + }, + "ui_blur_tooltip_background_tint": { + "hex": "#141019DC" + }, + "ui_icon_button_hover_color": { + "hex": "#F2E7D90D" + }, + "ui_icon_texture_color": { + "hex": "#F2E7D9FF" + }, + "ui_overlay_background_color": { + "hex": "#17131CFF" + }, + "ui_overlay_border_color": { + "hex": "#484152FF" + }, + "ui_interface_background_color": { + "hex": "#15111AFF" + }, + "ui_interface_border_color": { + "hex": "#484152FF" + }, + "ui_interface_title_bar_color": { + "hex": "#221B26FF" + }, + "ui_interface_area_background_color_type_1": { + "hex": "#1C1721FF" + }, + "ui_interface_area_background_color_type_2": { + "hex": "#141019FF" + }, + "ui_interface_area_border_color": { + "hex": "#484152FF" + }, + "ui_interface_area_entry_selected_color": { + "hex": "#3A284AFF" + }, + "ui_interface_widget_background_color_normal_type_1": { + "hex": "#1E1823FF" + }, + "ui_interface_widget_background_color_normal_type_2": { + "hex": "#7A421BFF" + }, + "ui_interface_widget_background_color_hover_type_1": { + "hex": "#2E2134FF" + }, + "ui_interface_widget_border_color": { + "hex": "#484152FF" + }, + "ui_interface_widget_label_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_interface_widget_label_color_inactive": { + "hex": "#968F9DFF" + }, + "ui_interface_input_field_background_color": { + "hex": "#1C1721FF" + }, + "ui_interface_input_field_border_color_normal": { + "hex": "#484152FF" + }, + "ui_interface_input_field_border_color_focused": { + "hex": "#D4782BFF" + }, + "ui_interface_input_field_text_color_normal": { + "hex": "#F2E7D9FF" + }, + "ui_interface_input_field_text_color_uneditable": { + "hex": "#968F9DFF" + }, + "ui_interface_input_field_suggestion_text_color": { + "hex": "#857C8DFF" + }, + "ui_interface_generic_text_color": { + "hex": "#F2E7D9FF" + }, + "ui_tooltip_background_color": { + "hex": "#18131DFF" + }, + "info_color": { + "hex": "#0381FFFF" + }, + "success_color": { + "hex": "#69BA5DFF" + }, + "error_color": { + "hex": "#DC5048FF" + }, + "warning_color": { + "hex": "#E88E38FF" + }, + "layout_editor_mouse_selection_rectangle_color": { + "hex": "#D86C2BFF" + }, + "layout_editor_grid_color_normal": { + "hex": "#9658B46E" + }, + "layout_editor_grid_color_center": { + "hex": "#D86C2B82" + }, + "layout_editor_element_border_color_normal": { + "hex": "#D86C2BFF" + }, + "layout_editor_element_border_color_selected": { + "hex": "#F2984AFF" + }, + "layout_editor_element_border_rotation_controls_color": { + "hex": "#9C58D1FF" + }, + "layout_editor_element_border_vertical_tilting_controls_color": { + "hex": "#E88E38FF" + }, + "layout_editor_element_border_horizontal_tilting_controls_color": { + "hex": "#7EBA56FF" + }, + "layout_editor_element_dragging_not_allowed_color": { + "hex": "#DC5048C8" + }, + "layout_editor_element_border_display_line_background_color": { + "hex": "#00000080" + }, + "layout_editor_element_border_display_line_text_color": { + "hex": "#F2E7D9FF" + }, + "layout_editor_anchor_point_overlay_color_base": { + "hex": "#46A88DFF" + }, + "layout_editor_anchor_point_overlay_color_border": { + "hex": "#246052FF" + }, + "menu_bar_close_icon_color": { + "hex": "#E8764AFF" + }, + "pip_docking_overlay_color": { + "hex": "#D86C2B50" + }, + "pip_docking_overlay_border_color": { + "hex": "#D86C2BC8" + }, + "pip_input_blocked_overlay_color": { + "hex": "#FFFFFF3C" + }, + "scroll_grabber_color_normal": { + "hex": "#5A53628C" + }, + "scroll_grabber_color_hover": { + "hex": "#786F81BE" + }, + "actions_entry_background_color_action": { + "hex": "#261F2CFF" + }, + "actions_entry_background_color_action_hover": { + "hex": "#30273AFF" + }, + "actions_entry_background_color_if": { + "hex": "#21293AFF" + }, + "actions_entry_background_color_if_hover": { + "hex": "#28344BFF" + }, + "actions_entry_background_color_else_if": { + "hex": "#2A213AFF" + }, + "actions_entry_background_color_else_if_hover": { + "hex": "#362B4CFF" + }, + "actions_entry_background_color_else": { + "hex": "#38281CFF" + }, + "actions_entry_background_color_else_hover": { + "hex": "#463424FF" + }, + "actions_entry_background_color_while": { + "hex": "#1C312DFF" + }, + "actions_entry_background_color_while_hover": { + "hex": "#243E38FF" + }, + "actions_entry_background_color_delay": { + "hex": "#3C341AFF" + }, + "actions_entry_background_color_delay_hover": { + "hex": "#4B4020FF" + }, + "actions_entry_background_color_execute_later": { + "hex": "#232D42FF" + }, + "actions_entry_background_color_execute_later_hover": { + "hex": "#2D3A54FF" + }, + "actions_entry_background_color_folder": { + "hex": "#37232DFF" + }, + "actions_entry_background_color_folder_hover": { + "hex": "#462E3AFF" + }, + "actions_entry_background_color_generic_block": { + "hex": "#241F28FF" + }, + "actions_entry_background_color_generic_block_hover": { + "hex": "#2E2834FF" + }, + "actions_chain_indicator_color": { + "hex": "#89709EAA" + }, + "actions_chain_indicator_hovered_color": { + "hex": "#E88E38D2" + }, + "actions_chain_indicator_selected_color": { + "hex": "#D4782BDC" + }, + "actions_minimap_background_color": { + "hex": "#141019D2" + }, + "actions_minimap_border_color": { + "hex": "#5C5568DC" + }, + "actions_minimap_viewport_color": { + "hex": "#FFFFFF20" + }, + "actions_minimap_viewport_border_color": { + "hex": "#BEAAC86E" + }, + "actions_minimap_tooltip_border_color": { + "hex": "#E88E38DC" + }, + "bullet_list_dot_color_1": { + "hex": "#E88E38FF" + }, + "bullet_list_dot_color_2": { + "hex": "#AA6CCAFF" + }, + "bullet_list_dot_color_3": { + "hex": "#8CBA78FF" + }, + "input_field_suggestions_background_color": { + "hex": "#1E1924FF" + }, + "input_field_suggestions_text_color_normal": { + "hex": "#F2E7D9FF" + }, + "input_field_suggestions_text_color_selected": { + "hex": "#E88E38FF" + }, + "text_editor_line_number_text_color_normal": { + "hex": "#7A7283FF" + }, + "text_editor_line_number_text_color_selected": { + "hex": "#9C92A5FF" + }, + "text_editor_text_color": { + "hex": "#D8CEC1FF" + }, + "text_editor_text_formatting_nested_text_color_1": { + "hex": "#E8764AFF" + }, + "text_editor_text_formatting_nested_text_color_2": { + "hex": "#ECA058FF" + }, + "text_editor_text_formatting_nested_text_color_3": { + "hex": "#84C660FF" + }, + "text_editor_text_formatting_nested_text_color_4": { + "hex": "#5EBEA8FF" + }, + "text_editor_text_formatting_nested_text_color_5": { + "hex": "#6E9CECFF" + }, + "text_editor_text_formatting_nested_text_color_6": { + "hex": "#AA76ECFF" + }, + "text_editor_text_formatting_nested_text_color_7": { + "hex": "#D674B0FF" + }, + "text_editor_text_formatting_nested_text_color_8": { + "hex": "#DC5048FF" + }, + "text_editor_text_formatting_nested_text_color_9": { + "hex": "#E88E38FF" + }, + "text_editor_text_formatting_nested_text_color_10": { + "hex": "#F2C058FF" + }, + "text_editor_text_formatting_nested_text_color_11": { + "hex": "#6ACA84FF" + }, + "text_editor_text_formatting_nested_text_color_12": { + "hex": "#5EA0AAFF" + }, + "text_editor_text_formatting_brackets_color": { + "hex": "#E88E38FF" + } +} \ No newline at end of file diff --git a/config/fancymenu/user_variables.db b/config/fancymenu/user_variables.db new file mode 100644 index 0000000..5a17081 --- /dev/null +++ b/config/fancymenu/user_variables.db @@ -0,0 +1,62 @@ +type = user_variables + +variable { + name = is_first_time + value = false + reset_on_launch = false +} + +variable { + name = is_first_page + value = false + reset_on_launch = false +} + +variable { + name = is_replay_mode + value = flashback + reset_on_launch = false +} + +variable { + name = is_flashback_recording + value = false + reset_on_launch = false +} + +variable { + name = is_last_page + value = false + reset_on_launch = false +} + +variable { + name = is_main_server + value = false + reset_on_launch = false +} + +variable { + name = intro_pages + value = 1 + reset_on_launch = false +} + +variable { + name = replay_mode + value = false + reset_on_launch = false +} + +variable { + name = is_server_loading + value = true + reset_on_launch = false +} + +variable { + name = current_server + value = bte-asean + reset_on_launch = false +} + diff --git a/config/flashback/flashback.json b/config/flashback/flashback.json new file mode 100644 index 0000000..46479f4 --- /dev/null +++ b/config/flashback/flashback.json @@ -0,0 +1,131 @@ +{ + "configVersion": 2, + "keybinds": { + "pause": "p", + "copy": "ctrl+c", + "paste": "ctrl+v", + "undo": "ctrl+z", + "redo": "ctrl+y", + "mark_in": "i", + "mark_out": "o", + "clear_in": "ctrl+i", + "clear_out": "ctrl+o", + "zoom_in": "equal", + "zoom_out": "minus", + "add_camera": "none", + "timeline_zoom_scroll": "scroll", + "timeline_move_scroll": "ctrl+scroll", + "roll_cw": "none", + "roll_ccw": "none" + }, + "recordingControls": { + "controlsLocation": "RIGHT", + "automaticallyStart": false, + "automaticallyFinish": true, + "showRecordingToasts": true, + "quicksave": false + }, + "recording": { + "markDimensionChanges": true, + "recordHotbar": false, + "localPlayerUpdatesPerSecond": 20, + "recordVoiceChat": false, + "recordBobbyIntoReplay": false + }, + "exporting": { + "defaultExportFilename": "%date%T%time%", + "exportRenderDummyFrames": 0 + }, + "keyframes": { + "defaultInterpolationType": "SMOOTH", + "useRealtimeInterpolation": true + }, + "editorMovement": { + "flightDirection": "HORIZONTAL", + "flightMomentum": 1.0, + "flightLockX": false, + "flightLockY": false, + "flightLockZ": false, + "flightLockYaw": false, + "flightLockPitch": false + }, + "marker": { + "markerOptions1": { + "color": "RED", + "customRGB": "#FF0000", + "savePosition": true, + "description": "" + }, + "markerOptions2": { + "color": "RED", + "customRGB": "#FF0000", + "savePosition": true, + "description": "" + }, + "markerOptions3": { + "color": "RED", + "customRGB": "#FF0000", + "savePosition": true, + "description": "" + }, + "markerOptions4": { + "color": "RED", + "customRGB": "#FF0000", + "savePosition": true, + "description": "" + } + }, + "overlay": { + "rtcOverlay": false + }, + "advanced": { + "disableIncreasedFirstPersonUpdates": false, + "disableThirdPersonCancel": false, + "synchronizeTicking": false, + "ignoredCustomPayloads": "" + }, + "internal": { + "recentReplays": [ + "C:\\Users\\realm\\AppData\\Roaming\\PrismLauncher\\instances\\BTE 26.2 [1.2.2]\\minecraft\\flashback\\replays\\2026-07-29T03_50_55.zip", + "C:\\Users\\realm\\AppData\\Roaming\\PrismLauncher\\instances\\BTE 26 [1.2.1]\\minecraft\\flashback\\replays\\2026-06-30T09_31_16.zip", + "C:\\Users\\HYPE R Series\\AppData\\Roaming\\PrismLauncher\\instances\\BTE ASEAN-26_1.2.0\\minecraft\\flashback\\replays\\2026-06-26T23_17.zip", + "C:\\Users\\HYPE R Series\\AppData\\Roaming\\PrismLauncher\\instances\\BTE ASEAN-26_1.2.0\\minecraft\\flashback\\replays\\2026-06-26T12_47_40.zip" + ], + "openedWindows": [], + "nextUnsupportedModLoaderWarning": 0, + "filterUnnecessaryPackets": true, + "signedRenderFilter": false, + "viewedTipsOfTheDay": 7, + "showTipOfTheDay": true, + "nextTipOfTheDay": 1785389842414, + "replaySorting": "CREATED_DATE", + "sortDescending": true, + "defaultOverrideFov": 70.0, + "enableOverrideFovByDefault": false + }, + "internalExport": { + "resolution": [ + 1920, + 1080 + ], + "framerate": [ + 60.0 + ], + "projection": "PERSPECTIVE", + "orthographicZoom": [ + 1.0 + ], + "resetRng": false, + "ssaa": false, + "noGui": false, + "selectedVideoEncoder": [ + 0 + ], + "useMaximumBitrate": false, + "recordAudio": false, + "transparentBackground": false, + "audioCodec": "AAC", + "stereoAudio": false + }, + "forceDefaultExportSettings": {} +} \ No newline at end of file diff --git a/overrides/config/modmenu.json b/config/modmenu.json similarity index 100% rename from overrides/config/modmenu.json rename to config/modmenu.json diff --git a/config/replaymod.json b/config/replaymod.json new file mode 100644 index 0000000..2748da7 --- /dev/null +++ b/config/replaymod.json @@ -0,0 +1,66 @@ +{ + "core": { + "notifications": true + }, + "advanced": { + "recordingPath": "./replay_recordings/", + "cachePath": "./.replay_cache/", + "renderPath": "./replay_videos/", + "skipPostRenderGui": false, + "askForOpenEye": true, + "skipPostScreenshotGui": false, + "fullBrightness": "replaymod.gui.settings.fullbrightness.gamma", + "fullBrightness_valid_values": [ + "replaymod.gui.settings.fullbrightness.gamma", + "replaymod.gui.settings.fullbrightness.nightvision", + "replaymod.gui.settings.fullbrightness.both" + ] + }, + "recording": { + "recordSingleplayer": false, + "recordServer": false, + "indicator": true, + "autoStartRecording": true, + "autoPostProcess": true, + "renameDialog": true + }, + "replay": { + "showChat": true, + "showServerIPs": true, + "camera": "replaymod.camera.classic", + "camera_valid_values": [ + "replaymod.camera.classic", + "replaymod.camera.vanilla" + ], + "legacyMainMenuButton": false, + "mainMenuButton": "BIG", + "mainMenuButton_valid_values": [ + "BIG", + "DEFAULT", + "TOP_LEFT", + "TOP_RIGHT", + "LEFT_OF_SINGLEPLAYER", + "RIGHT_OF_SINGLEPLAYER", + "LEFT_OF_MULTIPLAYER", + "RIGHT_OF_MULTIPLAYER", + "LEFT_OF_REALMS", + "RIGHT_OF_REALMS", + "LEFT_OF_MODS", + "RIGHT_OF_MODS" + ] + }, + "render": { + "frameTimeFromWorldTime": false + }, + "simplepathing": { + "pathpreview": true, + "autosync": true, + "timelineLength": 1800, + "interpolator": "replaymod.gui.editkeyframe.interpolator.catmullrom.name", + "interpolator_valid_values": [ + "replaymod.gui.editkeyframe.interpolator.catmullrom.name", + "replaymod.gui.editkeyframe.interpolator.cubic.name", + "replaymod.gui.editkeyframe.interpolator.linear.name" + ] + } +} \ No newline at end of file diff --git a/modrinth.index.json b/modrinth.index.json deleted file mode 100644 index c14fe11..0000000 --- a/modrinth.index.json +++ /dev/null @@ -1,643 +0,0 @@ -{ - "game": "minecraft", - "formatVersion": 1, - "versionId": "0.1.5", - "name": "BuildTheEarth Official Modpack", - "summary": "", - "files": [ - { - "path": "mods/fancymenu_fabric_3.8.4_MC_1.21.11.jar", - "hashes": { - "sha512": "bfadc5323c40f8bb327d92ebbbb7c89e99943b0f1c5b63130d58d6931925ad33caca7c49e9314e5273f79f5778e484bd097661aa7811081a9b05bc838be2f9f2", - "sha1": "f29eae539ec5f6b43666fba2a69b49e2ef9360fe" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/Wq5SjeWM/versions/rbcf4ifM/fancymenu_fabric_3.8.4_MC_1.21.11.jar" - ], - "fileSize": 4490883 - }, - { - "path": "mods/Searchables-fabric-1.21.11-1.0.4.jar", - "hashes": { - "sha1": "32d0edf6f65aa9d7b33312a14cd5125aad189850", - "sha512": "e9b3d4d1fe7297d4476db1c9f909c209da360c46e7a5a0fef691e43d8fe6a2ba28fdb9e5afc393289785f0ed392252c98896b231901f29e31d01d430a3b55a07" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/fuuu3xnx/versions/8t7XWQgt/Searchables-fabric-1.21.11-1.0.4.jar" - ], - "fileSize": 79919 - }, - { - "path": "mods/lithium-fabric-0.21.4+mc1.21.11.jar", - "hashes": { - "sha1": "203bdcb26e97b3217b045e1182651a7d7b6462ec", - "sha512": "f14a5c3d2fad786347ca25083f902139694f618b7c103947f2fd067a7c5ee88a63e1ef8926f7d693ea79ed7d00f57317bae77ef9c2d630bf5ed01ac97a752b94" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/gvQqBUqZ/versions/Ow7wA0kG/lithium-fabric-0.21.4%2Bmc1.21.11.jar" - ], - "fileSize": 900462 - }, - { - "path": "mods/drippyloadingscreen_fabric_3.1.1_MC_1.21.11.jar", - "hashes": { - "sha1": "cb1e85b6184b9fe1fc77022bd0f5798af8841bac", - "sha512": "33c86d74a84836a3dffc980b10a2c63c0567ffa344167b6387e9346550ecd0fdde5dba69a45fc7a7b6993222a4ad9542c220623daf0e24a9e774fa0a42dbcd5f" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/v3CYg2V9/versions/93oCkXyU/drippyloadingscreen_fabric_3.1.1_MC_1.21.11.jar" - ], - "fileSize": 281928 - }, - { - "path": "mods/worldedit-mod-7.4.2.jar", - "hashes": { - "sha1": "2f5c35ab2d0dffa1be99ed6016132596949e59b3", - "sha512": "79f206c283421e68972e7df2b7f4c393506ff450ea5e58b8f6baafd762092eef07015edcdced6a4f536904ac048d69b2a86fa2fbf74e9d159cef9d2372042a2a" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/1u6JkXh5/versions/oY3E2pzA/worldedit-mod-7.4.2.jar" - ], - "fileSize": 6970159 - }, - { - "path": "mods/packetfixer-fabric-3.3.5-1.21.11.jar", - "hashes": { - "sha512": "c58d22675b4d31d05c12852b4546590cb1291515f7d4f63f5c81248419f307bdcfe4e99e7511edf6b802a62930af591da29996f6058e46ff7058d6c47b5a3cb2", - "sha1": "087cd5f23680cacaa5841528fca815c8dbfe5999" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/c7m1mi73/versions/XsMMpmvW/packetfixer-fabric-3.3.5-1.21.11.jar" - ], - "fileSize": 31237 - }, - { - "path": "shaderpacks/Bliss_v2.1.2_(Chocapic13_Shaders_edit).zip", - "hashes": { - "sha1": "ded6c8a98305f8aff90ef781e7585b33b8452cfd", - "sha512": "dafc60be4980ec40f40edc0f2625cb0976f3c9ce5ed86383146a120480826bb1de70ef5e38b7f1437294ed4d38c6ef3c82ebef0ae4e00b8cee165788c9c18280" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/ZvMtQlho/versions/kC2Y8q1P/Bliss_v2.1.2_%28Chocapic13_Shaders_edit%29.zip" - ], - "fileSize": 1791406 - }, - { - "path": "mods/entityculling-fabric-1.10.1-mc1.21.11.jar", - "hashes": { - "sha1": "4e595b6162d24c3d8d65bc6417cf79daac5bde0d", - "sha512": "93fac75432afb97f286827190b3e0363775e013946e22bc62cd86b1d0e0c10c1e7dbd520ca22a9445acb1f50afca38c12d41a4f9a4d3685218287bb7cad237b8" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/NNAgCjsB/versions/WORDhU8n/entityculling-fabric-1.10.1-mc1.21.11.jar" - ], - "fileSize": 1585638 - }, - { - "path": "mods/Controlling-fabric-1.21.11-29.0.1.jar", - "hashes": { - "sha512": "fae3f7be237b901783b873ecc3167e04fdc24819f16539610565993b7916691058b8d6e1aba4c13c0c75503bbd07a8ec4d2d6ce2bf5f94433fdee58933b049d9", - "sha1": "afbbbb9248d9afe6224886c62ee1b35732f056f3" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/xv94TkTM/versions/A6W4m3vi/Controlling-fabric-1.21.11-29.0.1.jar" - ], - "fileSize": 83259 - }, - { - "path": "mods/DistantHorizons-3.0.2-b-1.21.11-fabric-neoforge.jar", - "hashes": { - "sha1": "4958f6778131666c51de47272761e88da597cdb4", - "sha512": "d29c5835b312a6ccb892b4db80c2b8c9ec84f161d1ebc4bcdbf3000fa4bcf1bb92429554a725ad863cd1d42c055ccfaae533b49c4787234a4b5669fc7cf1bb19" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/uCdwusMi/versions/mVAIpNz9/DistantHorizons-3.0.2-b-1.21.11-fabric-neoforge.jar" - ], - "fileSize": 30090481 - }, - { - "path": "mods/chatanimation-fabric-1.21.11-1.1.3.jar", - "hashes": { - "sha512": "0336058e59f6ec9ff82164875afc5b30697b1d9c353584ec372c218477d70ff583d48d288dd8013342be6ca744311936ae9aa3be24a6c3ed6f36e1c1a908abb3", - "sha1": "b6ef489a24c2a8cb3db90e8b8d924d17c8b45c9f" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/DnNYdJsx/versions/MdhlSl4K/chatanimation-fabric-1.21.11-1.1.3.jar" - ], - "fileSize": 380840 - }, - { - "path": "resourcepacks/Unique Dark - Lite - 1.20.2-26.x.zip", - "hashes": { - "sha1": "ea20c4662f17c796d5bdbcf48e39d10e955ce7f5", - "sha512": "4e8910c5c740d49c36eaf04e8370db8d5fea072f26b0868d456d3992505c5fa151875df69dde5d290952c7b81cab86f934c80af4f8db6224955b45e116bc4dd9" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/BaY1UdGV/versions/qtGTeyjF/Unique%20Dark%20-%20Lite%20-%201.20.2-26.x.zip" - ], - "fileSize": 9470319 - }, - { - "path": "mods/konkrete_fabric_1.9.18_MC_1.21.11.jar", - "hashes": { - "sha1": "734866bdeed1af0b1fa23b131bd841648af96f69", - "sha512": "44d787e88d9e3991df90d8926b93620b7e347a5f30c27bd6bfa58016f38d3e549f2eafe7c66d9654f22c5d5fdc32ad977aec3be7d488efb766f6ce1b89f1f2fd" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/J81TRJWm/versions/6ypTGwlP/konkrete_fabric_1.9.18_MC_1.21.11.jar" - ], - "fileSize": 771623 - }, - { - "path": "mods/cloth-config-21.11.153-fabric.jar", - "hashes": { - "sha512": "8f455489d4b71069e998568cf4e1450116f4360a4eb481cd89117f629c6883164886cf63ca08ac4fc929dd13d1112152755a6216d4a1498ee6406ef102093e51", - "sha1": "4c224606a963bce223db5b27edb4959ecf40d4ee" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/9s6osm5g/versions/xuX40TN5/cloth-config-21.11.153-fabric.jar" - ], - "fileSize": 1148427 - }, - { - "path": "mods/skinlayers3d-fabric-1.11.1-mc1.21.11.jar", - "hashes": { - "sha512": "d3d4d20a19c695a6935a5bd6fb6c159bf2ace2c4e4501b8a81096aa75bfab00372af4a4d5ffb18490b53ade1cc128e53f3181e06bf465c878dad09b291dbad33", - "sha1": "a95c49c23db05d98d88e6a225894ca93e4e86b3c" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/zV5r3pPn/versions/ntxaPFv3/skinlayers3d-fabric-1.11.1-mc1.21.11.jar" - ], - "fileSize": 1971642 - }, - { - "path": "resourcepacks/LowOnFire v26.1§8.zip", - "hashes": { - "sha512": "713a20a8171c8249c30d9eb72342162754c627c7a86dc0971cb555faf43c322c181fd5546e0c770fc9ae922161ee846a7af951267c1d9a8a75af466a17e19d5e", - "sha1": "96932a034fff4cd0cad08ba12db730450c4772da" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/RRxvWKNC/versions/51HGHxtv/LowOnFire%20v26.1%C2%A78.zip" - ], - "fileSize": 42760 - }, - { - "path": "mods/sodium-extra-fabric-0.8.3+mc1.21.11.jar", - "hashes": { - "sha512": "b268a22ec7d27a45142f839ecf9a902c4ead4a5ef01e480f9e042f700a75a12a0db6346914f5445be68136b849a068de88d54823444c5d13268cfc0661854465", - "sha1": "e8fd1eae0d589393189f64062ca1e46fc03f4ced" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/PtjYWJkn/versions/yqY1efrC/sodium-extra-fabric-0.8.3%2Bmc1.21.11.jar" - ], - "fileSize": 394219 - }, - { - "path": "mods/morechathistory-1.3.1.jar", - "hashes": { - "sha512": "31831973dafb0cd4e1ead267b0143aa9ce803d8ebf8fec1dfad884c62ad52cf94da0349b2b0b72d9c0c9a7fb83af75180d85e7ea8a44c459d4d5e960b4e3ea06", - "sha1": "b4337ef9dc0a6cdf31d8f3df68a6542f64f3625e" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/8qkXwOnk/versions/3siYJiWG/morechathistory-1.3.1.jar" - ], - "fileSize": 3573 - }, - { - "path": "mods/sodium-fabric-0.8.7+mc1.21.11.jar", - "hashes": { - "sha512": "d7f035d6112eaac92cf0f11e4426db631fca5a7115dd355c2126efee4255b648a0102552bbf7b22a7eae9203d08f8740435842bfddcd94e2434f51b57ee9c641", - "sha1": "e8865210ba9a926fc206ab9e73f9d4988a81ff69" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/AANobbMI/versions/UddlN6L4/sodium-fabric-0.8.7%2Bmc1.21.11.jar" - ], - "fileSize": 1870358 - }, - { - "path": "mods/placeholder-api-2.8.2+1.21.10.jar", - "hashes": { - "sha1": "bbdc920ecff993148cd6e81a208536132245ce40", - "sha512": "507ab10b7938dcd14d33121b8462649bdbe575cef248e917dfdf7566078ab5d0195ca1add95eae4863de3f652eb56db0a8669a67d5b5344e094d086f9dab5a08" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/eXts2L7r/versions/qxjzQ9xY/placeholder-api-2.8.2%2B1.21.10.jar" - ], - "fileSize": 268662 - }, - { - "path": "shaderpacks/BSL_v10.1.3.zip", - "hashes": { - "sha1": "c2459c82c23dc7442eaf1976dade30c2c2f18a9f", - "sha512": "3e68c8038e38b0860cf1258e5fc84bcd98007a70fb7ba49e306186be6e905187527b630b77cb9e8cc8ee80865606c0fb398c419a22f0076b2ed5c7d73748a9ba" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/Q1vvjJYV/versions/hIibTfxn/BSL_v10.1.3.zip" - ], - "fileSize": 1127026 - }, - { - "path": "mods/openminemap-1.7.2-1.21.11.jar", - "hashes": { - "sha512": "1abcbc937acf4ee275584389ea77862b3a0aba280458add89c0d8a7cd62be75bbae9f294cc895c3044faaedb08bddf7ffbfb21dd65b61b33828410be10f08a81", - "sha1": "980b5dddede639947ee4c3ef1b6e2b5120f0f6f9" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/6FKoua9Z/versions/GIgBE9Q1/openminemap-1.7.2-1.21.11.jar" - ], - "fileSize": 960220 - }, - { - "path": "mods/ViaBackwards-5.9.1-SNAPSHOT.jar", - "hashes": { - "sha512": "a4bfce7cff62c0989091f41b93b38fb69d388d3aa6c585874c2ba9b04c753307080ebefe6742cd0e18cbc25a8c520b405633a408fe002dd6aaaec996eb9051e1", - "sha1": "80dd3cf8da500dc40f1037ca462a7ae74d86f5f2" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/NpvuJQoq/versions/f25Max2h/ViaBackwards-5.9.1-SNAPSHOT.jar" - ], - "fileSize": 1404846 - }, - { - "path": "shaderpacks/ComplementaryReimagined_r5.7.1.zip", - "hashes": { - "sha512": "840149dd8aff5d5d06d0d5a4ea83d4ea7f72eab3cb2b02de513c1f3eaa6e4627f68d9c0915b86fa37edad73cafd4648f156f373da52810cd34c67d797e0f6aef", - "sha1": "b560f646a124d5204b1fb7321fec373b9c346fa5" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/HVnmMxH1/versions/836bPNGo/ComplementaryReimagined_r5.7.1.zip" - ], - "fileSize": 522970 - }, - { - "path": "mods/ViaVersion-5.9.1-SNAPSHOT.jar", - "hashes": { - "sha1": "9d41644f8f42921c2634cc025ad9db0cbb954bf5", - "sha512": "cc7cf4d552ec66f5adfd1e132514e1c5e3e1e7cb3c6a2d958bb21c44af90c293e7d71f5fc8b278063d44679e97cbe588082cd3d94a11dfe5adfda52223ef6782" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/P1OZGk5p/versions/iO5a44mO/ViaVersion-5.9.1-SNAPSHOT.jar" - ], - "fileSize": 6369471 - }, - { - "path": "mods/iris-fabric-1.10.7+mc1.21.11.jar", - "hashes": { - "sha1": "aae8567bd9ea397d50aff1d0b680a82ffe67040c", - "sha512": "b009a07ecbdf3eb510b4acacbb435e058406ddbabcc4f1a5efeacad154cd26777474dcf4a2b5a3a92644b150f047977ada5687a9d9172132fbe6d3d036961b7e" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/YL57xq9U/versions/fDpuVzVr/iris-fabric-1.10.7%2Bmc1.21.11.jar" - ], - "fileSize": 2807547 - }, - { - "path": "mods/ferritecore-8.2.0-fabric.jar", - "hashes": { - "sha512": "3210926a82eb32efd9bcebabe2f6c053daf5c4337eebc6d5bacba96d283510afbde646e7e195751de795ec70a2ea44fef77cb54bf22c8e57bb832d6217418869", - "sha1": "c2e2f5e008f5bc9f401dfad8ca94909917006b65" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/uXXizFIs/versions/Ii0gP3D8/ferritecore-8.2.0-fabric.jar" - ], - "fileSize": 80138 - }, - { - "path": "mods/Axiom-5.4.1-for-MC1.21.11.jar", - "hashes": { - "sha1": "29edf50331e3ff3ba9270aad62eee0800ec6ea27", - "sha512": "83631e7cd5bb8faf95d2565555105f296fcfe1c56748e627ca9a5012da9a75ebca4768b7d7255728f339b7844da851d3044868664b61594cae7b061c92cd76b0" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/N6n5dqoA/versions/WVcmqicM/Axiom-5.4.1-for-MC1.21.11.jar" - ], - "fileSize": 47084842 - }, - { - "path": "mods/melody_fabric_1.0.15_MC_1.21.11.jar", - "hashes": { - "sha512": "9a9ed54077daec16ea4ac6000cf40264d5bdaf97f0cc7b718d5062d538f0a09373bacedc276f43fe7ee4a9c14b4af7909a32b36c10d1b180d36f35b8a24a2a23", - "sha1": "f964abb4947c35b0d85051772c3ed72d6891cf51" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/CVT4pFB2/versions/Xo1GAiPu/melody_fabric_1.0.15_MC_1.21.11.jar" - ], - "fileSize": 227886 - }, - { - "path": "mods/WorldEditCUI-1.21.11+01.jar", - "hashes": { - "sha1": "140efe530f711478da7d5a70c88efb27b438470a", - "sha512": "0b81809767c19b17b8f3f388d9fd8d092fd2602215e16fcf5b64cec7af6082dc261148e9817b2a4b3e1501b2ad243abf1870990ab052918e65503a650e84e33e" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/NSLJJooQ/versions/SD1ZtHLA/WorldEditCUI-1.21.11%2B01.jar" - ], - "fileSize": 706512 - }, - { - "path": "mods/camerautils-fabric-1.21.11-1.1.2.jar", - "hashes": { - "sha512": "f7057fdd442035de9fe1b04089d4882ba7734a2c61213c37c21ee0e7d6f8e485959973a328c077471406808288d56ec43af6170544dd30c9a9c9e6bd24a2aca7", - "sha1": "ed12b725e5611cc4f79099542ae4d4cf32637125" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/rrwQMaWQ/versions/iTsiAfu8/camerautils-fabric-1.21.11-1.1.2.jar" - ], - "fileSize": 400237 - }, - { - "path": "mods/ViaFabric-0.4.21+161-1.14-1.21.jar", - "hashes": { - "sha1": "55b59099da1eb1a4d837b089cdde236fcc538260", - "sha512": "a287f985f2bc8f2584bb7ef6740a20fe24c0cc2783fe2b09a3d58d5af561293a32f76a05ca8731b8debcee483158de34117cca0c7997dd2b4dffbfa256bbdf08" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/YlKdE5VK/versions/JUie2YMf/ViaFabric-0.4.21%2B161-1.14-1.21.jar" - ], - "fileSize": 6225846 - }, - { - "path": "mods/ImmediatelyFast-Fabric-1.14.2+1.21.11.jar", - "hashes": { - "sha512": "dedff930a4e317994579020eaeef9f56d81d5215d871372d206fc974842d87e80e4be15d8571a4eaa4320c2412701ea093ba4494a47e8988e3d448ec8adcba37", - "sha1": "4f17c6b7388f0afc5d24075dc2a294963f78c712" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/5ZwdcRci/versions/QwkfUKSj/ImmediatelyFast-Fabric-1.14.2%2B1.21.11.jar" - ], - "fileSize": 310445 - }, - { - "path": "mods/fabric-api-0.141.3+1.21.11.jar", - "hashes": { - "sha1": "50de67eb221f0b38216da8668b09ca311327040e", - "sha512": "c20c017e23d6d2774690d0dd774cec84c16bfac5461da2d9345a1cd95eee495b1954333c421e3d1c66186284d24a433f6b0cced8021f62e0bfa617d2384d0471" - }, - "env": { - "server": "required", - "client": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/P7dR8mSH/versions/i5tSkVBH/fabric-api-0.141.3%2B1.21.11.jar" - ], - "fileSize": 2412693 - }, - { - "path": "mods/Flashback-0.39.5-for-MC1.21.11.jar", - "hashes": { - "sha1": "c0d10121435c9e03f94b05eeb7a1ba96925efd9c", - "sha512": "9aea077255292c1ff57e1170143ca1c0224371af397e43bf3f7ee2d021b4b2122cd0cda25337ed9b27a241a93f116182611f5c5d21453169c546e906b3d6c0bd" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/4das1Fjq/versions/AGkqd25Y/Flashback-0.39.5-for-MC1.21.11.jar" - ], - "fileSize": 211524256 - }, - { - "path": "mods/language-reload-1.7.6+1.21.11.jar", - "hashes": { - "sha512": "6eef536f74971e012deb34b6e95c0a1f5b3f44024646e6a5bd744b6d747daf7cc09da2c9ffb528bfdb215fcabb5ab0a11a701b36f984245db397bcf8d5ce3ee7", - "sha1": "c11f4602348b2895a6c6c6649e3d7311e76bdc8d" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/uLbm7CG6/versions/YhcaQg5e/language-reload-1.7.6%2B1.21.11.jar" - ], - "fileSize": 76876 - }, - { - "path": "mods/journeymap-fabric-1.21.11-6.0.0-beta.68.jar", - "hashes": { - "sha1": "41f009afe1f6f75b8c9e298a94ac79274db1d77b", - "sha512": "5f635c935b1a399c22213f29d4550f589f52c7eec624954edc2b4cc7b95a2c26e5d59a599cf8be70fd11d53796010609dd4bc7d3e6b40b60ec3634722dea736a" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/lfHFW1mp/versions/VX8GZXvv/journeymap-fabric-1.21.11-6.0.0-beta.68.jar" - ], - "fileSize": 3719345 - }, - { - "path": "mods/notenoughanimations-fabric-1.12.2-mc1.21.11.jar", - "hashes": { - "sha512": "f41856f8345441b5f7ae18c795c8e7dea015a89332559da6eacd24f953aaec97fa7b6aa4989ccc6a956a33d84de40746e1c77087907d2330ccf733b2e25157ea", - "sha1": "cbc66bb65e6b3a5523fb2da697fe64016e87ddea" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/MPCX6s5C/versions/ggZc2iRH/notenoughanimations-fabric-1.12.2-mc1.21.11.jar" - ], - "fileSize": 1939449 - }, - { - "path": "mods/chat_heads-1.2.1-fabric-1.21.11.jar", - "hashes": { - "sha1": "17ba8126f1953fc9eb059ca8c82b5b72b3f907d3", - "sha512": "c3f7f8e3f74aa8e20b537bc255b4b196fdb1b1cc714e6b6d4775251b01a810aaa9704845a525f96461db80eca8d0da1ec79fb2c24c95e5335b9c15a056219ddb" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/AAR2TTo3/chat_heads-1.2.1-fabric-1.21.11.jar" - ], - "fileSize": 92750 - }, - { - "path": "mods/UniLib-1.2.1+1.21.11-fabric.jar", - "hashes": { - "sha512": "75a4e6fa95942a88ed5817eb44298d97a939a07f4b7066c3723d286e72e520ba54fbe208b08e3735ec28a5a9d9118836f620eadd22a5c69848e7d7701e57e179", - "sha1": "74f50874b3e9551f0df33c272ce62f5856acdd7d" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/nT86WUER/versions/2wvZasyj/UniLib-1.2.1%2B1.21.11-fabric.jar" - ], - "fileSize": 1859600 - }, - { - "path": "mods/CraftPresence-2.7.1+1.21.11-fabric.jar", - "hashes": { - "sha1": "9696e3080486bdf85e7d83a287cf913845c89de3", - "sha512": "d9bcfc9e95ae888314d0763bffebec10d478c1536971a7088f3a07c43a5273ec1a2223b63bb6da1863e56ab0b1a46a9633ae6c3091c410a5ae4dc886488dd152" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/DFqQfIBR/versions/E0OvDYn8/CraftPresence-2.7.1%2B1.21.11-fabric.jar" - ], - "fileSize": 1458204 - }, - { - "path": "mods/modmenu-17.0.0.jar", - "hashes": { - "sha1": "544a8b340ac3918d85bcc7d02eaff5372814354b", - "sha512": "146f8c356f86c32e5aab76598e021ac123779c89fc7a51a486fccd2871d2751b02046b4eea3194e52f2e7f38abbb5f78301c8f49bde6e60e1839677db9c84e33" - }, - "env": { - "client": "required", - "server": "required" - }, - "downloads": [ - "https://cdn.modrinth.com/data/mOgUt4GM/versions/Tyk71iSw/modmenu-17.0.0.jar" - ], - "fileSize": 1115809 - } - ], - "dependencies": { - "minecraft": "1.21.11", - "fabric-loader": "0.19.2" - } -} \ No newline at end of file diff --git a/overrides/config/ViaBackwards/config.yml b/overrides/config/ViaBackwards/config.yml deleted file mode 100644 index 7e57843..0000000 --- a/overrides/config/ViaBackwards/config.yml +++ /dev/null @@ -1,76 +0,0 @@ -# If you need help, you can join our Discord - https://viaversion.com/discord -# -# Always shows a mapped mob's original name, and not only when hovering over it with the cursor. -always-show-original-mob-name: true -# -# Writes name and level of custom enchantments into the item's lore. -# Set this to false if you see the entries doubled/if the custom-enchant plugin already writes these into the lore manually. -add-custom-enchants-into-lore: true -# -# Adds the color of a scoreboard team after its prefix for 1.12 clients on 1.13+ servers. -add-teamcolor-to-prefix: true -# -# Converts the 1.13 face look-at packet for 1.12- players. Requires a bit of extra caching. -fix-1_13-face-player: false -# -# Fixes 1.13 clients and lower not seeing color or formatting in inventory titles by converting them to legacy text. -# If you have issues with translatable text being displayed wrongly, disable this. -fix-formatted-inventory-titles: true -# -# Sends inventory acknowledgement packets to act as a replacement for ping packets for sub 1.17 clients. -# This only takes effect for ids in the short range. Useful for anticheat compatibility. -handle-pings-as-inv-acknowledgements: false -# -# Adds bedrock blocks at y=0 for sub 1.17 clients. This may allow for weird interactions due to sending fake blocks. -bedrock-at-y-0: false -# -# Shows sculk shriekers as crying obsidian for 1.18.2 clients on 1.19+ servers. This fixes collision and block breaking issues. -# If disabled, the client will see them as end portal frames. -sculk-shriekers-to-crying-obsidian: true -# -# Shows scaffolding as water for 1.13.2 clients on 1.14+ servers. This fixes collision issues. -# If disabled, the client will see them as hay blocks. -scaffolding-to-water: false -# -# Maps the darkness effect to blindness for 1.18.2 clients on 1.19+ servers. -map-darkness-effect: true -# -# If enabled, 1.21.3 clients will receive the first float of 1.21.4+ custom model data as int. Disable if you handle this change yourself. -map-custom-model-data: true -# -# If enabled, 1.19.3 clients will receive display entities as armor stands with custom entity data on 1.19.4+ servers. Note that -# this does not support all features display entities offer. -map-display-entities: true -# -# Suppresses warnings of missing emulations for certain features that are not supported (e.g. world height in 1.17+). -suppress-emulation-warnings: false -# -# If enabled, dialogs will be shown via chest inventories for 1.21.5 clients on 1.21.6+ servers. -dialogs-via-chests: true -# -# Dialog styling. You can also use translation keys here. -dialog-style: - page-navigation-title: '&9&lPage navigation' - page-navigation-next: '&9Left click: &6Go to next page' - page-navigation-previous: '&9Right click: &6Go to previous page' - toggle-value: '&9Left click: &6Toggle value' - increase-value: '&9Left click: &6Increase value by %s' - decrease-value: '&9Right click: &6Decrease value by %s' - value-range: '&7(Value between &a%s &7and &a%s&7)' - current-value: '&7Current value: &a%s' - edit-value: '&9Left click: &6Edit text' - next-option: '&9Left click: &6Go to next option' - previous-option: '&9Right click: &6Go to previous option' - set-text: '&9Left click/close: &6Set text' - close: '&9Left click: &6Close' -# -# If enabled, the code of conduct will be shown as a dialog for 1.21.7 clients on 1.21.9+ servers. -# Note that this is not supported for clients below 1.21.6 right now due to missing support for -# dialogs during the configuration phase. -code-of-conduct-as-dialog: true -# -# Passes the original vanilla 1.21.4+ item name into custom_model_data strings. -# This allows client resource packs to restore the appearance of newer items entirely missing from this older version. -# Disable if your server creates custom items using modern items as their base. -# Tip: For server custom items, base them on items in the game before 1.21.4 (e.g. saddle) to ensure compatibility. -pass-original-item-name-to-resource-packs: true diff --git a/overrides/config/ViaFabric/viafabric.yml b/overrides/config/ViaFabric/viafabric.yml deleted file mode 100644 index 6b6fe4c..0000000 --- a/overrides/config/ViaFabric/viafabric.yml +++ /dev/null @@ -1,23 +0,0 @@ -# If you need help, you can join our Discord - https://viaversion.com/discord -# Disclaimer: -# -# It cannot be guaranteed that this mod is allowed on specific servers as it can possibly cause problems with anti-cheat plugins, (USE ONLY WITH CAUTION!) -# This option enables client-side transforming. (can also be enabled in-game) -enable-client-side: true -# This option sets the protocol version to be used when connecting to servers. (can also be changed in-game) -client-side-version: -1 -# Hides VIA button from multiplayer menu. -hide-button: true -# List of servers which ViaFabric will force disable transforming on client-side. It can be overwritten by setting per-server version. -# -# This isn't always the address in multiplayer menu; It will use the SRV record pointer when present, Check the game log for the address. -# Uses the following format: mc.example.com, *.example.com, 192.168.0.1, 192.168.* -client-side-force-disable: -- hypixel.net -- '*.hypixel.net' -- minemen.club -- '*.minemen.club' -- icantjoinlmfao.club -# Fabric registry synchronization will be disabled when installed server-side and validation errors are ignored when installed on client-side. -# Note: this setting only works on 1.20.4+ ViaFabric versions, and it might cause issues, use with caution. -ignore-registry-sync-errors: false diff --git a/overrides/config/ViaFabric/viaversion.yml b/overrides/config/ViaFabric/viaversion.yml deleted file mode 100644 index 51abef9..0000000 --- a/overrides/config/ViaFabric/viaversion.yml +++ /dev/null @@ -1,206 +0,0 @@ -# Thanks for downloading ViaVersion -# Ensure you look through all these options -# If you need help: -# Discord - https://viaversion.com/discord -# Docs - https://docs.viaversion.com -# -#----------------------------------------------------------# -# GLOBAL OPTIONS # -#----------------------------------------------------------# -# -# Should ViaVersion check for updates? -# Send the supported versions with the Status (Ping) response packet -send-supported-versions: false -# Easier to configure alternative to 'block-protocols'. Uses readable version strings with possible '<' and '>' prefixes. -# An example to block 1.16.4, everything below 1.16, as well as everything above 1.17.1 would be: ["<1.16", "1.16.4", ">1.17.1"] -# You can use both this and the block-protocols option at the same time as well. -block-versions: [] -# Block specific Minecraft protocol version numbers. -# List of all Minecraft protocol versions: https://minecraft.wiki/w/Protocol_version, or use a generator: https://via.krusic22.com -block-protocols: [] -# Change the blocked disconnect message -block-disconnect-msg: You are using an unsupported Minecraft version! -# If you use ProtocolLib, we can't reload without kicking the players. -# (We don't suggest using reload either, use a plugin manager) -# You can customize the message we kick people with if you use ProtocolLib here. -reload-disconnect-msg: Server reload, please rejoin! -# Settings for logging behavior. When debugging issues, we may ask you to change some of these. -# Most of these are disabled by default to prevent log spam from bad user input. -logging: - # Whether to log more info about kicks due to blocked protocol versions to the console. - log-blocked-joins: false - # Whether to log errors during entity data conversion. - log-entity-data-errors: true - # Whether to log errors during text component conversion. - log-text-component-conversion-errors: false - # Whether to warn for other issues when converting items, blocks, or other data between server and client. - log-other-conversion-warnings: false - # Maximum length of error messages in the console. - max-error-length: 1500 -# -# Used for auto updating config files. Do not touch. -config-version: 1 -init-config-version: 1 -# Whether to update config values that were left on their default to newly changed defaults. Recommended to keep enabled. -migrate-default-config-changes: true -# If enabled, ViaVersion will send the native player version to the server on connect via a plugin message. -# See the wiki for more info: https://github.com/ViaVersion/ViaVersion/wiki/Server-and-Player-Details-Protocol -send-player-details: true -# If enabled, ViaVersion will send the native server version to a player on connect via a plugin message. -# See the wiki above for more info. -send-server-details: true -# -#----------------------------------------------------------# -# GLOBAL PACKET LIMITER # -#----------------------------------------------------------# -# Packets Per Second (PPS) and kilobyte packet size limiters. -# Setting 'max-per-second' or 'sustained-max-per-second' to -1 will disable the individual limit. -# Kick messages may include the %pps or %bps placeholders respectively, though they are more intended for debugging purposes. -# -# Limits the amount of packets sent per second. -# Clients by default send around 20-90 packets per second. -packet-limiter: - enabled: true - # The maximum packets a client can send per second. - max-per-second: 800 - max-per-second-kick-message: You are sending too many packets! - # - # We can also kick them if they repeatedly send too many packets over a longer period of time. - # E.g. if a player sends over 200 packets per second for 4 out of 7 seconds, we kick them. - # The maximum packets per second a client can send over a longer period of time. - sustained-max-per-second: 200 - # Period to track in seconds. - sustained-period-seconds: 7 - # The number of seconds within the interval that the client can exceed the limit before being kicked. - sustained-threshold: 4 - sustained-kick-message: You are sending too many packets, :( -# Limits the size of packets in kilobytes sent per second. -packet-size-limiter: - enabled: false - max-per-second: -1 - max-per-second-kick-message: You are sending too large packets! - sustained-max-per-second: -1 - sustained-period-seconds: 5 - sustained-threshold: 3 - sustained-kick-message: You are sending too large packets, :( -# -#----------------------------------------------------------# -# MULTIPLE VERSIONS OPTIONS # -#----------------------------------------------------------# -# -# Should we enable our hologram patch? -# If they're in the wrong place, enable this -hologram-patch: false -# This is the offset, should work as default when enabled. -hologram-y: -0.96 -# Should we disable piston animation for 1.11/1.11.1 clients? -# In some cases, when firing lots of pistons, it crashes them. -piston-animation-patch: false -# Should we use prefix for team color on 1.13 and above clients? -team-colour-fix: true -# 1.13 introduced new auto complete which can trigger "Kicked for spamming" for servers older than 1.13, the following option will disable it completely. -disable-1_13-auto-complete: false -# The following option will delay the tab complete request in x ticks if greater than 0, if other tab-complete is received, the previous is cancelled -1_13-tab-complete-delay: 0 -# For 1.13 clients the smallest (1 layer) snow doesn't have collisions, this will send these as 2 snowlayers for 1.13+ clients to prevent them bugging through them -fix-low-snow-collision: false -# Infested blocks are instantly breakable for 1.13+ clients, resulting in them being unable to break them on sub 1.13 servers. This remaps them to their normal stone variants -fix-infested-block-breaking: true -# In 1.14 the client page limit has been upped to 100 (from 50). Some anti-exploit plugins ban when clients go higher than 50. This option cuts edited books to 50 pages. -truncate-1_14-books: false -# Fixes 1.14+ clients on sub 1.14 servers having a light value of 0 for non-full blocks. -fix-non-full-blocklight: true -# Fixes walk animation not shown when health is set to Float.NaN -fix-1_14-health-nan: true -# Should 1.15+ clients respawn instantly / without showing a death screen? -use-1_15-instant-respawn: false -# -# Enable serverside block-connections for 1.13+ clients - all the options in this section are built around this option -serverside-blockconnections: true -# When activated, only the most important blocks are stored in the blockstorage. (fences, glass panes etc. won't connect to solid blocks) -reduce-blockstorage-memory: false -# When activated with serverside-blockconnections, flower parts with blocks above will be sent as stems -# Useful for lobbyservers where users can't build and those stems are used decoratively -flowerstem-when-block-above: false -# Vines that are not connected to blocks will be mapped to air, else 1.13+ would still be able to climb up on them. -vine-climb-fix: false -# -# Ignores incoming plugin channel messages of 1.16+ clients with channel names longer than 32 characters. -# CraftBukkit had this limit hardcoded until 1.16, so we have to assume any server/proxy might have this arbitrary check present. -ignore-long-1_16-channel-names: true -# -# Force 1.17+ client to accept the server resource pack; they will automatically disconnect if they decline. -forced-use-1_17-resource-pack: false -# The message to be displayed at the prompt when the 1.17+ client receives the server resource pack. -resource-pack-1_17-prompt: '' -# -# Caches light until chunks are unloaded to allow later chunk update packets as opposed to instantly uncaching when the first chunk data is sent. -# Only disable this if you know what you are doing. -cache-1_17-light: true -# -# Get the world names which should be returned for each vanilla dimension -map-1_16-world-names: - overworld: minecraft:overworld - nether: minecraft:the_nether - end: minecraft:the_end -# -# If disabled, tamed cats will be displayed as ocelots to 1.14+ clients on 1.13 servers. Otherwise, ocelots (tamed and untamed) will be displayed as cats. -translate-ocelot-to-cat: false -# -# Determines the value sent to 1.19+ clients on join if currently not accessible by ViaVersion. -# It is not recommended to fake this value if your server is running 1.19 or later, as 1.20.5 have stricter chat handling and may get kicked otherwise. -enforce-secure-chat: false -# -# Handles items with invalid count values (higher than max stack size) on 1.20.3 servers. -handle-invalid-item-count: false -# -# Hides scoreboard numbers for 1.20.3+ clients on older server versions. -hide-scoreboard-numbers: false -# -# Fixes 1.21+ clients on 1.20.5 servers placing water/lava buckets at the wrong location when moving fast, NOTE: This may cause issues with anti-cheat plugins. -fix-1_21-placement-rotation: true -# -# If enabled, cancel swing packets sent while having an inventory opened on 1.15.2 and below servers. This can cause false positives with anti-cheat plugins. -cancel-swing-in-inventory: true -# -#----------------------------------------------------------# -# 1.9+ CLIENTS ON 1.8 SERVERS OPTIONS # -#----------------------------------------------------------# -# -# No collide options, these allow you to configure how collision works. -# Do you want us to prevent collision? -prevent-collision: true -# If the above is true, should we automatically team players until you do? -auto-team: true -# When enabled, 1.9+ will be able to block by using shields -shield-blocking: true -# If this setting is active, the main hand is used instead of the off-hand to trigger the blocking of the player. -# With the main hand, the blocking starts way faster. -# (Requires "show-shield-when-sword-in-hand" to be disabled) -no-delay-shield-blocking: false -# If this setting is active, the shield will appear immediately for 1.9+ when you hold a sword in your main hand. -# The shield disappears when you switch to another item. -# (Requires "shield-blocking" to be enabled) -show-shield-when-sword-in-hand: false -# Enable player tick simulation, this fixes eating, drinking, nether portals. -simulate-pt: true -# Should we patch boss bars so they work? (Default: true, disable if you're having issues) -bossbar-patch: true -# If your boss bar flickers on 1.9+, set this to 'true'. It will keep all boss bars on 100% (not recommended) -bossbar-anti-flicker: false -# This will show the new effect indicator in the top-right corner for 1.9+ players. -use-new-effect-indicator: true -# Should we cache our items, this will prevent the server from being lagged out, however, the cost is a constant task caching items -item-cache: true -# Should we replace extended pistons to fix 1.10.1 (Only on chunk loading)? -replace-pistons: false -# What id should we replace with, default is air. (careful of players getting stuck standing on them) -replacement-piston-id: 0 -# Fix 1.9+ clients not rendering the far away chunks and improve chunk rendering when moving fast (Increases network usage and decreases client fps slightly) -chunk-border-fix: false -# Allows 1.9+ left-handedness (main hand) on 1.8 servers -left-handed-handling: true -# Tries to cancel block break/place sounds sent by 1.8 servers to 1.9+ clients to prevent them from playing twice -cancel-block-sounds: true -# If enabled, 1.21.11+ clients on 1.8 servers will get wider entity hitboxes when attacking with items -use-1_8-hitbox-margin: true diff --git a/overrides/config/axiom/.axiom.json.backup b/overrides/config/axiom/.axiom.json.backup deleted file mode 100644 index 17193e5..0000000 --- a/overrides/config/axiom/.axiom.json.backup +++ /dev/null @@ -1,216 +0,0 @@ -{ - "keybinds": { - "regularKeybinds": { - "rotateCamera": "mouseright", - "pickBlock": "ctrl+mouseleft", - "useTool": "mouseleft", - "arcballCamera": "mousemiddle", - "arcballCardinalSnap": "none", - "panCamera": "ctrl+mousemiddle", - "crosshairCamera": "mouseleft", - "adjustRadius": "ctrl+mouseright", - "adjustSpeed": "none", - "confirm": "enter", - "undo": "ctrl+z", - "redo": "shift+ctrl+z", - "copy": "ctrl+c", - "copyWithAir": "none", - "paste": "ctrl+v", - "delete": "delete", - "cut": "ctrl+x", - "duplicate": "ctrl+j", - "extrudePoint": "e", - "saveBlueprint": "ctrl+p", - "showSelection": "none", - "showBiomes": "ctrl+b", - "showAnnotations": "none", - "showDisplayEntityGizmos": "none", - "showMarkerEntityGizmos": "none", - "showCollisionMesh": "none", - "showLightBlocks": "none", - "showStructureVoidBlocks": "none", - "quickFill": "ctrl+f", - "quickReplace": "ctrl+r", - "rotatePlacement": "ctrl+r", - "flipPlacement": "ctrl+f", - "pasteAndSelect": "none", - "moveQuick": "leftcontrol", - "moveForward": "w", - "moveLeft": "a", - "moveBackward": "s", - "moveRight": "d", - "moveUp": "space", - "moveDown": "leftshift", - "copyIngame": "ctrl+c", - "builderToolDelete": "delete", - "nudgeForwards": "up", - "nudgeBackwards": "down", - "nudgeRight": "right", - "nudgeLeft": "left", - "nudgePlusY": "pageup", - "nudgeMinusY": "pagedown", - "selectView1": "ctrl+1", - "selectView2": "ctrl+2", - "selectView3": "ctrl+3", - "selectView4": "ctrl+4", - "selectView5": "ctrl+5", - "selectView6": "ctrl+6", - "selectView7": "ctrl+7", - "selectView8": "ctrl+8", - "selectView9": "ctrl+9" - }, - "toolKeybinds": { - "swap_to_last_tool": "none", - "magic_select": "m", - "box_select": "b", - "freehand_select": "n", - "lasso_select": "l", - "ruler": "none", - "annotation": "none", - "painter": "p", - "noise_painter": "o", - "biome_painter": "none", - "gradient_painter": "none", - "script_brush": "none", - "freehand_draw": "g", - "sculpt_draw": "none", - "rock": "h", - "weld": "j", - "melt": "k", - "stamp": "none", - "text": "none", - "shape": "none", - "path": "none", - "modelling": "none", - "floodfill": "none", - "fluid_ball": "none", - "elevation": "e", - "slope": "none", - "smooth": "u", - "distort": "none", - "roughen": "none", - "blend": "none", - "shatter": "none", - "extrude": "y", - "modify": "none" - } - }, - "visuals": { - "minBrightness": 0, - "liquidOpacity": 100, - "showBiomes": false, - "showAnnotations": true, - "showRuler": true, - "keypressOverlay": false, - "showKeyHints": true, - "showBlockStateTooltip": true, - "statusBackground": true - }, - "contextMenu": { - "keybindMode": "HOLD", - "autoSwapToCreative": true, - "autoSwapToOtherHotbarWithItem": false, - "globalHotbars": false - }, - "capabilities": { - "bulldozer": true, - "replaceMode": false, - "typeReplace": false, - "forcePlace": false, - "noUpdates": false, - "tinker": true, - "infiniteReach": false, - "infiniteReachLimit": -1, - "fastPlace": false, - "angelPlacement": false, - "noClip": false, - "phantom": false - }, - "blockAttributes": { - "showCollisionMesh": false, - "showLightBlocks": false, - "showStructureVoidBlocks": false, - "showMovingPistonBlocks": false, - "expandHitboxesToFullCube": false, - "makeFluidHitboxesSolid": false, - "preventInteractions": false - }, - "movement": { - "flightMomentum": 100, - "flightDirection": "HORIZONTAL", - "syncIngameMovementWithEditorUI": false, - "separateFlightSpeeds": false - }, - "builderTools": { - "showBuilderToolSlot": true, - "directionLock": true, - "symmetryRange": 128, - "showSymmetryEnabledIcon": true, - "magicSelectCount": 128, - "middleClick": "EXTEND_SELECT" - }, - "creativeMenu": { - "showColorPicker": true, - "showGradientHelper": true, - "searchQuickAdd": true - }, - "entityManipulation": { - "showDisplayEntities": true, - "displayEntityRange": 8, - "showMarkerEntities": true, - "markerEntityRange": 24, - "swapLeftRightClick": false - }, - "editor": { - "toolStabilization": 0.0, - "clearToolWhenSwapping": true - }, - "blueprint": { - "automaticRefreshing": true, - "recursiveSearch": false, - "customPath": "", - "defaultTags": "small,medium,large,massive,organic,structure,terrain,interior,house,tower,bridge,castle,statue,temple,monument,barn,stable,windmill,store,watermill,ship,airship,balloon,palace,watchtower,mansion,grave,marketplace,mine,obelisk,warehouse,silo,shipwreck,mausoleum,cemetery,bunker,airplane,helicopter,car,truck,vehicle,blacksmith,crypt,factory,mountain,cliff,rock,iceberg,spike,stone,wood,brick,natural,sand,metal,winter,spring,summer,autumn,tree,bush,mushroom,spruce,oak,birch,coniferous,deciduous,acacia,mangrove,cherryblossom,darkoak,jungle,baobab,azalea,cypress,coral,sapling,grass,seagrass,bamboo,flowers,animal,creature,dead,lamp,streetlight,brazier,bed,bookshelf,closet,table,chair,fireplace,carpet,fountain,clock,banner,flag,bell,modern,medieval,steampunk,gothic,oriental,victorian,fantasy,sci-fi,elven,dwarven,futuristic,retro,classic,rustic,baroque,rococo,industrial,artnouveau,artdeco,cyberpunk,space,arabic,indian,egyptian,greek,roman,norse,mesoamerican,japanese,western,spanish,tudor,spooky,pirate,dungeons,rubble,crates,redstone,wall,window,roof,stairs,pillar,arch,stairs,chimney,well" - }, - "internal": { - "nextUpdateNag": 0, - "shownIntroduction": true, - "showOpenConfigTip": true, - "showOpenContextMenuTip": false, - "showOpenEditorTip": true, - "completedTutorials": [], - "openEditorWindowTypes": [ - "tools", - "tool_options", - "palette", - "inventory", - "active_block", - "history", - "world_properties", - "clipboard", - "target_info" - ], - "defaultLayout": "[Window][###Tools]\nPos\u003d0,0\nSize\u003d300,250\nCollapsed\u003d0\nDockId\u003d0x00000003,0\n\n[Window][###Tool Options]\nPos\u003d0,250\nSize\u003d300,750\nCollapsed\u003d0\nDockId\u003d0x00000004,0\n\n[Window][###Clipboard]\nPos\u003d1700,0\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x0000000D,0\n\n[Window][###TargetInfo]\nPos\u003d1700,0\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x0000000D,1\n\n[Window][###Palette]\nPos\u003d1700,200\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x0000000E,0\n\n[Window][###ActiveBlock]\nPos\u003d1700,400\nSize\u003d300,100\nCollapsed\u003d0\nDockId\u003d0x0000000C,0\n\n[Window][###History]\nPos\u003d1700,500\nSize\u003d300,300\nCollapsed\u003d0\nDockId\u003d0x0000000A,0\n\n[Window][###WorldProperties]\nPos\u003d1700,800\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x00000008,0\n\n[Docking][Data]\nDockSpace ID\u003d0x8B93E3BD Window\u003d0xA787BDB4 Pos\u003d0,0 Size\u003d2000,1000 Split\u003dX\nDockNode ID\u003d0x00000005 Parent\u003d0x8B93E3BD SizeRef\u003d1700,1000 Split\u003dX\n DockNode ID\u003d0x00000001 Parent\u003d0x00000005 SizeRef\u003d300,1000 Split\u003dY\n DockNode ID\u003d0x00000003 Parent\u003d0x00000001 SizeRef\u003d300,250 Selected\u003d0x80AFE82B\n DockNode ID\u003d0x00000004 Parent\u003d0x00000001 SizeRef\u003d300,750 Selected\u003d0xECA27DCB\n DockNode ID\u003d0x00000002 Parent\u003d0x00000005 SizeRef\u003d1400,1000 CentralNode\u003d1 Selected\u003d0x1F1A625A\nDockNode ID\u003d0x00000006 Parent\u003d0x8B93E3BD SizeRef\u003d300,1000 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x00000007 Parent\u003d0x00000006 SizeRef\u003d300,800 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x00000009 Parent\u003d0x00000007 SizeRef\u003d300,500 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x0000000B Parent\u003d0x00000009 SizeRef\u003d300,400 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x0000000D Parent\u003d0x0000000B SizeRef\u003d300,200 Selected\u003d0x34064FA7\n DockNode ID\u003d0x0000000E Parent\u003d0x0000000B SizeRef\u003d300,200 Selected\u003d0x1E514AEA\n DockNode ID\u003d0x0000000C Parent\u003d0x00000009 SizeRef\u003d300,100 Selected\u003d0x1D216E21\n DockNode ID\u003d0x0000000A Parent\u003d0x00000007 SizeRef\u003d300,300 Selected\u003d0xFE0E9DDF\n DockNode ID\u003d0x00000008 Parent\u003d0x00000006 SizeRef\u003d300,200 Selected\u003d0x602D8B84", - "lastTranslationCount": 0, - "globalScale": 1.0, - "savedCustomTheme": "ASel0AAAlJbUd1aURhcmsAAA\u003d\u003d", - "showCloseWindowButton": false, - "showToolMaskOpenWarning": true, - "showNon90DegreeRotationWarning": true, - "showQuickReplaceCtrlClickTip": true, - "dockedInventoryWithPalette": false, - "rootEditorPalette": { - "blocks": [], - "subcategories": {} - }, - "customDowngradeSuggestions": {}, - "invertCameraRotate": false, - "useCenterOfScreenForArcball": false, - "pickBlockDrag": true, - "cutAlsoCopiesToClipboard": false, - "useVanillaMovementForEditor": true, - "tallGrassIsActuallyNotTall": false, - "disableChunkRenderOverrider": false, - "hadEditorUIOpen": false, - "blueprintBrowserDirSize": 175 - } -} \ No newline at end of file diff --git a/overrides/config/axiom/axiom.json b/overrides/config/axiom/axiom.json deleted file mode 100644 index 17193e5..0000000 --- a/overrides/config/axiom/axiom.json +++ /dev/null @@ -1,216 +0,0 @@ -{ - "keybinds": { - "regularKeybinds": { - "rotateCamera": "mouseright", - "pickBlock": "ctrl+mouseleft", - "useTool": "mouseleft", - "arcballCamera": "mousemiddle", - "arcballCardinalSnap": "none", - "panCamera": "ctrl+mousemiddle", - "crosshairCamera": "mouseleft", - "adjustRadius": "ctrl+mouseright", - "adjustSpeed": "none", - "confirm": "enter", - "undo": "ctrl+z", - "redo": "shift+ctrl+z", - "copy": "ctrl+c", - "copyWithAir": "none", - "paste": "ctrl+v", - "delete": "delete", - "cut": "ctrl+x", - "duplicate": "ctrl+j", - "extrudePoint": "e", - "saveBlueprint": "ctrl+p", - "showSelection": "none", - "showBiomes": "ctrl+b", - "showAnnotations": "none", - "showDisplayEntityGizmos": "none", - "showMarkerEntityGizmos": "none", - "showCollisionMesh": "none", - "showLightBlocks": "none", - "showStructureVoidBlocks": "none", - "quickFill": "ctrl+f", - "quickReplace": "ctrl+r", - "rotatePlacement": "ctrl+r", - "flipPlacement": "ctrl+f", - "pasteAndSelect": "none", - "moveQuick": "leftcontrol", - "moveForward": "w", - "moveLeft": "a", - "moveBackward": "s", - "moveRight": "d", - "moveUp": "space", - "moveDown": "leftshift", - "copyIngame": "ctrl+c", - "builderToolDelete": "delete", - "nudgeForwards": "up", - "nudgeBackwards": "down", - "nudgeRight": "right", - "nudgeLeft": "left", - "nudgePlusY": "pageup", - "nudgeMinusY": "pagedown", - "selectView1": "ctrl+1", - "selectView2": "ctrl+2", - "selectView3": "ctrl+3", - "selectView4": "ctrl+4", - "selectView5": "ctrl+5", - "selectView6": "ctrl+6", - "selectView7": "ctrl+7", - "selectView8": "ctrl+8", - "selectView9": "ctrl+9" - }, - "toolKeybinds": { - "swap_to_last_tool": "none", - "magic_select": "m", - "box_select": "b", - "freehand_select": "n", - "lasso_select": "l", - "ruler": "none", - "annotation": "none", - "painter": "p", - "noise_painter": "o", - "biome_painter": "none", - "gradient_painter": "none", - "script_brush": "none", - "freehand_draw": "g", - "sculpt_draw": "none", - "rock": "h", - "weld": "j", - "melt": "k", - "stamp": "none", - "text": "none", - "shape": "none", - "path": "none", - "modelling": "none", - "floodfill": "none", - "fluid_ball": "none", - "elevation": "e", - "slope": "none", - "smooth": "u", - "distort": "none", - "roughen": "none", - "blend": "none", - "shatter": "none", - "extrude": "y", - "modify": "none" - } - }, - "visuals": { - "minBrightness": 0, - "liquidOpacity": 100, - "showBiomes": false, - "showAnnotations": true, - "showRuler": true, - "keypressOverlay": false, - "showKeyHints": true, - "showBlockStateTooltip": true, - "statusBackground": true - }, - "contextMenu": { - "keybindMode": "HOLD", - "autoSwapToCreative": true, - "autoSwapToOtherHotbarWithItem": false, - "globalHotbars": false - }, - "capabilities": { - "bulldozer": true, - "replaceMode": false, - "typeReplace": false, - "forcePlace": false, - "noUpdates": false, - "tinker": true, - "infiniteReach": false, - "infiniteReachLimit": -1, - "fastPlace": false, - "angelPlacement": false, - "noClip": false, - "phantom": false - }, - "blockAttributes": { - "showCollisionMesh": false, - "showLightBlocks": false, - "showStructureVoidBlocks": false, - "showMovingPistonBlocks": false, - "expandHitboxesToFullCube": false, - "makeFluidHitboxesSolid": false, - "preventInteractions": false - }, - "movement": { - "flightMomentum": 100, - "flightDirection": "HORIZONTAL", - "syncIngameMovementWithEditorUI": false, - "separateFlightSpeeds": false - }, - "builderTools": { - "showBuilderToolSlot": true, - "directionLock": true, - "symmetryRange": 128, - "showSymmetryEnabledIcon": true, - "magicSelectCount": 128, - "middleClick": "EXTEND_SELECT" - }, - "creativeMenu": { - "showColorPicker": true, - "showGradientHelper": true, - "searchQuickAdd": true - }, - "entityManipulation": { - "showDisplayEntities": true, - "displayEntityRange": 8, - "showMarkerEntities": true, - "markerEntityRange": 24, - "swapLeftRightClick": false - }, - "editor": { - "toolStabilization": 0.0, - "clearToolWhenSwapping": true - }, - "blueprint": { - "automaticRefreshing": true, - "recursiveSearch": false, - "customPath": "", - "defaultTags": "small,medium,large,massive,organic,structure,terrain,interior,house,tower,bridge,castle,statue,temple,monument,barn,stable,windmill,store,watermill,ship,airship,balloon,palace,watchtower,mansion,grave,marketplace,mine,obelisk,warehouse,silo,shipwreck,mausoleum,cemetery,bunker,airplane,helicopter,car,truck,vehicle,blacksmith,crypt,factory,mountain,cliff,rock,iceberg,spike,stone,wood,brick,natural,sand,metal,winter,spring,summer,autumn,tree,bush,mushroom,spruce,oak,birch,coniferous,deciduous,acacia,mangrove,cherryblossom,darkoak,jungle,baobab,azalea,cypress,coral,sapling,grass,seagrass,bamboo,flowers,animal,creature,dead,lamp,streetlight,brazier,bed,bookshelf,closet,table,chair,fireplace,carpet,fountain,clock,banner,flag,bell,modern,medieval,steampunk,gothic,oriental,victorian,fantasy,sci-fi,elven,dwarven,futuristic,retro,classic,rustic,baroque,rococo,industrial,artnouveau,artdeco,cyberpunk,space,arabic,indian,egyptian,greek,roman,norse,mesoamerican,japanese,western,spanish,tudor,spooky,pirate,dungeons,rubble,crates,redstone,wall,window,roof,stairs,pillar,arch,stairs,chimney,well" - }, - "internal": { - "nextUpdateNag": 0, - "shownIntroduction": true, - "showOpenConfigTip": true, - "showOpenContextMenuTip": false, - "showOpenEditorTip": true, - "completedTutorials": [], - "openEditorWindowTypes": [ - "tools", - "tool_options", - "palette", - "inventory", - "active_block", - "history", - "world_properties", - "clipboard", - "target_info" - ], - "defaultLayout": "[Window][###Tools]\nPos\u003d0,0\nSize\u003d300,250\nCollapsed\u003d0\nDockId\u003d0x00000003,0\n\n[Window][###Tool Options]\nPos\u003d0,250\nSize\u003d300,750\nCollapsed\u003d0\nDockId\u003d0x00000004,0\n\n[Window][###Clipboard]\nPos\u003d1700,0\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x0000000D,0\n\n[Window][###TargetInfo]\nPos\u003d1700,0\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x0000000D,1\n\n[Window][###Palette]\nPos\u003d1700,200\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x0000000E,0\n\n[Window][###ActiveBlock]\nPos\u003d1700,400\nSize\u003d300,100\nCollapsed\u003d0\nDockId\u003d0x0000000C,0\n\n[Window][###History]\nPos\u003d1700,500\nSize\u003d300,300\nCollapsed\u003d0\nDockId\u003d0x0000000A,0\n\n[Window][###WorldProperties]\nPos\u003d1700,800\nSize\u003d300,200\nCollapsed\u003d0\nDockId\u003d0x00000008,0\n\n[Docking][Data]\nDockSpace ID\u003d0x8B93E3BD Window\u003d0xA787BDB4 Pos\u003d0,0 Size\u003d2000,1000 Split\u003dX\nDockNode ID\u003d0x00000005 Parent\u003d0x8B93E3BD SizeRef\u003d1700,1000 Split\u003dX\n DockNode ID\u003d0x00000001 Parent\u003d0x00000005 SizeRef\u003d300,1000 Split\u003dY\n DockNode ID\u003d0x00000003 Parent\u003d0x00000001 SizeRef\u003d300,250 Selected\u003d0x80AFE82B\n DockNode ID\u003d0x00000004 Parent\u003d0x00000001 SizeRef\u003d300,750 Selected\u003d0xECA27DCB\n DockNode ID\u003d0x00000002 Parent\u003d0x00000005 SizeRef\u003d1400,1000 CentralNode\u003d1 Selected\u003d0x1F1A625A\nDockNode ID\u003d0x00000006 Parent\u003d0x8B93E3BD SizeRef\u003d300,1000 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x00000007 Parent\u003d0x00000006 SizeRef\u003d300,800 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x00000009 Parent\u003d0x00000007 SizeRef\u003d300,500 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x0000000B Parent\u003d0x00000009 SizeRef\u003d300,400 Split\u003dY Selected\u003d0x34064FA7\n DockNode ID\u003d0x0000000D Parent\u003d0x0000000B SizeRef\u003d300,200 Selected\u003d0x34064FA7\n DockNode ID\u003d0x0000000E Parent\u003d0x0000000B SizeRef\u003d300,200 Selected\u003d0x1E514AEA\n DockNode ID\u003d0x0000000C Parent\u003d0x00000009 SizeRef\u003d300,100 Selected\u003d0x1D216E21\n DockNode ID\u003d0x0000000A Parent\u003d0x00000007 SizeRef\u003d300,300 Selected\u003d0xFE0E9DDF\n DockNode ID\u003d0x00000008 Parent\u003d0x00000006 SizeRef\u003d300,200 Selected\u003d0x602D8B84", - "lastTranslationCount": 0, - "globalScale": 1.0, - "savedCustomTheme": "ASel0AAAlJbUd1aURhcmsAAA\u003d\u003d", - "showCloseWindowButton": false, - "showToolMaskOpenWarning": true, - "showNon90DegreeRotationWarning": true, - "showQuickReplaceCtrlClickTip": true, - "dockedInventoryWithPalette": false, - "rootEditorPalette": { - "blocks": [], - "subcategories": {} - }, - "customDowngradeSuggestions": {}, - "invertCameraRotate": false, - "useCenterOfScreenForArcball": false, - "pickBlockDrag": true, - "cutAlsoCopiesToClipboard": false, - "useVanillaMovementForEditor": true, - "tallGrassIsActuallyNotTall": false, - "disableChunkRenderOverrider": false, - "hadEditorUIOpen": false, - "blueprintBrowserDirSize": 175 - } -} \ No newline at end of file diff --git a/overrides/config/axiom/imgui.ini b/overrides/config/axiom/imgui.ini deleted file mode 100644 index b30e7f3..0000000 --- a/overrides/config/axiom/imgui.ini +++ /dev/null @@ -1,64 +0,0 @@ -[Window][###Tools] -Pos=0,0 -Size=300,250 -Collapsed=0 -DockId=0x00000003,0 - -[Window][###Tool Options] -Pos=0,250 -Size=300,750 -Collapsed=0 -DockId=0x00000004,0 - -[Window][###Clipboard] -Pos=1700,0 -Size=300,200 -Collapsed=0 -DockId=0x0000000D,0 - -[Window][###TargetInfo] -Pos=1700,0 -Size=300,200 -Collapsed=0 -DockId=0x0000000D,1 - -[Window][###Palette] -Pos=1700,200 -Size=300,200 -Collapsed=0 -DockId=0x0000000E,0 - -[Window][###ActiveBlock] -Pos=1700,400 -Size=300,100 -Collapsed=0 -DockId=0x0000000C,0 - -[Window][###History] -Pos=1700,500 -Size=300,300 -Collapsed=0 -DockId=0x0000000A,0 - -[Window][###WorldProperties] -Pos=1700,800 -Size=300,200 -Collapsed=0 -DockId=0x00000008,0 - -[Docking][Data] -DockSpace ID=0x8B93E3BD Window=0xA787BDB4 Pos=0,0 Size=2000,1000 Split=X -DockNode ID=0x00000005 Parent=0x8B93E3BD SizeRef=1700,1000 Split=X - DockNode ID=0x00000001 Parent=0x00000005 SizeRef=300,1000 Split=Y - DockNode ID=0x00000003 Parent=0x00000001 SizeRef=300,250 Selected=0x80AFE82B - DockNode ID=0x00000004 Parent=0x00000001 SizeRef=300,750 Selected=0xECA27DCB - DockNode ID=0x00000002 Parent=0x00000005 SizeRef=1400,1000 CentralNode=1 Selected=0x1F1A625A -DockNode ID=0x00000006 Parent=0x8B93E3BD SizeRef=300,1000 Split=Y Selected=0x34064FA7 - DockNode ID=0x00000007 Parent=0x00000006 SizeRef=300,800 Split=Y Selected=0x34064FA7 - DockNode ID=0x00000009 Parent=0x00000007 SizeRef=300,500 Split=Y Selected=0x34064FA7 - DockNode ID=0x0000000B Parent=0x00000009 SizeRef=300,400 Split=Y Selected=0x34064FA7 - DockNode ID=0x0000000D Parent=0x0000000B SizeRef=300,200 Selected=0x34064FA7 - DockNode ID=0x0000000E Parent=0x0000000B SizeRef=300,200 Selected=0x1E514AEA - DockNode ID=0x0000000C Parent=0x00000009 SizeRef=300,100 Selected=0x1D216E21 - DockNode ID=0x0000000A Parent=0x00000007 SizeRef=300,300 Selected=0xFE0E9DDF - DockNode ID=0x00000008 Parent=0x00000006 SizeRef=300,200 Selected=0x602D8B84 \ No newline at end of file diff --git a/overrides/config/camerautils/camerautils.properties b/overrides/config/camerautils/camerautils.properties deleted file mode 100644 index ba304f2..0000000 --- a/overrides/config/camerautils/camerautils.properties +++ /dev/null @@ -1,26 +0,0 @@ -smoothness=0.0 -min_smoothness=40.0 -max_smoothness=100.0 -cinematic_camera_modifier=1.0 -zoom=0.0 -zoom_sensitivity=0.01 -third_person_offset=0.0 -third_person_offset_sensitivity=0.1 -third_person_cam_1_offset_x=-4.0 -third_person_cam_1_offset_y=0.0 -third_person_cam_1_offset_z=0.0 -third_person_cam_1_inverted=false -third_person_cam_1_hide_gui=false -third_person_cam_1_rotation_x=0.0 -third_person_cam_2_offset_x=-4.0 -third_person_cam_2_offset_y=0.0 -third_person_cam_2_offset_z=0.0 -third_person_cam_2_inverted=false -third_person_cam_2_hide_gui=false -third_person_cam_2_rotation_x=0.0 -# Possible values are: LEFT_CTRL, RIGHT_CTRL, CTRL, LEFT_ALT, RIGHT_ALT, ALT, LEFT_SHIFT, RIGHT_SHIFT, SHIFT -modifier_key=RIGHT_ALT -gui_opacity=1.0 -zoom_animation_from=1.0 -zoom_animation_to=0.1 -zoom_animation_duration=200 diff --git a/overrides/config/chat_heads.json5 b/overrides/config/chat_heads.json5 deleted file mode 100644 index 287d063..0000000 --- a/overrides/config/chat_heads.json5 +++ /dev/null @@ -1,10 +0,0 @@ -{ - "renderPosition": "BEFORE_NAME", - "threeDeeNess": 0.0, - "offsetNonPlayerText": true, - "senderDetection": "UUID_AND_HEURISTIC", - "smartHeuristics": true, - "handleSystemMessages": true, - "drawShadow": true, - "nameAliases": { } -} \ No newline at end of file diff --git a/overrides/config/chatanimation.json b/overrides/config/chatanimation.json deleted file mode 100644 index 63eb5ec..0000000 --- a/overrides/config/chatanimation.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "enableMessageAnimation": true, - "enableTextFieldAnimation": true, - "removeMessageIndicator": true, - "fadeTimeMessage": 150, - "fadeTimeTextField": 170 -} \ No newline at end of file diff --git a/overrides/config/craftpresence.json b/overrides/config/craftpresence.json deleted file mode 100644 index 1a3bc4e..0000000 --- a/overrides/config/craftpresence.json +++ /dev/null @@ -1,187 +0,0 @@ -{ - "_schemaVersion": 7, - "_lastMCVersionId": 774, - "generalSettings": { - "detectATLauncherInstance": true, - "detectCurseManifest": true, - "detectMultiMCManifest": true, - "detectMCUpdaterInstance": true, - "detectTechnicPack": true, - "detectModrinthPack": true, - "detectBiomeData": true, - "detectDimensionData": true, - "detectWorldData": true, - "clientId": "450485984333660181", - "defaultIcon": "grass", - "enableJoinRequests": false, - "preferredClientLevel": 3, - "resetTimeOnInit": false, - "autoRegister": false - }, - "biomeSettings": { - "fallbackBiomeIcon": "unknown", - "biomeData": { - "default": { - "textOverride": "Playing in {biome.name}" - } - } - }, - "dimensionSettings": { - "fallbackDimensionIcon": "unknown", - "dimensionData": { - "default": { - "textOverride": "In the {dimension.name}" - } - } - }, - "serverSettings": { - "fallbackServerIcon": "buildtheearth.net", - "fallbackServerName": "BuildTheEarth", - "fallbackServerMotd": "BuildTheEarth", - "serverData": { - "default": { - "textOverride": "{server.motd.raw}" - } - }, - "pingRateInterval": 5, - "pingRateUnit": "minutes" - }, - "statusMessages": { - "mainMenuData": { - "textOverride": "In the Main Menu" - }, - "loadingData": { - "textOverride": "Loading..." - }, - "lanData": { - "textOverride": "Playing on a LAN Server" - }, - "singleplayerData": { - "textOverride": "Playing Singleplayer" - }, - "realmData": { - "textOverride": "Playing on {server.motd.raw}" - } - }, - "advancedSettings": { - "enablePerGui": false, - "enablePerItem": false, - "enablePerEntity": false, - "formatWords": true, - "debugMode": false, - "verboseMode": false, - "refreshRate": 2, - "allowPlaceholderPreviews": false, - "guiSettings": { - "fallbackGuiIcon": "unknown", - "guiData": { - "default": { - "textOverride": "In {screen.name}" - } - } - }, - "itemMessages": { - "default": "Holding {item.message.holding}" - }, - "entitySettings": { - "fallbackEntityIcon": "unknown", - "targetData": { - "default": { - "textOverride": "Targeting {entity.target.name}" - } - }, - "ridingData": { - "default": { - "textOverride": "Riding {entity.riding.name}" - } - } - }, - "allowEndpointIcons": true, - "serverIconEndpoint": "https://api.mcsrvstat.us/icon/{server.address.short}", - "playerSkinEndpoint": "https://mc-heads.net/avatar/{getOrDefault(player.uuid.short, player.name)}", - "allowDuplicatePackets": false, - "maxConnectionAttempts": 10, - "enableClassGraph": false - }, - "accessibilitySettings": { - "languageId": "en_us", - "stripTranslationColors": false, - "stripTranslationFormatting": false, - "stripExtraGuiElements": false, - "configKeyCode": -1 - }, - "displaySettings": { - "presenceData": { - "enabled": true, - "useAsMain": false, - "isInstance": false, - "activityType": 0, - "statusDisplayType": 0, - "partyPrivacy": 1, - "details": "Building the earth, block by block.", - "detailsUrl": "", - "gameState": "{getOrDefault(server.address.full)}", - "gameStateUrl": "", - "appName": "BuildTheEarth", - "largeImageKey": "buildtheearth.net", - "largeImageText": "{getFirst(menu.message, dimension.message)}", - "largeImageUrl": "", - "smallImageKey": "{getFirst(server.icon, pack.icon)}", - "smallImageText": "{getOrDefault(server.message)} {getOrDefault(pack.name)}", - "smallImageUrl": "", - "startTimestamp": "{data.general.time}", - "endTimestamp": "", - "buttons": {} - }, - "dynamicIcons": { - "play.btehkmu.com": "https://api.mcsrvstat.us/icon/play.btehkmu.com", - "bteconosur.com": "https://api.mcsrvstat.us/icon/bteconosur.com", - "BuildTheEarth.ru": "https://api.mcsrvstat.us/icon/BuildTheEarth.ru", - "ohpainky.nabte.net": "https://api.mcsrvstat.us/icon/ohpainky.nabte.net", - "199.127.63.47": "https://api.mcsrvstat.us/icon/199.127.63.47", - "bteuk.net": "https://api.mcsrvstat.us/icon/bteuk.net", - "bte.ntc.im": "https://api.mcsrvstat.us/icon/bte.ntc.im", - "btejp.victoneux.gay": "https://api.mcsrvstat.us/icon/btejp.victoneux.gay", - "bnlx.buildtheearth.net": "https://api.mcsrvstat.us/icon/bnlx.buildtheearth.net", - "Codestian": "https://mc-heads.net/avatar/b2cafd1598ed4c2d8d050663a151f73c", - "minefact.de": "https://api.mcsrvstat.us/icon/minefact.de", - "bteturkey.net": "https://api.mcsrvstat.us/icon/bteturkey.net", - "buildtheearth.net": "https://api.mcsrvstat.us/icon/buildtheearth.net", - "asean.thatsnek.asia": "https://api.mcsrvstat.us/icon/asean.thatsnek.asia", - "czsk.buildtheearth.net": "https://api.mcsrvstat.us/icon/czsk.buildtheearth.net", - "nordicbalticbte.net": "https://api.mcsrvstat.us/icon/nordicbalticbte.net", - "btuk.org": "https://api.mcsrvstat.us/icon/btuk.org", - "mc.bteireland.ie": "https://api.mcsrvstat.us/icon/mc.bteireland.ie", - "bte-germany.de": "https://api.mcsrvstat.us/icon/bte-germany.de", - "bte.mhsv.pl": "https://api.mcsrvstat.us/icon/bte.mhsv.pl", - "buildtheearth.ru": "https://api.mcsrvstat.us/icon/buildtheearth.ru", - "bteukraine.com": "https://api.mcsrvstat.us/icon/bteukraine.com", - "mc.alps-bte.com": "https://api.mcsrvstat.us/icon/mc.alps-bte.com", - "ib.buildtheearth.net": "https://api.mcsrvstat.us/icon/ib.buildtheearth.net", - "mc.bteitalia.it": "https://api.mcsrvstat.us/icon/mc.bteitalia.it", - "mc.btebalkans.com": "https://api.mcsrvstat.us/icon/mc.btebalkans.com", - "nabte.net": "https://api.mcsrvstat.us/icon/nabte.net", - "nyc.buildtheearth.net": "https://api.mcsrvstat.us/icon/nyc.buildtheearth.net", - "btemexca.net": "https://api.mcsrvstat.us/icon/btemexca.net", - "buildtheearth.net.br": "https://api.mcsrvstat.us/icon/buildtheearth.net.br", - "afr.buildtheearth.net": "https://api.mcsrvstat.us/icon/afr.buildtheearth.net", - "hub.bteoce.com": "https://api.mcsrvstat.us/icon/hub.bteoce.com", - "me.buildtheearth.net": "https://api.mcsrvstat.us/icon/me.buildtheearth.net", - "buildtheearth.asia": "https://api.mcsrvstat.us/icon/buildtheearth.asia", - "btechina.oddblox.net": "https://api.mcsrvstat.us/icon/btechina.oddblox.net", - "mctw.in": "https://api.mcsrvstat.us/icon/mctw.in", - "asean.buildtheearth.net": "https://api.mcsrvstat.us/icon/asean.buildtheearth.net" - }, - "dynamicVariables": { - "mods": "{general.mods} Mod(s)", - "player_info_coordinate": "At {player.position.x}, {player.position.z}", - "players": "{server.players.current} / {server.players.max} Players", - "player_info_in": "({custom.player_info.health})", - "player_info_items": "Items: {item.main_hand.message}", - "player_info_out": "As {player.name}", - "player_info_health": "Health: {player.health.current}/{player.health.max}", - "world_info": "On {world.name}", - "pack": "{pack.name}" - } - } -} \ No newline at end of file diff --git a/overrides/config/entityculling.json b/overrides/config/entityculling.json deleted file mode 100644 index abd7802..0000000 --- a/overrides/config/entityculling.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "configVersion": 7, - "renderNametagsThroughWalls": true, - "blockEntityWhitelist": [ - "create:rope_pulley", - "botania:flame_ring", - "minecraft:beacon", - "create:hose_pulley", - "betterend:eternal_pedestal", - "botania:magic_missile", - "botania:falling_star" - ], - "entityWhitelist": [ - "botania:mana_burst", - "drg_flares:drg_flares", - "quark:soul_bead" - ], - "tracingDistance": 128, - "debugMode": false, - "sleepDelay": 10, - "hitboxLimit": 50, - "captureRate": 5, - "tickCulling": true, - "tickCullingWhitelist": [ - "minecraft:block_display", - "alexscaves:gum_worm", - "minecraft:jungle_boat", - "minecraft:spruce_boat", - "mts:builder_rendering", - "drg_flares:drg_flares", - "minecraft:mangrove_boat", - "mts:builder_existing", - "minecraft:acacia_boat", - "minecraft:birch_chest_boat", - "create:contraption", - "drg_flares:drg_flare", - "minecraft:birch_boat", - "minecraft:boat", - "mts:builder_seat", - "minecraft:cherry_boat", - "minecraft:spruce_chest_boat", - "alexscaves:gum_worm_segment", - "minecraft:dark_oak_boat", - "minecraft:oak_chest_boat", - "avm_staff:campfire_flame", - "minecraft:dark_oak_chest_boat", - "minecraft:text_display", - "create:gantry_contraption", - "minecraft:oak_boat", - "minecraft:pale_oak_boat", - "minecraft:acacia_chest_boat", - "minecraft:cherry_chest_boat", - "minecraft:item_display", - "create:stationary_contraption", - "minecraft:bamboo_raft", - "minecraft:firework_rocket", - "minecraft:jungle_chest_boat", - "create:carriage_contraption", - "minecraft:pale_oak_chest_boat", - "minecraft:bamboo_chest_raft", - "minecraft:mangrove_chest_boat", - "voidscape:corrupted_pawn" - ], - "disableF3": false, - "skipEntityCulling": false, - "skipBlockEntityCulling": false, - "blockEntityFrustumCulling": true, - "forceDisplayCulling": false -} \ No newline at end of file diff --git a/overrides/config/fabric/indigo-renderer.properties b/overrides/config/fabric/indigo-renderer.properties deleted file mode 100644 index e99638f..0000000 --- a/overrides/config/fabric/indigo-renderer.properties +++ /dev/null @@ -1,8 +0,0 @@ -#Indigo properties file -#Sat May 02 19:01:54 CEST 2026 -ambient-occlusion-mode=hybrid -debug-compare-lighting=auto -fix-exterior-vertex-lighting=auto -fix-luminous-block-ambient-occlusion=auto -fix-mean-light-calculation=auto -fix-smooth-lighting-offset=auto diff --git a/overrides/config/fancymenu/assets/animations/nullskill/animation.properties b/overrides/config/fancymenu/assets/animations/nullskill/animation.properties deleted file mode 100644 index 2bcff34..0000000 --- a/overrides/config/fancymenu/assets/animations/nullskill/animation.properties +++ /dev/null @@ -1,79 +0,0 @@ -type = animation - -animation-meta { - name = nullskill - fps = 24 - loop = false - replayintro = false - namespace = nullskill -} - -frames-main { - frame_1 = 1.jpg -} - -frames-intro { - frame_1 = 1.jpg - frame_2 = 2.jpg - frame_3 = 3.jpg - frame_4 = 4.jpg - frame_5 = 5.jpg - frame_6 = 6.jpg - frame_7 = 7.jpg - frame_8 = 8.jpg - frame_9 = 9.jpg - frame_10 = 10.jpg - frame_11 = 11.jpg - frame_12 = 12.jpg - frame_13 = 13.jpg - frame_14 = 14.jpg - frame_15 = 15.jpg - frame_16 = 16.jpg - frame_17 = 17.jpg - frame_18 = 18.jpg - frame_19 = 19.jpg - frame_20 = 20.jpg - frame_21 = 21.jpg - frame_22 = 22.jpg - frame_23 = 23.jpg - frame_24 = 24.jpg - frame_25 = 25.jpg - frame_26 = 26.jpg - frame_27 = 27.jpg - frame_28 = 28.jpg - frame_29 = 29.jpg - frame_30 = 30.jpg - frame_31 = 31.jpg - frame_32 = 32.jpg - frame_33 = 33.jpg - frame_34 = 34.jpg - frame_35 = 35.jpg - frame_36 = 36.jpg - frame_37 = 37.jpg - frame_38 = 38.jpg - frame_39 = 39.jpg - frame_40 = 40.jpg - frame_41 = 41.jpg - frame_42 = 42.jpg - frame_43 = 43.jpg - frame_44 = 44.jpg - frame_45 = 45.jpg - frame_46 = 46.jpg - frame_47 = 47.jpg - frame_48 = 48.jpg - frame_49 = 49.jpg - frame_50 = 50.jpg - frame_51 = 51.jpg - frame_52 = 52.jpg - frame_53 = 53.jpg - frame_54 = 54.jpg - frame_55 = 55.jpg - frame_56 = 56.jpg - frame_57 = 57.jpg - frame_58 = 58.jpg - frame_59 = 59.jpg - frame_60 = 60.jpg - frame_61 = 61.jpg - frame_62 = 62.jpg -} - diff --git a/overrides/config/fancymenu/assets/animations/nullskill/audio/introaudio.wav b/overrides/config/fancymenu/assets/animations/nullskill/audio/introaudio.wav deleted file mode 100644 index e0a65a1..0000000 Binary files a/overrides/config/fancymenu/assets/animations/nullskill/audio/introaudio.wav and /dev/null differ diff --git a/overrides/config/fancymenu/assets/animations/nullskill/audio/mainaudio.wav b/overrides/config/fancymenu/assets/animations/nullskill/audio/mainaudio.wav deleted file mode 100644 index e0a65a1..0000000 Binary files a/overrides/config/fancymenu/assets/animations/nullskill/audio/mainaudio.wav and /dev/null differ diff --git a/overrides/config/fancymenu/assets/audio/introaudio.ogg b/overrides/config/fancymenu/assets/audio/introaudio.ogg deleted file mode 100644 index 7700425..0000000 Binary files a/overrides/config/fancymenu/assets/audio/introaudio.ogg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/backgrounds/backgrounds.json b/overrides/config/fancymenu/assets/backgrounds/backgrounds.json deleted file mode 100644 index 31abcd7..0000000 --- a/overrides/config/fancymenu/assets/backgrounds/backgrounds.json +++ /dev/null @@ -1 +0,0 @@ -{"1":{"url":"https://cdn.buildtheearth.net/uploads/b83f00a7a9a30369aecfe714b859b13f75cb9047ea4982894ad672946035a4cc","credit":"Azguendare_"},"2":{"url":"https://cdn.buildtheearth.net/uploads/401f90fb89d8349935cbf8a46d67604c36cf283be6edabe4892a6bac159fcf17","credit":"phattiel"},"3":{"url":"https://cdn.buildtheearth.net/uploads/4bcfe6a2e29fce8c7e572c4a4a70f9e8acaf6390d9c5478cded090eeb80a578b","credit":"av1ks"},"4":{"url":"https://cdn.buildtheearth.net/uploads/4bcfe6a2e29fce8c7e572c4a4a70f9e8acaf6390d9c5478cded090eeb80a578b","credit":"richtigerichtung, norwod and thatsjustlukas"},"5":{"url":"https://cdn.buildtheearth.net/uploads/21ca3ee59b381b30c47d05f68dd33c2da365c0905952e1c0b4146030af6ff09d","credit":"davixdevelop, magix92, pineapplestrix, adi1203"},"logo":{"url":"https://cdn.buildtheearth.net/uploads/553cee2de3cb651ccbe6c5405e746bfb57926fe8adf97d1d6ed708d7815f0485","credit":null}} \ No newline at end of file diff --git a/overrides/config/fancymenu/assets/banners/main.png b/overrides/config/fancymenu/assets/banners/main.png deleted file mode 100644 index 0944da0..0000000 Binary files a/overrides/config/fancymenu/assets/banners/main.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/buildteams.json b/overrides/config/fancymenu/assets/buildteams.json deleted file mode 100644 index 1ecde2f..0000000 --- a/overrides/config/fancymenu/assets/buildteams.json +++ /dev/null @@ -1,260 +0,0 @@ -{ - "43c98aab-e2d1-4a78-8c91-1a3218839e0d": { - "name": "BTE New York City", - "ip": "nyc.buildtheearth.net", - "version": "1.21.10", - "invite": "https://discord.gg/nMJMMBR" - }, - "191c58d7-92ca-4c59-8227-e712f62d8b17": { - "name": "BTE USA", - "ip": "nabte.net", - "version": "1.21.10", - "invite": "https://discord.gg/TrKHFDWzhT" - }, - "374b0e08-9ef5-4d1c-9a5c-3dc204d9fd96": { - "name": "Build The Earth Germany", - "ip": "bte-germany.de", - "version": "1.21.10", - "invite": "https://discord.gg/btegermany" - }, - "b93d267b-625a-449e-88d4-8e64fcb8634e": { - "name": "TeamCIS | СНГ", - "ip": "buildtheearth.ru", - "version": "1.21.4", - "invite": "https://discord.gg/hwkhefs" - }, - "711a87b4-53cb-4abd-8097-a63b18c56ffe": { - "name": "Build New Jersey", - "ip": "hub.andromedacraft.com", - "version": "1.21.10", - "invite": "https://discord.gg/TQmUQZt" - }, - "3c0a3c13-e0aa-416b-adcb-c632b4f29012": { - "name": "Nordic + Baltic", - "ip": "nordicbalticbte.net", - "version": "1.21.10", - "invite": "https://discord.gg/bte-nordic-baltic-692331531456479332" - }, - "3ab140f7-d7f7-451b-87cd-ce988e5f82fa": { - "name": "Alps BTE (AT/CH/LI)", - "ip": "mc.alps-bte.com", - "version": "1.21.10", - "invite": "https://discord.gg/vgkspay" - }, - "8cb65869-e5e0-45da-b214-eb561eae35dc": { - "name": "Build Benelux", - "ip": "bnlx.buildtheearth.net", - "version": "1.21.11", - "invite": "https://discord.gg/YCSCjrAkHc" - }, - "5f8167a6-db2c-487b-adc1-661699dcdf69": { - "name": "BTE Canada", - "ip": "btecanada.net", - "version": "1.21.10", - "invite": "https://discord.com/servers/buildtheearth-net-690908396404080650" - }, - "1a012c0f-55b9-43f6-bfb0-f25ca2ae2d14": { - "name": "Build Iberia", - "ip": "ib.buildtheearth.net", - "version": "1.21.11", - "invite": "https://discord.gg/a8PF9sTfqF" - }, - "4a625095-2bdd-44fb-afea-7c893b5b75ce": { - "name": "Build The Earth Italia (1:1)", - "ip": "mc.bteitalia.it", - "version": "1.21.10", - "invite": "https://discord.gg/dMahHCH" - }, - "12c12ef5-ef0b-4e36-ab8f-e54521b0f060": { - "name": "Build the UK", - "ip": "btuk.org", - "version": "1.21.10", - "invite": "https://discord.gg/2k2hM3f" - }, - "b50fd1ac-3956-413e-bf12-90fb9fcf4f81": { - "name": "BTE Theme Parks", - "ip": "parks.buildtheearth.net", - "version": "1.21.11", - "invite": "https://discord.gg/544kmNQ" - }, - "42364012-3ce6-4a22-9598-1ff9774cf59c": { - "name": "BTE Team Czechoslovakia", - "ip": "czsk.buildtheearth.net", - "version": "1.21.10", - "invite": "https://discord.gg/vv8Qaew5wQ" - }, - "99f4eac0-825e-409c-9057-766234815295": { - "name": "BTE Poland", - "ip": "bte.mhsv.pl", - "version": "1.21.11", - "invite": "https://discord.gg/a6cbfnZxTv" - }, - "c69ad90e-5d43-4393-8fa6-b99bc6c1e2b6": { - "name": "BTE France", - "ip": "btefrance.fr", - "version": "1.21.10", - "invite": "https://discord.gg/S8RuuqP" - }, - "74459dfd-3fc8-4b6e-97eb-60f5aa6e12cc": { - "name": "Oceania Build Team", - "ip": "hub.bteoce.com", - "version": "1.21.11", - "invite": "https://discord.gg/enk8kJ3" - }, - "5e1c33ae-8c25-459e-9d88-c42a73ebcf18": { - "name": "Build The Earth Turkey", - "ip": "bteturkey.net", - "version": "1.21.11", - "invite": "https://discord.gg/GJm2B9h" - }, - "98013a41-915d-4181-9d3b-12a75f933c50": { - "name": "BTE ASEAN", - "ip": "asean.buildtheearth.net", - "version": "1.21.11", - "invite": "https://discord.gg/DNwnKmkQpw" - }, - "d9bafd64-31e9-4952-bc8a-2023060d7011": { - "name": "BTE Brasil", - "ip": "buildtheearth.net.br", - "version": "1.21.8", - "invite": "https://discord.gg/PXMv8wEB4M" - }, - "43a2b9fc-86e8-46d4-b353-bd1239d06120": { - "name": "Build The Earth- Republic of Ireland", - "ip": "mc.bteireland.ie", - "version": "1.21.4", - "invite": "https://discord.gg/bnMCXrERfN" - }, - "9f7c16c9-b9b8-4b05-9314-0b315faa32f2": { - "name": "BTE Hong Kong-Macau", - "ip": "play.btehkmu.com", - "version": "1.21.10", - "invite": "https://discord.gg/rUuKaNu" - }, - "080adc4f-4b34-4108-bf97-9e36a2c50d61": { - "name": "-", - "ip": "-", - "version": "-", - "invite": "https://discord.gg/" - }, - "9e40ca7c-c7c4-44a2-a295-db58203a683d": { - "name": "BuildTheEarth Chile", - "ip": "bteconosur.com", - "version": "1.12.2", - "invite": "https://discord.gg/Q5Q9nw5ux2" - }, - "1324b5d7-a9d9-4e27-ad46-a9f3de205751": { - "name": "Africa Rebuilt", - "ip": "afr.buildtheearth.net", - "version": "1.21.10", - "invite": "https://discord.gg/qcjqenDfjC" - }, - "04786b5c-edd6-447a-bf76-96a6f6a11be7": { - "name": "BTE Middle East", - "ip": "me.buildtheearth.net", - "version": "1.21.11", - "invite": "https://discord.gg/rkrpeuc" - }, - "dc54af1d-978c-4716-bd69-4ede555e30bc": { - "name": "BTE Japan", - "ip": "bte-japan.xtremcraft.fr:12013", - "version": "1.21.10", - "invite": "https://discord.gg/pExkqKVMJn" - }, - "9d362859-7625-4a8d-ac34-186936a26b4f": { - "name": "BTE Mexico & Central America", - "ip": "btemexca.net", - "version": "1.21.11", - "invite": "https://discord.gg/mseJqbc" - }, - "7d32dcac-f776-448d-ac2c-dd41e457c770": { - "name": "BTE Argentina", - "ip": "bteconosur.com", - "version": "1.21.10", - "invite": "https://discord.gg/csbK2SBHY5" - }, - "9b14b705-dc47-4e16-8cb0-bdb61b4ef811": { - "name": "Build Team Hungary", - "ip": "hun.buildtheearth.net", - "version": "1.21.7", - "invite": "https://discord.gg/fUxBGMN" - }, - "706b14b4-8fe4-4467-b7ff-65563a3c0d7e": { - "name": "BTE Balkans", - "ip": "mc.btebalkans.com", - "version": "1.21.8", - "invite": "https://discord.gg/fBAfcyg" - }, - "fbda5d25-6ff0-485f-958f-a0d17c890783": { - "name": "BTE North Latin America", - "ip": "btenla.net", - "version": "1.12.2", - "invite": "https://discord.gg/HP4GHRCwvv" - }, - "e17d8750-7318-4c7b-83b0-388707e21025": { - "name": "BTE Ukraine", - "ip": "bteukraine.com", - "version": "1.21.4", - "invite": "https://discord.gg/J6BnZyQjsx" - }, - "fed954c3-5900-4108-95d3-7dceb743be4a": { - "name": "BTE Korea", - "ip": "buildtheearth.asia", - "version": "1.21.4", - "invite": "https://discord.gg/HfhDdkhCb8" - }, - "5e6213e8-8e86-4c44-846d-ee712129ab7c": { - "name": "BTE Israel", - "ip": "buildisrael.es", - "version": "1.21.10", - "invite": "https://discord.com/invite/pGSxezp" - }, - "59fabf23-137c-4ef2-a2ec-d4a115f4819b": { - "name": "BuildTheEarth: Perú", - "ip": "bteconosur.com", - "version": "1.12.2", - "invite": "https://discord.gg/sfmXJB9" - }, - "5a6ff0ad-845e-4708-b954-4872825525cf": { - "name": "BuildTheEarth South Asia", - "ip": "in.buildtheearth.net", - "version": "1.12.2", - "invite": "https://discord.gg/baEF7fK" - }, - "811fc515-86db-4920-90ba-2fa7a9015d9c": { - "name": "BTE Mainland China", - "ip": "btechina.oddblox.net", - "version": "1.21.8", - "invite": "https://discord.gg/MFfWWYCx4F" - }, - "3c099632-31d1-4eaa-b735-0b27fae2b234": { - "name": "BTE Taiwan", - "ip": "mctw.in", - "version": "1.21.11", - "invite": "https://discord.gg/Ueqj8yr" - }, - "0ca39509-4fb9-4c41-a037-2c138b7cfaff": { - "name": "Build The Earth Paraguay + Uruguay ", - "ip": "bteconosur.com", - "version": "1.12.2", - "invite": "https://discord.gg/3gZJmu6" - }, - "c32c7f71-91ec-49b0-b111-918928505309": { - "name": "BuildTheEarth: Bolivia", - "ip": "bteconosur.com", - "version": "1.21.10", - "invite": "https://discord.gg/ZxPazZ6w65" - }, - "c053dcb0-9269-40a3-83ff-6f4db74be1dd": { - "name": "Military Builders", - "ip": "buildtheearth.net", - "version": "1.21.10", - "invite": "https://discord.gg/UtRmY3B" - }, - "558820c6-ce4f-4281-9e02-95779d4edb40": { - "name": "Administrative Team", - "ip": "buildtheearth.net", - "version": "1.21.10", - "invite": "https://discord.gg/a5umxwq6gw" - } -} diff --git a/overrides/config/fancymenu/assets/continue.png b/overrides/config/fancymenu/assets/continue.png deleted file mode 100644 index 1398900..0000000 Binary files a/overrides/config/fancymenu/assets/continue.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/icons/discord.png b/overrides/config/fancymenu/assets/icons/discord.png deleted file mode 100644 index 3c6f71a..0000000 Binary files a/overrides/config/fancymenu/assets/icons/discord.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/icons/proxy.jpg b/overrides/config/fancymenu/assets/icons/proxy.jpg deleted file mode 100644 index 6bf54d8..0000000 Binary files a/overrides/config/fancymenu/assets/icons/proxy.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/intro.fma b/overrides/config/fancymenu/assets/intro.fma deleted file mode 100644 index c376c67..0000000 Binary files a/overrides/config/fancymenu/assets/intro.fma and /dev/null differ diff --git a/overrides/config/fancymenu/assets/intro/build_regions_map.png b/overrides/config/fancymenu/assets/intro/build_regions_map.png deleted file mode 100644 index 8a50723..0000000 Binary files a/overrides/config/fancymenu/assets/intro/build_regions_map.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/intro/projection.png b/overrides/config/fancymenu/assets/intro/projection.png deleted file mode 100644 index 858a1ee..0000000 Binary files a/overrides/config/fancymenu/assets/intro/projection.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/introduction.json b/overrides/config/fancymenu/assets/introduction.json deleted file mode 100644 index 40c6af8..0000000 --- a/overrides/config/fancymenu/assets/introduction.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "content": [ - "### **Welcome to BuildTheEarth! 🌎**%n%We are the go-to community for bringing real-life places to Minecraft, 1:1! This modpack contains *all* the necessary tools and info needed to explore or contribute to this project!%n%%n%Before starting to use this modpack, there are some things you should know about this project.%n%%n%Click *Next* to continue.", - "### **Unit of Measurement 📏**%n%%n%In BuildTheEarth (BTE), 1 meter in real life = 1 block in Minecraft.%n%- If it is in decimal, round it to the nearest number. (1.76 ≈ 2)%n%![Scale](config/fancymenu/assets/intro/scale.png)", - "### **Map Projection 🧭**%n%%n%The world is round, but Minecraft is flat. This results in distortion.%n%We cannot fix this, but we can reduce its effects.%n%%n%So we have to use a special map projection called *Dymaxion Projection*, which looks different from regular maps. Scroll below to view it.%n%%n%![Projection](config/fancymenu/assets/intro/projection.png)%n%%n%> Each color band adds 0.1 to the distortion. First red band: 1.1 Blocks : 1 meter.", - "### **Build Regions 🔧**%n%%n%As the world is very big, we have to divide it by regions.%n%This allows for easier management. Sometimes we call them Build Teams.%n%%n%Each Build Region consists of one or more servers, mananged by staffs. They may have different rules and standards for building, but the same scale and projection is still used.%n%%n%For example, Scotland is under BTE UK, Thailand is under BTE ASEAN, Egypt is under BTE Africa, etc.", - "### **Build Regions 🔧**%n%%n%A map of all regions can viewed below.%n%This modpack contains the server ips of all Build Regions with a map GUI.%n%%n%![Projection](config/fancymenu/assets/intro/build_regions_map.png)%n%%n%> Some countries may be grouped together for efficiency, so don't be suprised to see Czech Republic and Slovakia combined, or the whole of Africa under 1 Build Region.", - "### **Contribution 🤝**%n%%n%We are always in need of Builders to help out!%n%All Build Regions have their ways for you to apply for one.%n%You can choose to work by yourself or with your friends in the Build Region.%n%%n%It's okay if you don't have the building skills, we are happy to assist.%n%%n%There are also plenty of other ways to contribute, such as taking photo references of buildings which are difficult to view in Google Maps.%n%%n%The next page briefly describes the way we build.", - "### **How buildings are made 🏡**%n%%n%As BTE is based of an established projection and scale, we can make use of map services such as Google Maps to get the corners of a building and place them into Minecraft.%n%%n%Don't worry if you don't understand, many Build Regions have their own hands on tutorial for you to complete.%n%%n%To do this, we have to do the following:%n%- Step 1: Open Google Maps and view a building we want to build.%n%- Step 2: Right click on the corner of the building and copy its coordinates. An example of coordinates is *1.3622, 103.9538*.%n%- Step 3: Go into Minecraft and type in /tpll, followed by the coordinates by pasting it. Following the example, */tpll 1.3622, 103.9538*.%n%- Step 4: Press enter. You will teleported to the Minecraft coordinate of that building corner. Place a block to indicate it.%n%%n%> The /tpll command only works in Build Region Servers. You can only build for BTE in these servers, use of singleplayer is highly discouraged.", - "### **Discord 💬**%n%%n%We mainly have our discussions and chats on Discord, so we highly recommend you to join in! Feel free to ask any questions in #support. %n%%n%Showcases of builds are ocassionally posted, and many Build Regions have their Minecraft chats connected as well. Some Builder applications also require you to join the Discord servers.%n%%n%To get started, you can join the main BTE discord. Enjoy exploring or building!%n%%n%[Discord link](https://discord.com/invite/buildtheearth-net-690908396404080650)" - ], - "length": "7" -} \ No newline at end of file diff --git a/overrides/config/fancymenu/assets/maps/map-africa.jpg b/overrides/config/fancymenu/assets/maps/map-africa.jpg deleted file mode 100644 index f086b58..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-africa.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map-asia.jpg b/overrides/config/fancymenu/assets/maps/map-asia.jpg deleted file mode 100644 index e170f18..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-asia.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map-australia.jpg b/overrides/config/fancymenu/assets/maps/map-australia.jpg deleted file mode 100644 index 8ee39e3..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-australia.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map-bg.jpg b/overrides/config/fancymenu/assets/maps/map-bg.jpg deleted file mode 100644 index 8172ad2..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-bg.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map-europe.jpg b/overrides/config/fancymenu/assets/maps/map-europe.jpg deleted file mode 100644 index a38e5b8..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-europe.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map-north-america.jpg b/overrides/config/fancymenu/assets/maps/map-north-america.jpg deleted file mode 100644 index 29cf726..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-north-america.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map-south-america.jpg b/overrides/config/fancymenu/assets/maps/map-south-america.jpg deleted file mode 100644 index fbba9d3..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map-south-america.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/maps/map.jpg b/overrides/config/fancymenu/assets/maps/map.jpg deleted file mode 100644 index 7b84359..0000000 Binary files a/overrides/config/fancymenu/assets/maps/map.jpg and /dev/null differ diff --git a/overrides/config/fancymenu/assets/multiplayer.png b/overrides/config/fancymenu/assets/multiplayer.png deleted file mode 100644 index 037f257..0000000 Binary files a/overrides/config/fancymenu/assets/multiplayer.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/singleplayer.png b/overrides/config/fancymenu/assets/singleplayer.png deleted file mode 100644 index 5c9f411..0000000 Binary files a/overrides/config/fancymenu/assets/singleplayer.png and /dev/null differ diff --git a/overrides/config/fancymenu/assets/test.json b/overrides/config/fancymenu/assets/test.json deleted file mode 100644 index e69de29..0000000 diff --git a/overrides/config/fancymenu/assets/tips.json b/overrides/config/fancymenu/assets/tips.json deleted file mode 100644 index 1b4bba6..0000000 --- a/overrides/config/fancymenu/assets/tips.json +++ /dev/null @@ -1,17 +0,0 @@ -[ - "Most Build Regions use the /warp command to explore around!", - "To select polygonal selections in WorldEdit, use //sel poly.", - "You can reference the details of buildings in Google Street View.", - "Estimate the height of things by referencing a person's height.", - "You can use the /hdb command for custom heads to help with details.", - "The MCRGB mod allows you to select blocks matching the closest color.", - "If you have Discord, the CraftPresence mod automatically updates your status.", - "Press 'M' to view the world map.", - "Press 'F6' for an out of body experience!", - "If you have any queries, feel free to ask in the main BTE discord #support channel.", - "To join a Build Region as a builder, you need to join their Discord server first.", - "Some Build Regions might take 2-3 minutes to start up before entering.", - "In BuildTheEarth, we generally do not build interiors, unless its open to public.", - "You can use Google Earth to draw outlines and import into Minecraft with TerraSketch.", - "There are other ways to contribute to BTE, such as taking photos or finding site plans." -] \ No newline at end of file diff --git a/overrides/config/fancymenu/audio_element_controller_metas.json b/overrides/config/fancymenu/audio_element_controller_metas.json deleted file mode 100644 index e69de29..0000000 diff --git a/overrides/config/fancymenu/customizablemenus.txt b/overrides/config/fancymenu/customizablemenus.txt deleted file mode 100644 index fc6080a..0000000 --- a/overrides/config/fancymenu/customizablemenus.txt +++ /dev/null @@ -1,41 +0,0 @@ -type = customizablemenus - -net.minecraft.class_500 { -} - -net.minecraft.class_429 { -} - -net.minecraft.class_419 { -} - -net.minecraft.class_412 { -} - -de.keksuccino.drippyloadingscreen.customization.DrippyOverlayScreen { -} - -net.minecraft.class_526 { -} - -net.minecraft.class_525 { -} - -net.minecraft.class_424 { -} - -net.minecraft.class_3928 { -} - -net.minecraft.class_435 { -} - -com.terraformersmc.modmenu.gui.ModsScreen { -} - -net.minecraft.class_433 { -} - -net.minecraft.class_442 { -} - diff --git a/overrides/config/fancymenu/customization/bte_layout.txt b/overrides/config/fancymenu/customization/bte_layout.txt deleted file mode 100644 index 7a1834f..0000000 --- a/overrides/config/fancymenu/customization/bte_layout.txt +++ /dev/null @@ -1,63 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = bte - render_custom_elements_behind_vanilla = false - last_edited_time = 1727983140284 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:1cabdb4f-6ebf-4d38-bd0a-a903674f540f-1727983020406] = [groups:][instances:] -} - -menu_background { - image_path = [source:web]https://en.wikipedia.org/wiki/File:A_large_blank_world_map_with_oceans_marked_in_blue.PNG - slide = false - repeat_texture = 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 -} - -element { - button_element_executable_block_identifier = 4cb976fa-28db-484c-91c1-a573bbce696e-1727983126931 - [executable_block:4cb976fa-28db-484c-91c1-a573bbce696e-1727983126931][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = New Button - navigatable = true - element_type = custom_button - instance_identifier = 6e6037bd-0296-440b-8afe-7c4f1cf03ae6-1727983126931 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = mid-centered - x = -46 - y = -9 - width = 100 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 09ebbf8c-c580-4d7c-96a4-6d05cf92115c-1727983126931 - [loading_requirement_container_meta:09ebbf8c-c580-4d7c-96a4-6d05cf92115c-1727983126931] = [groups:][instances:] -} - diff --git a/overrides/config/fancymenu/customization/build-teams-africa_layout.txt b/overrides/config/fancymenu/customization/build-teams-africa_layout.txt deleted file mode 100644 index b61a35d..0000000 --- a/overrides/config/fancymenu/customization/build-teams-africa_layout.txt +++ /dev/null @@ -1,293 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-africa - render_custom_elements_behind_vanilla = false - last_edited_time = 1777737021759 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:e0240b9f-e3ab-4df8-9e23-482a469050ab-1777737016901] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = 81b20f3d-be9e-4529-a232-21563f51708e-1777736988328 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map-africa.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = 0b04b7a1-eb83-4900-8fa2-a891b30241b4-1728178037158 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = mid-centered - x = -100 - y = -115 - width = 201 - height = 230 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 1c57d191-c892-4b8c-a7cd-33e38ad493cf-1728178037158 - [loading_requirement_container_meta:1c57d191-c892-4b8c-a7cd-33e38ad493cf-1728178037158] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 419d3744-b01e-44a1-91b3-1f0820d7c435-1728178071212 - [executable_action_instance:655c0bb7-cd9f-4ed1-aebe-9da186e1a5f9-1728178092879][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['1324b5d7-a9d9-4e27-ad46-a9f3de205751']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:fc592350-846d-4143-ae9b-3652e7463405-1733629379306][action_type:set_variable] = current_server:1324b5d7-a9d9-4e27-ad46-a9f3de205751 - [executable_block:419d3744-b01e-44a1-91b3-1f0820d7c435-1728178071212][type:generic] = [executables:655c0bb7-cd9f-4ed1-aebe-9da186e1a5f9-1728178092879;fc592350-846d-4143-ae9b-3652e7463405-1733629379306;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['1324b5d7-a9d9-4e27-ad46-a9f3de205751']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['1324b5d7-a9d9-4e27-ad46-a9f3de205751']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Africa Rebuilt - navigatable = true - widget_active_state_requirement_container_identifier = beb3b4b6-5b1f-40ad-9237-0fde7c023f1f-1731819893685 - [loading_requirement_container_meta:beb3b4b6-5b1f-40ad-9237-0fde7c023f1f-1731819893685] = [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 = 82b47e92-cfa1-47fc-a5b0-4966ba8491fa-1728178071212 - 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 = 1168 - auto_sizing_base_screen_height = 658 - sticky_anchor = false - anchor_point = mid-centered - x = -50 - y = -10 - width = 100 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 40cc89da-2d1d-440c-bd47-5c4c589858ba-1728178071212 - [loading_requirement_container_meta:40cc89da-2d1d-440c-bd47-5c4c589858ba-1728178071212] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['1324b5d7-a9d9-4e27-ad46-a9f3de205751']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 1ba46f6e-96dd-4178-9819-902c782058ce-1728178015177 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 82b47e92-cfa1-47fc-a5b0-4966ba8491fa-1728178071212 - x = 78 - y = 14 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:602b4029-cda1-4410-82ae-6e052074204a-1728047374842][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:602b4029-cda1-4410-82ae-6e052074204a-1728047374842;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = bab78516-46d2-4884-adc5-e5f0553aaeca-1731819893685 - [loading_requirement_container_meta:bab78516-46d2-4884-adc5-e5f0553aaeca-1731819893685] = [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 = 387485ef-052f-489f-8019-43ebdd14fabe-1728178715795 - 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 = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/build-teams-asia_layout.txt b/overrides/config/fancymenu/customization/build-teams-asia_layout.txt deleted file mode 100644 index e2b286d..0000000 --- a/overrides/config/fancymenu/customization/build-teams-asia_layout.txt +++ /dev/null @@ -1,1397 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-asia - render_custom_elements_behind_vanilla = false - last_edited_time = 1777738377891 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:dc33eca4-a1ac-4046-b8e7-0fbb95a6c617-1777738370777] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = 1804de63-3d78-4561-bffe-aead62edc0ee-1777737137393 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map-asia.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = abd11b3e-35c3-49a1-a4d6-c7ff3936f16d-1728044529647 - 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 = 1086 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -152 - y = -119 - width = 305 - height = 238 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 886ea07d-e23e-4412-a605-13e2ea72d75e-1728044529647 - [loading_requirement_container_meta:886ea07d-e23e-4412-a605-13e2ea72d75e-1728044529647] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:602b4029-cda1-4410-82ae-6e052074204a-1728047374842][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:602b4029-cda1-4410-82ae-6e052074204a-1728047374842;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = a03ea8d5-086f-4f3b-8355-e20cd183b0c4-1731327150014 - [loading_requirement_container_meta:a03ea8d5-086f-4f3b-8355-e20cd183b0c4-1731327150014] = [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 = fd8e0cbc-e05b-42b1-8df4-a87d99388375-1728047331658 - 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 = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:6a9e2769-b2cd-467f-9a54-d346ed0eb053-1728049838180][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['98013a41-915d-4181-9d3b-12a75f933c50']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:81172396-32bb-4e82-b4c7-855159498236-1733328518684][action_type:set_variable] = current_server:98013a41-915d-4181-9d3b-12a75f933c50 - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:6a9e2769-b2cd-467f-9a54-d346ed0eb053-1728049838180;81172396-32bb-4e82-b4c7-855159498236-1733328518684;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['98013a41-915d-4181-9d3b-12a75f933c50']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['98013a41-915d-4181-9d3b-12a75f933c50']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = ASEAN - navigatable = true - widget_active_state_requirement_container_identifier = 3f1f0ea9-c350-4849-9e04-9052caa8618d-1731327150014 - [loading_requirement_container_meta:3f1f0ea9-c350-4849-9e04-9052caa8618d-1731327150014] = [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 = e84a90ed-3130-43af-8129-a276d8e5dac8-1728047516067 - 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 = 1086 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = 44 - y = 64 - width = 44 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:e7ae6ed7-3914-4e7f-9c83-be243cbc8672-1728128309585][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['811fc515-86db-4920-90ba-2fa7a9015d9c']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:ef01f66a-c3a7-4e81-ba16-430fc6677380-1733458124833][action_type:set_variable] = current_server:811fc515-86db-4920-90ba-2fa7a9015d9c - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:e7ae6ed7-3914-4e7f-9c83-be243cbc8672-1728128309585;ef01f66a-c3a7-4e81-ba16-430fc6677380-1733458124833;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['811fc515-86db-4920-90ba-2fa7a9015d9c']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['811fc515-86db-4920-90ba-2fa7a9015d9c']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = China - navigatable = true - widget_active_state_requirement_container_identifier = 0cd090f1-8fc3-48ac-becf-4975b62b4e46-1731327150014 - [loading_requirement_container_meta:0cd090f1-8fc3-48ac-becf-4975b62b4e46-1731327150014] = [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 = 97207b36-b37c-439b-89c7-0c1ca51bf1ef-1728047556275 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = 0 - y = -21 - width = 45 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:b0e82d11-359b-4933-aab9-87c7c4650c76-1728050787367][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['5a6ff0ad-845e-4708-b954-4872825525cf']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:e6a0b87b-d6ac-4a6a-9e8d-3720b9ec392a-1733458146648][action_type:set_variable] = current_server:5a6ff0ad-845e-4708-b954-4872825525cf - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:b0e82d11-359b-4933-aab9-87c7c4650c76-1728050787367;e6a0b87b-d6ac-4a6a-9e8d-3720b9ec392a-1733458146648;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['5a6ff0ad-845e-4708-b954-4872825525cf']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['5a6ff0ad-845e-4708-b954-4872825525cf']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = South Asia - navigatable = true - widget_active_state_requirement_container_identifier = 8fec355b-5a17-46ac-abaa-8edfa11f4687-1731327150014 - [loading_requirement_container_meta:8fec355b-5a17-46ac-abaa-8edfa11f4687-1731327150014] = [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 = 6102e361-ca49-4a36-a830-6245a8611d5b-1728047556601 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = -71 - y = 10 - width = 66 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:80d79d3f-3050-4621-a76f-aad348d9e15a-1728050829385][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['04786b5c-edd6-447a-bf76-96a6f6a11be7']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:e449bd4e-c3bb-4bb3-bece-b68fd8867368-1733458170478][action_type:set_variable] = current_server:04786b5c-edd6-447a-bf76-96a6f6a11be7 - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:80d79d3f-3050-4621-a76f-aad348d9e15a-1728050829385;e449bd4e-c3bb-4bb3-bece-b68fd8867368-1733458170478;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['04786b5c-edd6-447a-bf76-96a6f6a11be7']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['04786b5c-edd6-447a-bf76-96a6f6a11be7']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Middle East - navigatable = true - widget_active_state_requirement_container_identifier = 76edb541-1fdd-4cd0-b52a-685d62eae8a9-1731327150014 - [loading_requirement_container_meta:76edb541-1fdd-4cd0-b52a-685d62eae8a9-1731327150014] = [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 = 0459be5e-3ef3-403c-a989-3cbdcc5483c0-1728047556862 - 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 = 1214 - auto_sizing_base_screen_height = 664 - sticky_anchor = false - anchor_point = mid-centered - x = -137 - y = -23 - width = 70 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:e7e7a7f9-95eb-40c4-bc06-dfebc2dc7f41-1728049904696][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['9f7c16c9-b9b8-4b05-9314-0b315faa32f2']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:4eaac83b-e130-4e8c-b15a-b2242059be7b-1733458033184][action_type:set_variable] = current_server:9f7c16c9-b9b8-4b05-9314-0b315faa32f2 - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:e7e7a7f9-95eb-40c4-bc06-dfebc2dc7f41-1728049904696;4eaac83b-e130-4e8c-b15a-b2242059be7b-1733458033184;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['9f7c16c9-b9b8-4b05-9314-0b315faa32f2']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['9f7c16c9-b9b8-4b05-9314-0b315faa32f2']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = HK-MU - navigatable = true - widget_active_state_requirement_container_identifier = e3fef332-6690-446f-87c8-f2ff879b8f01-1731327150014 - [loading_requirement_container_meta:e3fef332-6690-446f-87c8-f2ff879b8f01-1731327150014] = [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 = de1a30df-bb5b-4d68-8bb0-2d1a7fbfb11d-1728047618901 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = 7 - y = 16 - width = 45 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:4a772e84-9e9a-492d-ba5a-89b307be00a5-1728050295687][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['3c099632-31d1-4eaa-b735-0b27fae2b234']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:c9376ddf-6892-4cfa-8daf-f6518681deb5-1733328953328][action_type:set_variable] = current_server:3c099632-31d1-4eaa-b735-0b27fae2b234 - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:4a772e84-9e9a-492d-ba5a-89b307be00a5-1728050295687;c9376ddf-6892-4cfa-8daf-f6518681deb5-1733328953328;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['3c099632-31d1-4eaa-b735-0b27fae2b234']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['3c099632-31d1-4eaa-b735-0b27fae2b234']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Taiwan - navigatable = true - widget_active_state_requirement_container_identifier = 3d791f47-2450-4c5b-a971-898363e529b7-1731327150015 - [loading_requirement_container_meta:3d791f47-2450-4c5b-a971-898363e529b7-1731327150015] = [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 = 52333b37-8082-490f-bf13-0b78ab87991c-1728047619138 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = 57 - y = 5 - width = 51 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:d55940a3-8e84-4f2a-8084-dc31ea973460-1728050023861][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['dc54af1d-978c-4716-bd69-4ede555e30bc']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:731f8b6f-092e-4c28-b933-301d190bf03a-1733458071720][action_type:set_variable] = current_server:dc54af1d-978c-4716-bd69-4ede555e30bc - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:d55940a3-8e84-4f2a-8084-dc31ea973460-1728050023861;731f8b6f-092e-4c28-b933-301d190bf03a-1733458071720;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['dc54af1d-978c-4716-bd69-4ede555e30bc']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['dc54af1d-978c-4716-bd69-4ede555e30bc']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Japan - navigatable = true - widget_active_state_requirement_container_identifier = 9ed094f7-91df-4986-bc8f-34c5ee840762-1731327150015 - [loading_requirement_container_meta:9ed094f7-91df-4986-bc8f-34c5ee840762-1731327150015] = [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 = 2f2d6c6a-fc0f-48b5-bcf7-dd4b251483c8-1728047620288 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = 65 - y = -25 - width = 48 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067 - [executable_action_instance:f27d194f-ed00-42fc-8f4b-777bfba20ad6-1728128377900][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['fed954c3-5900-4108-95d3-7dceb743be4a']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:bc26a7be-d3ce-469d-99cf-8d635a09818c-1733458097168][action_type:set_variable] = current_server:fed954c3-5900-4108-95d3-7dceb743be4a - [executable_block:ba0bd0bd-19ac-464e-8532-382fd70667dc-1728047516067][type:generic] = [executables:f27d194f-ed00-42fc-8f4b-777bfba20ad6-1728128377900;bc26a7be-d3ce-469d-99cf-8d635a09818c-1733458097168;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['fed954c3-5900-4108-95d3-7dceb743be4a']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['fed954c3-5900-4108-95d3-7dceb743be4a']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Korea - navigatable = true - widget_active_state_requirement_container_identifier = 10aceeea-bf41-446b-9c81-7baab7fc65d2-1731327150015 - [loading_requirement_container_meta:10aceeea-bf41-446b-9c81-7baab7fc65d2-1731327150015] = [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 = 1772c1cc-3af5-4886-8c02-c7e1b5bda2f4-1728047620411 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = 29 - y = -53 - width = 46 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067 - [loading_requirement_container_meta:0cca2c61-84e9-4493-a569-9f665aa06063-1728047516067] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['98013a41-915d-4181-9d3b-12a75f933c50']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 459ebdab-61b3-46cb-9179-2556349c1ed2-1728131718698 - 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 = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = element - anchor_point_element = e84a90ed-3130-43af-8129-a276d8e5dac8-1728047516067 - x = 22 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['04786b5c-edd6-447a-bf76-96a6f6a11be7']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 8547bcf1-38eb-4d9c-88d9-82896b766701-1728132051701 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0459be5e-3ef3-403c-a989-3cbdcc5483c0-1728047556862 - x = 48 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['5a6ff0ad-845e-4708-b954-4872825525cf']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 649c0d4d-bf8f-4a24-8d21-d2239aef621a-1728132051917 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = 6102e361-ca49-4a36-a830-6245a8611d5b-1728047556601 - x = 44 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['9f7c16c9-b9b8-4b05-9314-0b315faa32f2']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 08b5cd1c-55c2-4655-93bc-d040be05edcf-1728132241466 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = de1a30df-bb5b-4d68-8bb0-2d1a7fbfb11d-1728047618901 - x = 23 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['811fc515-86db-4920-90ba-2fa7a9015d9c']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 162d22e6-78d1-4812-874d-84f7134a0c20-1728132241761 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = 97207b36-b37c-439b-89c7-0c1ca51bf1ef-1728047556275 - x = 23 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['fed954c3-5900-4108-95d3-7dceb743be4a']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 7a3ecd7f-ee6e-432d-8ddd-864c778386d3-1728132242067 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = 1772c1cc-3af5-4886-8c02-c7e1b5bda2f4-1728047620411 - x = 24 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['dc54af1d-978c-4716-bd69-4ede555e30bc']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 46de3edc-057f-44c7-9640-c02c4212011c-1728132242315 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = 2f2d6c6a-fc0f-48b5-bcf7-dd4b251483c8-1728047620288 - x = 26 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['3c099632-31d1-4eaa-b735-0b27fae2b234']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = c2b89d19-d9f0-4264-926f-8c319d7a93f8-1728132242523 - 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 = 1072 - auto_sizing_base_screen_height = 628 - sticky_anchor = false - anchor_point = element - anchor_point_element = 52333b37-8082-490f-bf13-0b78ab87991c-1728047619138 - x = 29 - y = 15 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:0378f02b-02fc-4a8c-b453-41860c41e26c-1728038731421][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:c504f0b5-68e3-402c-b2ce-5ce2fd8020e8-1733576856626][action_type:set_variable] = current_server:b93d267b-625a-449e-88d4-8e64fcb8634e - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:0378f02b-02fc-4a8c-b453-41860c41e26c-1728038731421;c504f0b5-68e3-402c-b2ce-5ce2fd8020e8-1733576856626;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = TeamCIS - navigatable = true - widget_active_state_requirement_container_identifier = ca9fa622-0f9b-4a78-80d2-915034f23e8d-1731821326583 - [loading_requirement_container_meta:ca9fa622-0f9b-4a78-80d2-915034f23e8d-1731821326583] = [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 = 77372356-4e02-4f7e-a175-933f54eddc2f-1733576793336 - 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 = 1214 - auto_sizing_base_screen_height = 664 - sticky_anchor = false - anchor_point = mid-centered - x = -99 - y = -81 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = d1e42134-7eba-4866-8d6d-a45417da8a4a-1733576822378 - 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 = 1214 - auto_sizing_base_screen_height = 664 - sticky_anchor = false - anchor_point = element - anchor_point_element = 77372356-4e02-4f7e-a175-933f54eddc2f-1733576793336 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/build-teams-australia_layout.txt b/overrides/config/fancymenu/customization/build-teams-australia_layout.txt deleted file mode 100644 index d7031a4..0000000 --- a/overrides/config/fancymenu/customization/build-teams-australia_layout.txt +++ /dev/null @@ -1,293 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-australia - render_custom_elements_behind_vanilla = false - last_edited_time = 1777737137381 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:081936d1-f551-4617-944c-482fbde0deb1-1777737059387] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = 2fc8f90c-2835-4e9b-af27-a9a11cfcb7f6-1777737050113 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map-australia.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = e8cb4675-1d76-4079-b755-00e697c87b28-1728177334663 - 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 = -127 - y = -115 - width = 254 - height = 231 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 146d03f9-0782-43a0-ae1a-db4e8284d6bc-1728177334663 - [loading_requirement_container_meta:146d03f9-0782-43a0-ae1a-db4e8284d6bc-1728177334663] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b07de80e-3d45-4f13-9653-19dfb6b2d643-1728177363551 - [executable_action_instance:b916ce6c-827c-4dc0-9c9b-1da1af3d1ad5-1728177376488][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['74459dfd-3fc8-4b6e-97eb-60f5aa6e12cc']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:7f4644f3-0974-4cee-a9a8-b4b38e232e99-1733554124325][action_type:set_variable] = current_server:74459dfd-3fc8-4b6e-97eb-60f5aa6e12cc - [executable_block:b07de80e-3d45-4f13-9653-19dfb6b2d643-1728177363551][type:generic] = [executables:b916ce6c-827c-4dc0-9c9b-1da1af3d1ad5-1728177376488;7f4644f3-0974-4cee-a9a8-b4b38e232e99-1733554124325;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['74459dfd-3fc8-4b6e-97eb-60f5aa6e12cc']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['74459dfd-3fc8-4b6e-97eb-60f5aa6e12cc']['version']","source":"config/fancymenu/assets/buildteams.json"}}%n%%n% - label = Australia - navigatable = true - widget_active_state_requirement_container_identifier = 8cd8c7c7-7e40-4027-bf1f-32b9320f3bf6-1731819411929 - [loading_requirement_container_meta:8cd8c7c7-7e40-4027-bf1f-32b9320f3bf6-1731819411929] = [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 = f6c080c0-9af8-4608-9c97-b6272b4c033e-1728177363551 - 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 = 1442 - auto_sizing_base_screen_height = 784 - sticky_anchor = false - anchor_point = mid-centered - x = -29 - y = -10 - width = 59 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 40795390-9bf9-40aa-b57e-6faeccaa59aa-1728177363551 - [loading_requirement_container_meta:40795390-9bf9-40aa-b57e-6faeccaa59aa-1728177363551] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:602b4029-cda1-4410-82ae-6e052074204a-1728047374842][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:602b4029-cda1-4410-82ae-6e052074204a-1728047374842;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 1b37d819-9c38-4a0c-9884-939423effaef-1731819411929 - [loading_requirement_container_meta:1b37d819-9c38-4a0c-9884-939423effaef-1731819411929] = [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 = 2a274321-4fae-4641-b02c-e34dfd26334d-1728177479506 - 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 = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['74459dfd-3fc8-4b6e-97eb-60f5aa6e12cc']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 03edd83e-24ef-4046-b9b5-2fab4d987f03-1728177960034 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = f6c080c0-9af8-4608-9c97-b6272b4c033e-1728177363551 - x = 37 - y = 14 - width = 31 - height = 12 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698 - [loading_requirement_container_meta:02c4a300-0f92-4499-b27b-2bcc4c08b7b2-1728131718698] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/build-teams-europe_layout.txt b/overrides/config/fancymenu/customization/build-teams-europe_layout.txt deleted file mode 100644 index 4b9754c..0000000 --- a/overrides/config/fancymenu/customization/build-teams-europe_layout.txt +++ /dev/null @@ -1,2501 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-europe - render_custom_elements_behind_vanilla = false - last_edited_time = 1777736583759 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:60b350d7-e6e6-481b-8b53-d9193a16eb23-1777736550427] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = a2e5465b-e401-4da7-921c-205e1e572428-1777734834325 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map-europe.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = b36d4916-14df-4d72-878a-fc297c169721-1728033305070 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = mid-centered - x = -208 - y = -108 - width = 416 - height = 217 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 952488cd-344a-4a94-b0c3-9c809c1585a6-1728033305070 - [loading_requirement_container_meta:952488cd-344a-4a94-b0c3-9c809c1585a6-1728033305070] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:0f85cdb3-1c8c-4c6c-b951-1e9b025413be-1728038620033][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['374b0e08-9ef5-4d1c-9a5c-3dc204d9fd96']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:b3515c01-8c04-4a17-81d5-15ec83a02f61-1733580351415][action_type:set_variable] = current_server:374b0e08-9ef5-4d1c-9a5c-3dc204d9fd96 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:0f85cdb3-1c8c-4c6c-b951-1e9b025413be-1728038620033;b3515c01-8c04-4a17-81d5-15ec83a02f61-1733580351415;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['374b0e08-9ef5-4d1c-9a5c-3dc204d9fd96']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['374b0e08-9ef5-4d1c-9a5c-3dc204d9fd96']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Germany - navigatable = true - widget_active_state_requirement_container_identifier = ebe16fe7-b1b9-4234-815d-2963aed52dca-1731821326583 - [loading_requirement_container_meta:ebe16fe7-b1b9-4234-815d-2963aed52dca-1731821326583] = [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 = 6a91f5b1-5515-4cd4-bc33-27b65040309f-1728034016547 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -43 - y = -13 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:b86a2e82-a046-4fae-8289-27bdb2f66f37-1728116822667][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['c69ad90e-5d43-4393-8fa6-b99bc6c1e2b6']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:611b4945-4d8e-4c48-b38b-1738e255dfa4-1733580474532][action_type:set_variable] = current_server:c69ad90e-5d43-4393-8fa6-b99bc6c1e2b6 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:b86a2e82-a046-4fae-8289-27bdb2f66f37-1728116822667;611b4945-4d8e-4c48-b38b-1738e255dfa4-1733580474532;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['c69ad90e-5d43-4393-8fa6-b99bc6c1e2b6']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['c69ad90e-5d43-4393-8fa6-b99bc6c1e2b6']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = France - navigatable = true - widget_active_state_requirement_container_identifier = 47fe41de-cd56-4b98-b454-d053db0cd792-1731821326583 - [loading_requirement_container_meta:47fe41de-cd56-4b98-b454-d053db0cd792-1731821326583] = [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 = b73a30e2-dc12-4e39-8c10-fe9a8e3b3b09-1728034141384 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -105 - y = 12 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:dee6576c-eb4b-4ee8-b078-3e77ba31c5a8-1728149754517][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['3c0a3c13-e0aa-416b-adcb-c632b4f29012']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:a988b837-2101-481d-a160-1c280719595f-1733579982538][action_type:set_variable] = current_server:3c0a3c13-e0aa-416b-adcb-c632b4f29012 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:dee6576c-eb4b-4ee8-b078-3e77ba31c5a8-1728149754517;a988b837-2101-481d-a160-1c280719595f-1733579982538;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['3c0a3c13-e0aa-416b-adcb-c632b4f29012']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['3c0a3c13-e0aa-416b-adcb-c632b4f29012']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Nordic + Baltic - navigatable = true - widget_active_state_requirement_container_identifier = ea884911-9368-4734-8bde-f21209814f23-1731821326583 - [loading_requirement_container_meta:ea884911-9368-4734-8bde-f21209814f23-1731821326583] = [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 = a0fd8f0e-acd3-4543-a793-c130ed8fc35b-1728034143073 - 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 = 1082 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -37 - y = -75 - width = 87 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:384bfdfc-1977-4e35-8f95-03d44ba7d733-1728042696857][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['3ab140f7-d7f7-451b-87cd-ce988e5f82fa']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:3b84892d-44cf-4320-983b-c3fc8d54f91f-1733580330947][action_type:set_variable] = current_server:3ab140f7-d7f7-451b-87cd-ce988e5f82fa - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:384bfdfc-1977-4e35-8f95-03d44ba7d733-1728042696857;3b84892d-44cf-4320-983b-c3fc8d54f91f-1733580330947;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['3ab140f7-d7f7-451b-87cd-ce988e5f82fa']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['3ab140f7-d7f7-451b-87cd-ce988e5f82fa']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Alps BTE - navigatable = true - widget_active_state_requirement_container_identifier = 506673ae-dd25-487e-be7b-beb20520ef59-1731821326583 - [loading_requirement_container_meta:506673ae-dd25-487e-be7b-beb20520ef59-1731821326583] = [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 = 4f357fec-3826-49c2-ad21-7acca9101590-1728034143283 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -43 - y = 13 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:f5859289-dc79-4c16-b686-30eb3ae6ad5a-1728123902459][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['1a012c0f-55b9-43f6-bfb0-f25ca2ae2d14']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:92a9c361-ed85-4a59-9f36-f7356fb475ab-1733580497629][action_type:set_variable] = current_server:1a012c0f-55b9-43f6-bfb0-f25ca2ae2d14 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:f5859289-dc79-4c16-b686-30eb3ae6ad5a-1728123902459;92a9c361-ed85-4a59-9f36-f7356fb475ab-1733580497629;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['1a012c0f-55b9-43f6-bfb0-f25ca2ae2d14']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['1a012c0f-55b9-43f6-bfb0-f25ca2ae2d14']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Iberia - navigatable = true - widget_active_state_requirement_container_identifier = a493e3c7-75f5-4895-bdb0-23742ba19833-1731821326583 - [loading_requirement_container_meta:a493e3c7-75f5-4895-bdb0-23742ba19833-1731821326583] = [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 = 8b27990b-fbe0-4315-acea-e6a569fafd46-1728034143467 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -126 - y = 39 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:740e10a9-46d2-4eb0-b1c5-a3e82a6631e2-1728148004372][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['8cb65869-e5e0-45da-b214-eb561eae35dc']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:c320b84b-ca92-496a-aece-dfabd5611ac6-1733580454587][action_type:set_variable] = current_server:8cb65869-e5e0-45da-b214-eb561eae35dc - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:740e10a9-46d2-4eb0-b1c5-a3e82a6631e2-1728148004372;c320b84b-ca92-496a-aece-dfabd5611ac6-1733580454587;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['8cb65869-e5e0-45da-b214-eb561eae35dc']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['8cb65869-e5e0-45da-b214-eb561eae35dc']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Benelux - navigatable = true - widget_active_state_requirement_container_identifier = 0a16bbd0-c576-4e4d-b088-32b6aa33af90-1731821326583 - [loading_requirement_container_meta:0a16bbd0-c576-4e4d-b088-32b6aa33af90-1731821326583] = [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 = 4ca4d2c3-ff25-4f7c-be64-508a831acbf4-1728034244169 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -105 - y = -12 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:d2581c9d-6f08-41d8-9d6e-1ed6979e9c43-1728149307900][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['42364012-3ce6-4a22-9598-1ff9774cf59c']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:4c431100-8f97-45ce-ab6f-3c4267f4ca88-1733580006117][action_type:set_variable] = current_server:42364012-3ce6-4a22-9598-1ff9774cf59c - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:d2581c9d-6f08-41d8-9d6e-1ed6979e9c43-1728149307900;4c431100-8f97-45ce-ab6f-3c4267f4ca88-1733580006117;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['42364012-3ce6-4a22-9598-1ff9774cf59c']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['42364012-3ce6-4a22-9598-1ff9774cf59c']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Czechoslovakia - navigatable = true - widget_active_state_requirement_container_identifier = 58d40321-2ed3-437c-a19b-e9597a0a4fec-1731821326583 - [loading_requirement_container_meta:58d40321-2ed3-437c-a19b-e9597a0a4fec-1731821326583] = [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 = 293c6cba-466d-4e4b-9fea-c1fd4b9de80a-1728034244397 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -36 - y = -50 - width = 86 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:2c288c11-6c03-47d8-9926-d54d4c34ccab-1728147826378][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['99f4eac0-825e-409c-9057-766234815295']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:2aad2ea5-54f7-4b4c-aeb4-2a3535d17c20-1733580028199][action_type:set_variable] = current_server:99f4eac0-825e-409c-9057-766234815295 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:2c288c11-6c03-47d8-9926-d54d4c34ccab-1728147826378;2aad2ea5-54f7-4b4c-aeb4-2a3535d17c20-1733580028199;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['99f4eac0-825e-409c-9057-766234815295']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['99f4eac0-825e-409c-9057-766234815295']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Poland - navigatable = true - widget_active_state_requirement_container_identifier = 69ad3c33-e1a4-4621-8794-a63fd928c087-1731821326583 - [loading_requirement_container_meta:69ad3c33-e1a4-4621-8794-a63fd928c087-1731821326583] = [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 = 450f9bbd-ef38-4bf1-8c87-173dd2223457-1728034244611 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = 19 - y = -26 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:2fddd326-b59f-4ac3-81b4-91d3af1f37d0-1728061149955][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['e17d8750-7318-4c7b-83b0-388707e21025']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:5bd6dcea-1695-4309-afa6-309f52956e3e-1733580058456][action_type:set_variable] = current_server:e17d8750-7318-4c7b-83b0-388707e21025 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:2fddd326-b59f-4ac3-81b4-91d3af1f37d0-1728061149955;5bd6dcea-1695-4309-afa6-309f52956e3e-1733580058456;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['e17d8750-7318-4c7b-83b0-388707e21025']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['e17d8750-7318-4c7b-83b0-388707e21025']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Ukraine - navigatable = true - widget_active_state_requirement_container_identifier = 9f0fbdac-a215-49f1-b163-a1f704428645-1731821326583 - [loading_requirement_container_meta:9f0fbdac-a215-49f1-b163-a1f704428645-1731821326583] = [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 = 0d44a462-1f11-44e0-bf5f-9a243e772672-1728034338141 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = 20 - y = -2 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:a4162b21-27d7-4d03-8c0c-52271a908ff4-1728043869422][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['5e1c33ae-8c25-459e-9d88-c42a73ebcf18']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:9e6d76de-d514-4be6-94c4-6e9a75130bd8-1733580194484][action_type:set_variable] = current_server:5e1c33ae-8c25-459e-9d88-c42a73ebcf18 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:a4162b21-27d7-4d03-8c0c-52271a908ff4-1728043869422;9e6d76de-d514-4be6-94c4-6e9a75130bd8-1733580194484;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['5e1c33ae-8c25-459e-9d88-c42a73ebcf18']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['5e1c33ae-8c25-459e-9d88-c42a73ebcf18']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Turkey - navigatable = true - widget_active_state_requirement_container_identifier = 8bab2942-d07e-4133-a9df-e840ee09c8d6-1731821326583 - [loading_requirement_container_meta:8bab2942-d07e-4133-a9df-e840ee09c8d6-1731821326583] = [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 = c4fc4c67-dd4d-443d-af2e-e8497eba0142-1728034338535 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = 51 - y = 55 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:01da7cc1-4785-4e57-af9a-4003f9b4cf5c-1728139495667][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['706b14b4-8fe4-4467-b7ff-65563a3c0d7e']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:60caa70a-5abb-4054-8194-94e9be4a3039-1733580250802][action_type:set_variable] = current_server:706b14b4-8fe4-4467-b7ff-65563a3c0d7e - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:01da7cc1-4785-4e57-af9a-4003f9b4cf5c-1728139495667;60caa70a-5abb-4054-8194-94e9be4a3039-1733580250802;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['706b14b4-8fe4-4467-b7ff-65563a3c0d7e']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['706b14b4-8fe4-4467-b7ff-65563a3c0d7e']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Balkans - navigatable = true - widget_active_state_requirement_container_identifier = db2d2d54-17e2-406b-9484-5eaac6ae9057-1731821326583 - [loading_requirement_container_meta:db2d2d54-17e2-406b-9484-5eaac6ae9057-1731821326583] = [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 = 1732b82a-5a0a-45e5-8b02-1eb90c54d39e-1728034338773 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -11 - y = 70 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:0378f02b-02fc-4a8c-b453-41860c41e26c-1728038731421][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:195a524c-ec97-4f87-9896-3d7628185830-1733576876251][action_type:set_variable] = current_server:b93d267b-625a-449e-88d4-8e64fcb8634e - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:0378f02b-02fc-4a8c-b453-41860c41e26c-1728038731421;195a524c-ec97-4f87-9896-3d7628185830-1733576876251;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = TeamCIS - navigatable = true - widget_active_state_requirement_container_identifier = ca9fa622-0f9b-4a78-80d2-915034f23e8d-1731821326583 - [loading_requirement_container_meta:ca9fa622-0f9b-4a78-80d2-915034f23e8d-1731821326583] = [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 = d9eaa82e-0b17-4e08-b1ab-35d89f11d3bd-1728034758501 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = 84 - y = -12 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:c3330fcc-a19e-4203-83f2-0fb6d3382398-1728061058459][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['12c12ef5-ef0b-4e36-ab8f-e54521b0f060']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:df11974b-3322-451c-bd81-7ccd392a6058-1733580434383][action_type:set_variable] = current_server:12c12ef5-ef0b-4e36-ab8f-e54521b0f060 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:c3330fcc-a19e-4203-83f2-0fb6d3382398-1728061058459;df11974b-3322-451c-bd81-7ccd392a6058-1733580434383;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['12c12ef5-ef0b-4e36-ab8f-e54521b0f060']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['12c12ef5-ef0b-4e36-ab8f-e54521b0f060']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = United Kingdom - navigatable = true - widget_active_state_requirement_container_identifier = 206e24cc-649c-4260-b1cc-1375e73bcacf-1731821326584 - [loading_requirement_container_meta:206e24cc-649c-4260-b1cc-1375e73bcacf-1731821326584] = [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 = a55d9592-60da-401e-a4af-4fecad1b1bf6-1728034790909 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -127 - y = -37 - width = 86 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:2fc404bd-81b2-40f2-a4a5-61abc72852f4-1728141510809][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['4a625095-2bdd-44fb-afea-7c893b5b75ce']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:aa2dfdfd-bf61-47b3-823f-895699385fe7-1733580418804][action_type:set_variable] = current_server:4a625095-2bdd-44fb-afea-7c893b5b75ce - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:2fc404bd-81b2-40f2-a4a5-61abc72852f4-1728141510809;aa2dfdfd-bf61-47b3-823f-895699385fe7-1733580418804;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['4a625095-2bdd-44fb-afea-7c893b5b75ce']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['4a625095-2bdd-44fb-afea-7c893b5b75ce']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Italia - navigatable = true - widget_active_state_requirement_container_identifier = 0c86bccb-2408-4c2e-9e22-960f17ab710e-1731821326584 - [loading_requirement_container_meta:0c86bccb-2408-4c2e-9e22-960f17ab710e-1731821326584] = [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 = b3a2cee4-18e7-46a3-8073-16a6bd8c3462-1728039231455 - 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 = 1050 - auto_sizing_base_screen_height = 584 - sticky_anchor = false - anchor_point = mid-centered - x = -62 - y = 39 - width = 42 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:5abf1438-7ba6-4b55-897f-eafc1bc11592-1728148479796][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['43a2b9fc-86e8-46d4-b353-bd1239d06120']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:2e5a9fa1-f505-4cd6-8613-32b9ff606df9-1733580518325][action_type:set_variable] = current_server:43a2b9fc-86e8-46d4-b353-bd1239d06120 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:5abf1438-7ba6-4b55-897f-eafc1bc11592-1728148479796;2e5a9fa1-f505-4cd6-8613-32b9ff606df9-1733580518325;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['43a2b9fc-86e8-46d4-b353-bd1239d06120']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['43a2b9fc-86e8-46d4-b353-bd1239d06120']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Ireland - navigatable = true - widget_active_state_requirement_container_identifier = ef8ad26c-9e2f-4ff6-baee-9f5f5e46ec42-1731821326584 - [loading_requirement_container_meta:ef8ad26c-9e2f-4ff6-baee-9f5f5e46ec42-1731821326584] = [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 = d944f85c-ed7e-4435-8d05-8cab575ad7ec-1728039231613 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -161 - y = -13 - width = 51 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:f0511c39-4b8a-4f0d-b73f-60bed0589138-1728042721020][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['080adc4f-4b34-4108-bf97-9e36a2c50d61']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:043b31aa-936f-473e-8e6f-1c08ddb1bdd2-1733580177432][action_type:set_variable] = current_server:080adc4f-4b34-4108-bf97-9e36a2c50d61 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:f0511c39-4b8a-4f0d-b73f-60bed0589138-1728042721020;043b31aa-936f-473e-8e6f-1c08ddb1bdd2-1733580177432;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = This area currently doesn't have a server! We apologize for the inconvenience. - label = Romania + Moldova - navigatable = true - widget_active_state_requirement_container_identifier = fc56a196-b223-4965-beda-f82c46606f99-1731821326584 - [loading_requirement_container_meta:fc56a196-b223-4965-beda-f82c46606f99-1731821326584] = [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 = 9f4862c6-239c-48e1-9560-f7ea99e408ba-1728039357486 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = 19 - y = 21 - width = 103 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547 - [executable_action_instance:c2beea25-6846-41bd-92d1-b45675dde4fe-1728139695528][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['9b14b705-dc47-4e16-8cb0-bdb61b4ef811']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:24f9f4cd-77e7-4d18-87c8-6336c37ecbec-1733580274139][action_type:set_variable] = current_server:9b14b705-dc47-4e16-8cb0-bdb61b4ef811 - [executable_block:2600fe97-9c4b-4119-a32c-b868f6502724-1728034016547][type:generic] = [executables:c2beea25-6846-41bd-92d1-b45675dde4fe-1728139695528;24f9f4cd-77e7-4d18-87c8-6336c37ecbec-1733580274139;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['9b14b705-dc47-4e16-8cb0-bdb61b4ef811']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['9b14b705-dc47-4e16-8cb0-bdb61b4ef811']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Hungary - navigatable = true - widget_active_state_requirement_container_identifier = 4c02fcae-c581-4f64-9b08-735b24a201cb-1731821326584 - [loading_requirement_container_meta:4c02fcae-c581-4f64-9b08-735b24a201cb-1731821326584] = [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 = 9a4d7d9b-a9a0-40a7-81fc-d0a551e74ed3-1728039599600 - 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 = 1296 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -13 - y = 44 - width = 58 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c6501d48-14b7-40e3-afde-2e693828c549-1728034016547 - [loading_requirement_container_meta:c6501d48-14b7-40e3-afde-2e693828c549-1728034016547] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['b93d267b-625a-449e-88d4-8e64fcb8634e']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 354f62cc-6785-4282-8766-489dc3b5dc6a-1728136721217 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = d9eaa82e-0b17-4e08-b1ab-35d89f11d3bd-1728034758501 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['080adc4f-4b34-4108-bf97-9e36a2c50d61']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = a7c7cbab-b19c-45cf-b1b0-da28aea624b0-1728136819741 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 9f4862c6-239c-48e1-9560-f7ea99e408ba-1728039357486 - x = 81 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['e17d8750-7318-4c7b-83b0-388707e21025']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = b3d8085d-cfcc-4000-bf4d-f822352da4b5-1728137057780 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0d44a462-1f11-44e0-bf5f-9a243e772672-1728034338141 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['5e1c33ae-8c25-459e-9d88-c42a73ebcf18']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = bcb25bf9-9c40-4de5-a3fb-27fa1d325864-1728137057931 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = c4fc4c67-dd4d-443d-af2e-e8497eba0142-1728034338535 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['1a012c0f-55b9-43f6-bfb0-f25ca2ae2d14']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 84bb5f33-ead2-4ac5-ba20-447d7420f61c-1728137153910 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 8b27990b-fbe0-4315-acea-e6a569fafd46-1728034143467 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['374b0e08-9ef5-4d1c-9a5c-3dc204d9fd96']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 5b090f46-9874-4d8b-a210-b68373ab4824-1728137154218 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 6a91f5b1-5515-4cd4-bc33-27b65040309f-1728034016547 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['12c12ef5-ef0b-4e36-ab8f-e54521b0f060']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 9c887588-03d5-4850-8132-e5c4ac9bf240-1728137154448 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = a55d9592-60da-401e-a4af-4fecad1b1bf6-1728034790909 - x = 64 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['706b14b4-8fe4-4467-b7ff-65563a3c0d7e']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 109298d2-911e-46f6-b251-108df7f6c057-1728139540398 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 1732b82a-5a0a-45e5-8b02-1eb90c54d39e-1728034338773 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['9b14b705-dc47-4e16-8cb0-bdb61b4ef811']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 55345323-0f95-41fe-967b-4c2b8a46a387-1728139540744 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = 9a4d7d9b-a9a0-40a7-81fc-d0a551e74ed3-1728039599600 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['4a625095-2bdd-44fb-afea-7c893b5b75ce']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = cf2b2c20-5ea5-491b-8cf4-61b86a8a792a-1728139541024 - 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 = 1050 - auto_sizing_base_screen_height = 584 - sticky_anchor = false - anchor_point = element - anchor_point_element = b3a2cee4-18e7-46a3-8073-16a6bd8c3462-1728039231455 - x = 20 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['99f4eac0-825e-409c-9057-766234815295']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 6dd79e27-6bf9-4484-bcf0-440a8a7a2048-1728139541300 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 450f9bbd-ef38-4bf1-8c87-173dd2223457-1728034244611 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['c69ad90e-5d43-4393-8fa6-b99bc6c1e2b6']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = c6b197f2-9320-4aa9-ab91-5ecf4f231ab2-1728145798342 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = b73a30e2-dc12-4e39-8c10-fe9a8e3b3b09-1728034141384 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['3ab140f7-d7f7-451b-87cd-ce988e5f82fa']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 6c188695-2c2e-437a-b624-0262d687d3df-1728145798724 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 4f357fec-3826-49c2-ad21-7acca9101590-1728034143283 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['8cb65869-e5e0-45da-b214-eb561eae35dc']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = dbd6ddd6-6211-4437-922f-55ad0970db93-1728148056211 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 4ca4d2c3-ff25-4f7c-be64-508a831acbf4-1728034244169 - x = 36 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['43a2b9fc-86e8-46d4-b353-bd1239d06120']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 5c92a406-f8a5-4489-88d9-eb9aa864a64a-1728148509785 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = d944f85c-ed7e-4435-8d05-8cab575ad7ec-1728039231613 - x = 29 - y = 15 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['42364012-3ce6-4a22-9598-1ff9774cf59c']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 75d7413f-6cac-4a97-8d6f-c77571446059-1728149327294 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = 293c6cba-466d-4e4b-9fea-c1fd4b9de80a-1728034244397 - x = 64 - y = 15 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['3c0a3c13-e0aa-416b-adcb-c632b4f29012']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = c57c45dc-11c9-43d8-a889-2d1061b06903-1728149327533 - 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 = 1082 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = element - anchor_point_element = d9eaa82e-0b17-4e08-b1ab-35d89f11d3bd-1728034758501 - x = -56 - y = -49 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:602b4029-cda1-4410-82ae-6e052074204a-1728047374842][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:602b4029-cda1-4410-82ae-6e052074204a-1728047374842;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = e3658e32-1431-45be-b8b8-0aea52ee72d7-1731821326587 - [loading_requirement_container_meta:e3658e32-1431-45be-b8b8-0aea52ee72d7-1731821326587] = [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 = 594a13b1-381c-45d1-8c4d-42f50baa7ead-1728178700639 - 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 = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/build-teams-north-america_layout.txt b/overrides/config/fancymenu/customization/build-teams-north-america_layout.txt deleted file mode 100644 index 62683dc..0000000 --- a/overrides/config/fancymenu/customization/build-teams-north-america_layout.txt +++ /dev/null @@ -1,984 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-north-america - render_custom_elements_behind_vanilla = false - last_edited_time = 1777736492724 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:bf4256f3-8bcb-499e-9203-4fed105dfeae-1777736403512] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = b942f9c5-b849-4aa2-9dcb-d033435180a5-1777735780694 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map-north-america.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = c461fd49-3bef-4b0a-a56d-bb54b926909c-1728178744702 - 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 = 1050 - auto_sizing_base_screen_height = 584 - sticky_anchor = false - anchor_point = mid-centered - x = -129 - y = -113 - width = 258 - height = 226 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = bcf824ea-92eb-472f-a456-d9fab9cd015d-1728178744702 - [loading_requirement_container_meta:bcf824ea-92eb-472f-a456-d9fab9cd015d-1728178744702] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765 - [executable_action_instance:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['5f8167a6-db2c-487b-adc1-661699dcdf69']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:45d8c245-bf46-4501-b3d0-1afa2c4feea8-1733760416114][action_type:set_variable] = current_server:5f8167a6-db2c-487b-adc1-661699dcdf69 - [executable_block:b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765][type:generic] = [executables:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472;45d8c245-bf46-4501-b3d0-1afa2c4feea8-1733760416114;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['5f8167a6-db2c-487b-adc1-661699dcdf69']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['5f8167a6-db2c-487b-adc1-661699dcdf69']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Canada - navigatable = true - widget_active_state_requirement_container_identifier = 1deccf23-3c61-48fa-968e-176c394fc57e-1733026100593 - [loading_requirement_container_meta:1deccf23-3c61-48fa-968e-176c394fc57e-1733026100593] = [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 = d9da67f0-22d7-40c5-b21b-c42c32aa70d7-1728178891765 - 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 = 1264 - auto_sizing_base_screen_height = 652 - sticky_anchor = false - anchor_point = mid-centered - x = -17 - y = -54 - width = 54 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765 - [loading_requirement_container_meta:83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['5f8167a6-db2c-487b-adc1-661699dcdf69']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = d41c9f82-1938-4a84-85d1-3201c94bb8bd-1728179038793 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = d9da67f0-22d7-40c5-b21b-c42c32aa70d7-1728178891765 - x = 32 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765 - [executable_action_instance:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['fbda5d25-6ff0-485f-958f-a0d17c890783']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:8cd86c8e-0d56-4ce5-a58e-ec1a5248503e-1733633044102][action_type:set_variable] = current_server:fbda5d25-6ff0-485f-958f-a0d17c890783 - [executable_block:b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765][type:generic] = [executables:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472;8cd86c8e-0d56-4ce5-a58e-ec1a5248503e-1733633044102;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['fbda5d25-6ff0-485f-958f-a0d17c890783']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['fbda5d25-6ff0-485f-958f-a0d17c890783']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = North Latin America - navigatable = true - widget_active_state_requirement_container_identifier = 673c39bb-30fc-4a38-929a-3f2dc450ac01-1733026100593 - [loading_requirement_container_meta:673c39bb-30fc-4a38-929a-3f2dc450ac01-1733026100593] = [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 = 2aa72d85-ad2a-44ab-bf18-33504e6d9f1b-1728179173655 - 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 = 1264 - auto_sizing_base_screen_height = 652 - sticky_anchor = false - anchor_point = mid-centered - x = 5 - y = 77 - width = 113 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765 - [loading_requirement_container_meta:83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['fbda5d25-6ff0-485f-958f-a0d17c890783']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 299ba0d5-cbd6-4f48-9795-04e9c4a5ea8b-1728179218611 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 2aa72d85-ad2a-44ab-bf18-33504e6d9f1b-1728179173655 - x = 91 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765 - [executable_action_instance:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['9d362859-7625-4a8d-ac34-186936a26b4f']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:dd43bde0-68b2-4784-8f34-a99482b062e1-1733633767831][action_type:set_variable] = current_server:9d362859-7625-4a8d-ac34-186936a26b4f - [executable_block:b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765][type:generic] = [executables:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472;dd43bde0-68b2-4784-8f34-a99482b062e1-1733633767831;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['9d362859-7625-4a8d-ac34-186936a26b4f']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['9d362859-7625-4a8d-ac34-186936a26b4f']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = México y Centroamérica - navigatable = true - widget_active_state_requirement_container_identifier = 279e6c41-2124-49d1-99db-af7755ac196a-1733026100594 - [loading_requirement_container_meta:279e6c41-2124-49d1-99db-af7755ac196a-1733026100594] = [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 = b2945967-0ef0-4d3b-a0d0-adaafe282166-1728179424651 - 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 = 1264 - auto_sizing_base_screen_height = 652 - sticky_anchor = false - anchor_point = mid-centered - x = -98 - y = 48 - width = 135 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765 - [loading_requirement_container_meta:83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['9d362859-7625-4a8d-ac34-186936a26b4f']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = ee76b5e3-a247-4b8b-81fb-c979d8912dfe-1728179503444 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = b2945967-0ef0-4d3b-a0d0-adaafe282166-1728179424651 - x = 113 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765 - [executable_action_instance:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['43c98aab-e2d1-4a78-8c91-1a3218839e0d']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:e0d0c38d-0e1b-425c-a206-bac8b0ad9f64-1733633994626][action_type:set_variable] = current_server:43c98aab-e2d1-4a78-8c91-1a3218839e0d - [executable_block:b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765][type:generic] = [executables:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472;e0d0c38d-0e1b-425c-a206-bac8b0ad9f64-1733633994626;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['43c98aab-e2d1-4a78-8c91-1a3218839e0d']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['43c98aab-e2d1-4a78-8c91-1a3218839e0d']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = NYC - navigatable = true - widget_active_state_requirement_container_identifier = ec89189f-5e78-4c81-bc9e-7fb2e448b2a6-1733026100594 - [loading_requirement_container_meta:ec89189f-5e78-4c81-bc9e-7fb2e448b2a6-1733026100594] = [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 = a8deca42-78cd-44cb-9882-6bece289db3b-1728195854654 - 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 = 1264 - auto_sizing_base_screen_height = 652 - sticky_anchor = false - anchor_point = mid-centered - x = 69 - y = 0 - width = 31 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765 - [loading_requirement_container_meta:83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765 - [executable_action_instance:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['191c58d7-92ca-4c59-8227-e712f62d8b17']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:c3722b4b-56c5-466e-84a8-099461be9984-1733760474182][action_type:set_variable] = current_server:191c58d7-92ca-4c59-8227-e712f62d8b17 - [executable_block:b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765][type:generic] = [executables:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472;c3722b4b-56c5-466e-84a8-099461be9984-1733760474182;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['191c58d7-92ca-4c59-8227-e712f62d8b17']['ip'][0]","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['191c58d7-92ca-4c59-8227-e712f62d8b17']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = United States - navigatable = true - widget_active_state_requirement_container_identifier = ef7be31c-a726-4ae8-bd2f-2f60e6e02a54-1733026100594 - [loading_requirement_container_meta:ef7be31c-a726-4ae8-bd2f-2f60e6e02a54-1733026100594] = [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 = 42eea45b-bfc0-4969-a59e-681b6558617b-1728195855795 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = c461fd49-3bef-4b0a-a56d-bb54b926909c-1728178744702 - x = 91 - y = 103 - width = 79 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765 - [loading_requirement_container_meta:83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['43c98aab-e2d1-4a78-8c91-1a3218839e0d']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 32fa0c1c-f4e4-4772-bee5-17cea917fa3c-1728196419565 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = a8deca42-78cd-44cb-9882-6bece289db3b-1728195854654 - x = 9 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['191c58d7-92ca-4c59-8227-e712f62d8b17']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 0c5303da-08b4-426e-a330-9cf8a887817a-1728196420274 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = 42eea45b-bfc0-4969-a59e-681b6558617b-1728195855795 - x = 55 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765 - [executable_action_instance:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['711a87b4-53cb-4abd-8097-a63b18c56ffe']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:5c6e82b6-0254-41f9-ac3b-48cb23400086-1733760432839][action_type:set_variable] = current_server:711a87b4-53cb-4abd-8097-a63b18c56ffe - [executable_block:b2f7c56e-6b1f-40ab-9b4a-14c86814939e-1728178891765][type:generic] = [executables:e3383a40-79a2-47cc-b31b-6bf488852ee5-1728178936472;5c6e82b6-0254-41f9-ac3b-48cb23400086-1733760432839;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['711a87b4-53cb-4abd-8097-a63b18c56ffe']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['711a87b4-53cb-4abd-8097-a63b18c56ffe']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = New Jersey - navigatable = true - widget_active_state_requirement_container_identifier = 44b8f864-06b7-494d-be63-81de245ce0ea-1733026100594 - [loading_requirement_container_meta:44b8f864-06b7-494d-be63-81de245ce0ea-1733026100594] = [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 = d3956a00-1cf2-4b91-b9dc-9d302b026bd8-1728251196866 - 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 = 1264 - auto_sizing_base_screen_height = 652 - sticky_anchor = false - anchor_point = mid-centered - x = 52 - y = -33 - width = 67 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765 - [loading_requirement_container_meta:83513bd9-a6cb-4e1f-9d23-366edf9cb7af-1728178891765] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['711a87b4-53cb-4abd-8097-a63b18c56ffe']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = a3d94a4b-ac9d-4c8f-b121-817e5fe99621-1728251227672 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = d3956a00-1cf2-4b91-b9dc-9d302b026bd8-1728251196866 - x = 45 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:602b4029-cda1-4410-82ae-6e052074204a-1728047374842][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:602b4029-cda1-4410-82ae-6e052074204a-1728047374842;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 134a7fce-0c68-464e-9b7c-f657c7c6439b-1733026100593 - [loading_requirement_container_meta:134a7fce-0c68-464e-9b7c-f657c7c6439b-1733026100593] = [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 = c62c2bb9-706d-4bc8-aa71-e4b9f689c03f-1728178740776 - 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 = 1264 - auto_sizing_base_screen_height = 652 - sticky_anchor = false - anchor_point = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/build-teams-south-america_layout.txt b/overrides/config/fancymenu/customization/build-teams-south-america_layout.txt deleted file mode 100644 index cea8794..0000000 --- a/overrides/config/fancymenu/customization/build-teams-south-america_layout.txt +++ /dev/null @@ -1,431 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-south-america - render_custom_elements_behind_vanilla = false - last_edited_time = 1777738394397 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:0abd8c4a-532b-41dc-b19b-52e745b4cf83-1777738388271] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = 6e55d8b9-a120-4fc4-ba08-960007d45e7f-1777736583821 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map-south-america.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = 1ce9b2f5-7dcd-4eee-b7b3-ad350daba1d3-1728201908258 - 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 = 1168 - auto_sizing_base_screen_height = 658 - sticky_anchor = false - anchor_point = mid-centered - x = -96 - y = -116 - width = 192 - height = 232 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 990f010c-d961-4b10-99f6-b3c3c77c5e8e-1728201908258 - [loading_requirement_container_meta:990f010c-d961-4b10-99f6-b3c3c77c5e8e-1728201908258] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = a654cb85-5714-49b1-a54b-c8dc40109b27-1728202227667 - [executable_action_instance:5e4062d8-1b76-4ead-89ef-57fd9cb4bb0b-1728202251397][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['d9bafd64-31e9-4952-bc8a-2023060d7011']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:b92f5ce7-c8ef-4fed-9dfa-3e59c3d44696-1733630678987][action_type:set_variable] = current_server:d9bafd64-31e9-4952-bc8a-2023060d7011 - [executable_block:a654cb85-5714-49b1-a54b-c8dc40109b27-1728202227667][type:generic] = [executables:5e4062d8-1b76-4ead-89ef-57fd9cb4bb0b-1728202251397;b92f5ce7-c8ef-4fed-9dfa-3e59c3d44696-1733630678987;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['d9bafd64-31e9-4952-bc8a-2023060d7011']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['d9bafd64-31e9-4952-bc8a-2023060d7011']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Brasil - navigatable = true - widget_active_state_requirement_container_identifier = 114a5525-ab99-4471-8dbd-a58586429073-1731820456977 - [loading_requirement_container_meta:114a5525-ab99-4471-8dbd-a58586429073-1731820456977] = [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 = 7fad8406-8584-42ad-be31-3a67ef6a6453-1728202227667 - 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 = 1168 - auto_sizing_base_screen_height = 658 - sticky_anchor = false - anchor_point = mid-centered - x = 31 - y = -32 - width = 54 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 663aa720-9e0e-4e49-833d-68564155484a-1728202227667 - [loading_requirement_container_meta:663aa720-9e0e-4e49-833d-68564155484a-1728202227667] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = a654cb85-5714-49b1-a54b-c8dc40109b27-1728202227667 - [executable_action_instance:5e4062d8-1b76-4ead-89ef-57fd9cb4bb0b-1728202251397][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['7d32dcac-f776-448d-ac2c-dd41e457c770']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_action_instance:4148d51f-f3c7-428f-a35d-f59ba744a59b-1733630658098][action_type:set_variable] = current_server:7d32dcac-f776-448d-ac2c-dd41e457c770 - [executable_block:a654cb85-5714-49b1-a54b-c8dc40109b27-1728202227667][type:generic] = [executables:5e4062d8-1b76-4ead-89ef-57fd9cb4bb0b-1728202251397;4148d51f-f3c7-428f-a35d-f59ba744a59b-1733630658098;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['7d32dcac-f776-448d-ac2c-dd41e457c770']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}}%n%Version: {"placeholder":"json","values":{"json_path":"$['7d32dcac-f776-448d-ac2c-dd41e457c770']['version']","source":"config/fancymenu/assets/buildteams.json"}} - label = Cono Sur - navigatable = true - widget_active_state_requirement_container_identifier = 2350ac03-7e4e-4a47-88ae-fcb2a7ab2a0b-1731820456978 - [loading_requirement_container_meta:2350ac03-7e4e-4a47-88ae-fcb2a7ab2a0b-1731820456978] = [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 = d085e7ad-1766-4203-980e-e1d352537225-1728202506803 - 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 = 1168 - auto_sizing_base_screen_height = 658 - sticky_anchor = false - anchor_point = mid-centered - x = -24 - y = 30 - width = 54 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 663aa720-9e0e-4e49-833d-68564155484a-1728202227667 - [loading_requirement_container_meta:663aa720-9e0e-4e49-833d-68564155484a-1728202227667] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['7d32dcac-f776-448d-ac2c-dd41e457c770']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = b27d6672-e25e-4858-93ae-fcd4e675d131-1728202533724 - 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 = 1270 - auto_sizing_base_screen_height = 702 - sticky_anchor = false - anchor_point = element - anchor_point_element = d085e7ad-1766-4203-980e-e1d352537225-1728202506803 - x = 32 - y = 15 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"serverstatus","values":{"ip":"{"placeholder":"json","values":{"json_path":"$['d9bafd64-31e9-4952-bc8a-2023060d7011']['ip']","source":"config/fancymenu/assets/buildteams.json"}}"}} - source_mode = direct - shadow = true - scale = 0.6 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = a72027d9-597e-4781-9889-df38ac181c5e-1728202293579 - 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 = 1264 - auto_sizing_base_screen_height = 538 - sticky_anchor = false - anchor_point = element - anchor_point_element = 7fad8406-8584-42ad-be31-3a67ef6a6453-1728202227667 - x = 32 - y = 14 - width = 33 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217 - [loading_requirement_container_meta:074c7895-3c13-4c80-886d-add6eaf880c9-1728136721217] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:602b4029-cda1-4410-82ae-6e052074204a-1728047374842][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:602b4029-cda1-4410-82ae-6e052074204a-1728047374842;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 9e87dea3-46ac-4b2d-ab15-2c5cb613e7e0-1731820456977 - [loading_requirement_container_meta:9e87dea3-46ac-4b2d-ab15-2c5cb613e7e0-1731820456977] = [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 = 6992914b-c8d9-4945-a747-2422d0e789e3-1728178729879 - 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 = 1264 - auto_sizing_base_screen_height = 538 - sticky_anchor = false - anchor_point = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/build-teams-start_layout.txt b/overrides/config/fancymenu/customization/build-teams-start_layout.txt deleted file mode 100644 index d53ae91..0000000 --- a/overrides/config/fancymenu/customization/build-teams-start_layout.txt +++ /dev/null @@ -1,741 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = build-teams-start - render_custom_elements_behind_vanilla = false - last_edited_time = 1777738557298 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:baf846a0-f80b-49bf-94e8-35f677dc2c43-1777738447624] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = false - parallax = false - parallax_intensity = 0.02 - invert_parallax = false - restart_animated_on_menu_load = false - instance_identifier = 4e3ad18c-6b9c-418b-8bb9-5f25d4bfb009-1777726960691 - 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 { - source = [source:local]/config/fancymenu/assets/maps/map.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - 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 = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = mid-centered - x = -186 - y = -97 - width = 372 - height = 194 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 1dda9ea6-fb55-424b-865e-ac5dcb282404-1727991609962 - [loading_requirement_container_meta:1dda9ea6-fb55-424b-865e-ac5dcb282404-1727991609962] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:4202faa8-d712-477a-968b-2602b3e5ed25-1728177233141][action_type:opengui] = build-teams-australia - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:4202faa8-d712-477a-968b-2602b3e5ed25-1728177233141;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Oceania - navigatable = true - widget_active_state_requirement_container_identifier = e7c1707b-5b63-4b0c-a173-8df6c13e00a8-1731754838744 - [loading_requirement_container_meta:e7c1707b-5b63-4b0c-a173-8df6c13e00a8-1731754838744] = [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 = e9557efc-36a1-4746-ad0e-e8c3e2c852cd-1727991735737 - 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 = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 294 - y = 138 - width = 61 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:53ea1fed-ac53-4e68-9b1f-339713c1e0c2-1728177221302][action_type:opengui] = build-teams-africa - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:53ea1fed-ac53-4e68-9b1f-339713c1e0c2-1728177221302;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Africa - navigatable = true - widget_active_state_requirement_container_identifier = 76b81ee3-d050-49db-b715-8f01a8e1fc64-1731754838744 - [loading_requirement_container_meta:76b81ee3-d050-49db-b715-8f01a8e1fc64-1731754838744] = [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 = 4c9d9c6b-6957-47e8-abb5-570365dda260-1727993111276 - 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 = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 164 - y = 93 - width = 53 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:b897c5ac-335e-400e-b0dc-6717c9012007-1728032686318][action_type:opengui] = build-teams-europe - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:b897c5ac-335e-400e-b0dc-6717c9012007-1728032686318;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Europe - navigatable = true - widget_active_state_requirement_container_identifier = 20411e92-b598-489a-966b-12eee59b194c-1731754838744 - [loading_requirement_container_meta:20411e92-b598-489a-966b-12eee59b194c-1731754838744] = [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 = 84e1022b-cff5-4a45-b0a8-1f6606d9d56a-1727993112909 - 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 = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 161 - y = 32 - width = 53 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:6e69e32f-93f3-40ea-8267-35075a20876d-1728177244740][action_type:opengui] = build-teams-south-america - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:6e69e32f-93f3-40ea-8267-35075a20876d-1728177244740;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = South America - navigatable = true - widget_active_state_requirement_container_identifier = c7f2b770-48d0-4efa-bda0-da385b4b3985-1731754838744 - [loading_requirement_container_meta:c7f2b770-48d0-4efa-bda0-da385b4b3985-1731754838744] = [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 = 6f50c11d-831d-47cb-bfc9-01a8f3d71a9d-1727993113057 - 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 = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 47 - y = 121 - width = 84 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:04235c9c-e5b8-4d42-b89c-53a759d2085e-1728177257342][action_type:opengui] = build-teams-north-america - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:04235c9c-e5b8-4d42-b89c-53a759d2085e-1728177257342;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = North America - navigatable = true - widget_active_state_requirement_container_identifier = 18308115-fa31-4bb7-aa3d-277061cba14e-1731754838744 - [loading_requirement_container_meta:18308115-fa31-4bb7-aa3d-277061cba14e-1731754838744] = [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 = 1f379961-91f7-447b-8883-8777449aecae-1727993131461 - 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 = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 11 - y = 40 - width = 84 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:b13e394f-190d-4d73-909a-42d4f5084a3c-1728044451131][action_type:opengui] = build-teams-asia - [executable_action_instance:76ad8dd0-fddf-4f62-be0e-22cc01bed966-1731754842892][action_type:set_variable] = asean:{"placeholder":"json","values":{"json_path":"$.ip","source":"https://api.buildtheearth.net/api/v1/buildteams/98013a41-915d-4181-9d3b-12a75f933c50/modpack"}} - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:b13e394f-190d-4d73-909a-42d4f5084a3c-1728044451131;76ad8dd0-fddf-4f62-be0e-22cc01bed966-1731754842892;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Asia - navigatable = true - widget_active_state_requirement_container_identifier = 101d0324-7ce2-4639-a2a2-2b2289763d7e-1731754838744 - [loading_requirement_container_meta:101d0324-7ce2-4639-a2a2-2b2289763d7e-1731754838744] = [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 = 33a957dc-4dda-4c19-9de6-fff7d11a97f5-1727993135911 - 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 = 1458 - auto_sizing_base_screen_height = 744 - sticky_anchor = false - anchor_point = element - anchor_point_element = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 266 - y = 60 - width = 36 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:ce47f684-b7d6-4dda-9593-0c518ceb9f74-1727996082075][action_type:closegui] = - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:ce47f684-b7d6-4dda-9593-0c518ceb9f74-1727996082075;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 3139ffb3-cc77-4d3a-8172-5f2fb3afefe7-1731754838744 - [loading_requirement_container_meta:3139ffb3-cc77-4d3a-8172-5f2fb3afefe7-1731754838744] = [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 = ce404594-eac7-4f63-b19a-df9d6a4fc0ce-1727995106642 - 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 = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:aa82bf84-54d3-4ae7-896c-3f5fc3c108bc-1728117657695][action_type:joinserver] = buildtheearth.net:25565 - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:aa82bf84-54d3-4ae7-896c-3f5fc3c108bc-1728117657695;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Players: {"placeholder":"serverplayercount","values":{"ip":"buildtheearth.net:25565"}}%n%Version: {"placeholder":"serverversion","values":{"ip":"buildtheearth.net:25565"}} - label = Hub - navigatable = true - widget_active_state_requirement_container_identifier = 34c1c921-c509-4558-942c-3cfe70b5b446-1731754838744 - [loading_requirement_container_meta:34c1c921-c509-4558-942c-3cfe70b5b446-1731754838744] = [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 = 5524d788-c32e-4ba6-b899-f60f95d15122-1727996522660 - 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 = 61e034d4-f9ee-4589-8af6-2c21f71d92bc-1727991609962 - x = 0 - y = -24 - width = 34 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = c1e9e93c-083c-4283-a9e5-b18b78e3ed4e-1728110938772 - [executable_action_instance:8388a1cb-0e62-44f7-a47b-ea39c03f42d9-1728111154817][action_type:mimicbutton] = title_screen:mc_titlescreen_multiplayer_button - [executable_block:c1e9e93c-083c-4283-a9e5-b18b78e3ed4e-1728110938772][type:generic] = [executables:8388a1cb-0e62-44f7-a47b-ea39c03f42d9-1728111154817;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = View vanilla multiplayer screen [Only use if necessary] - label = Multiplayer - navigatable = true - widget_active_state_requirement_container_identifier = c57bb9ce-f19e-4c5d-b1b8-b4960fc8fe5a-1731754838744 - [loading_requirement_container_meta:c57bb9ce-f19e-4c5d-b1b8-b4960fc8fe5a-1731754838744] = [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 = e59492fb-c4ad-4fe7-87cf-507c5a18f5f3-1728110938772 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = mid-centered - x = 117 - y = -121 - width = 69 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = bb075176-c555-4f37-a9bd-d22cfeb9f04f-1728110938772 - [loading_requirement_container_meta:bb075176-c555-4f37-a9bd-d22cfeb9f04f-1728110938772] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 0eb3d7f6-e66f-47d4-a3d9-565f5e57ff4a-1728180120501 - [executable_action_instance:ecb2fba8-972b-4d88-b950-f5d116ab68b0-1728180178758][action_type:joinserver] = event.buildtheearth.net:25565 - [executable_block:9e0ff559-df37-4878-92c7-36c17a96f601-1777738521995][type:if] = [executables:ecb2fba8-972b-4d88-b950-f5d116ab68b0-1728180178758;][appended:1273a418-40d4-4096-930e-4594767a6324-1777738533932] - [executable_action_instance:ce9969fb-54fe-4040-bffe-7b5eb7370695-1777738541261][action_type:joinserver] = buildtheearth.net - [executable_block:1273a418-40d4-4096-930e-4594767a6324-1777738533932][type:else] = [executables:ce9969fb-54fe-4040-bffe-7b5eb7370695-1777738541261;] - [if_executable_block_body:9e0ff559-df37-4878-92c7-36c17a96f601-1777738521995] = a9d93856-399b-407c-871c-b4bde0fb2cc9-1777738481005 - [loading_requirement_container_meta:a9d93856-399b-407c-871c-b4bde0fb2cc9-1777738481005] = [groups:][instances:c28aacf9-10f1-44ca-be17-2247ea101a73-1777738482887;] - [loading_requirement:fancymenu_loading_requirement_is_server_online][requirement_mode:if][req_id:c28aacf9-10f1-44ca-be17-2247ea101a73-1777738482887] = event.buildtheearth.net - [if_executable_block_collapsed:9e0ff559-df37-4878-92c7-36c17a96f601-1777738521995] = false - [executable_block:0eb3d7f6-e66f-47d4-a3d9-565f5e57ff4a-1728180120501][type:generic] = [executables:9e0ff559-df37-4878-92c7-36c17a96f601-1777738521995;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = This server is for BTE events%n%Players: {"placeholder":"serverplayercount","values":{"ip":"event.buildtheearth.net:25565"}}%n%Version: {"placeholder":"serverversion","values":{"ip":"event.buildtheearth.net:25565"}} - label = Events - navigatable = true - widget_active_state_requirement_container_identifier = 0f43c575-2e9a-4a4b-9d14-97862a0b4ad6-1731754838744 - [loading_requirement_container_meta:0f43c575-2e9a-4a4b-9d14-97862a0b4ad6-1731754838744] = [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 = 3319b4bc-c792-4a76-a4d1-7c1ecb4373ff-1728180120501 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = 5524d788-c32e-4ba6-b899-f60f95d15122-1727996522660 - x = 166 - y = 1 - width = 43 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f5110bf7-9b21-4f6e-8031-c7b4fa421a2b-1728180120501 - [loading_requirement_container_meta:f5110bf7-9b21-4f6e-8031-c7b4fa421a2b-1728180120501] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - diff --git a/overrides/config/fancymenu/customization/com.terraformersmc.modmenu.gui.modsscreen_layout.txt b/overrides/config/fancymenu/customization/com.terraformersmc.modmenu.gui.modsscreen_layout.txt deleted file mode 100644 index f3a2a2e..0000000 --- a/overrides/config/fancymenu/customization/com.terraformersmc.modmenu.gui.modsscreen_layout.txt +++ /dev/null @@ -1,365 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = com.terraformersmc.modmenu.gui.ModsScreen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733760720327 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:738d6b14-458b-48a2-b51d-d8b13ed7c776-1733760710727] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -vanilla_button { - button_element_executable_block_identifier = bc523281-475a-451e-b477-c53aa7960903-1733760662806 - [executable_block:bc523281-475a-451e-b477-c53aa7960903-1733760662806][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 = 9e28db9f-f740-400d-b934-0ed2936a115d-1733760662806 - [loading_requirement_container_meta:9e28db9f-f740-400d-b934-0ed2936a115d-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504972 - 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 = 320 - y = 302 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f3a9a8a7-c22e-4d8c-aa29-7c407eadd116-1733760662806 - [loading_requirement_container_meta:f3a9a8a7-c22e-4d8c-aa29-7c407eadd116-1733760662806] = [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 = b97c95a6-f923-42b9-ad98-5cf3daadf75c-1733760662806 - [executable_block:b97c95a6-f923-42b9-ad98-5cf3daadf75c-1733760662806][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 = 01a357d2-d7b2-4e67-9c84-50e7c83be41f-1733760662806 - [loading_requirement_container_meta:01a357d2-d7b2-4e67-9c84-50e7c83be41f-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 37345 - 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 = 189 - y = 45 - width = 104 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 755cf413-24fc-4c22-9e80-78a022eb5f34-1733760662806 - [loading_requirement_container_meta:755cf413-24fc-4c22-9e80-78a022eb5f34-1733760662806] = [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 = 27a7580b-cf33-4f69-af7c-dc863ed469d5-1733760662806 - [executable_block:27a7580b-cf33-4f69-af7c-dc863ed469d5-1733760662806][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 = 4dafb310-4ab2-47fb-babb-8c5ec50ae0fd-1733760662806 - [loading_requirement_container_meta:4dafb310-4ab2-47fb-babb-8c5ec50ae0fd-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346972 - 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 = 162 - y = 302 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = e3b47dff-a4e2-43a8-b893-823c11995249-1733760662806 - [loading_requirement_container_meta:e3b47dff-a4e2-43a8-b893-823c11995249-1733760662806] = [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 = dd7f1d99-6f40-40e6-9e4f-a674c1fc525b-1733760662806 - [executable_block:dd7f1d99-6f40-40e6-9e4f-a674c1fc525b-1733760662806][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 = 9a6a7ee9-5706-4301-9d53-aa97995af9d8-1733760662806 - [loading_requirement_container_meta:9a6a7ee9-5706-4301-9d53-aa97995af9d8-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 45722 - 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 = 22 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = dcea0f6c-4f4c-450c-b57c-2c9cf478b6b9-1733760662806 - [loading_requirement_container_meta:dcea0f6c-4f4c-450c-b57c-2c9cf478b6b9-1733760662806] = [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 = ff397568-5b48-4088-a730-2fdb5bf9f6bb-1733760662806 - [executable_block:ff397568-5b48-4088-a730-2fdb5bf9f6bb-1733760662806][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 = aece15dc-f8b7-4fe3-b113-e549a7593a82-1733760662806 - [loading_requirement_container_meta:aece15dc-f8b7-4fe3-b113-e549a7593a82-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 30545 - 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 = 121 - y = 45 - width = 66 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c0cf7500-904b-4328-a092-45d3abf488f1-1733760662806 - [loading_requirement_container_meta:c0cf7500-904b-4328-a092-45d3abf488f1-1733760662806] = [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 = d95efb71-9955-422c-96de-2955893c9987-1733760662806 - [executable_block:d95efb71-9955-422c-96de-2955893c9987-1733760662806][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 = 8d40ba0c-9926-482c-b97b-dfb60db8a09d-1733760662806 - [loading_requirement_container_meta:8d40ba0c-9926-482c-b97b-dfb60db8a09d-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 97648 - 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 = 608 - y = 48 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 2b5e8842-ed5a-4c25-b8e1-8fa75195c8cd-1733760662806 - [loading_requirement_container_meta:2b5e8842-ed5a-4c25-b8e1-8fa75195c8cd-1733760662806] = [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 = 041800d1-0ed6-4d2b-b488-d340078edcfb-1733760662806 - [executable_block:041800d1-0ed6-4d2b-b488-d340078edcfb-1733760662806][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 = fd12eff0-d366-47b2-8030-b2c534e67175-1733760662806 - [loading_requirement_container_meta:fd12eff0-d366-47b2-8030-b2c534e67175-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 53084 - 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 = 324 - y = 84 - width = 152 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 62966d2e-f21f-44ab-8240-571c340fe1f9-1733760662806 - [loading_requirement_container_meta:62966d2e-f21f-44ab-8240-571c340fe1f9-1733760662806] = [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 = 017f27df-6b71-4a51-8d6d-f215f0c975fc-1733760662806 - [executable_block:017f27df-6b71-4a51-8d6d-f215f0c975fc-1733760662806][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 = 628edbe5-721b-4ea6-8fef-4c5e1b527313-1733760662806 - [loading_requirement_container_meta:628edbe5-721b-4ea6-8fef-4c5e1b527313-1733760662806] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 77884 - 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 = 480 - y = 84 - width = 152 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 953b583e-3608-4bba-8869-73eace983234-1733760662806 - [loading_requirement_container_meta:953b583e-3608-4bba-8869-73eace983234-1733760662806] = [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/overrides/config/fancymenu/customization/com.viaversion.viafabricplus.screen.impl.protocolselectionscreen_layout.txt b/overrides/config/fancymenu/customization/com.viaversion.viafabricplus.screen.impl.protocolselectionscreen_layout.txt deleted file mode 100644 index 2d04204..0000000 --- a/overrides/config/fancymenu/customization/com.viaversion.viafabricplus.screen.impl.protocolselectionscreen_layout.txt +++ /dev/null @@ -1,273 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = com.viaversion.viafabricplus.screen.impl.ProtocolSelectionScreen - render_custom_elements_behind_vanilla = false - last_edited_time = 1736851337773 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:b1563df8-cc59-4f2e-9902-7c61ea07cdbd-1736851224809] = [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 -} - -element { - button_element_executable_block_identifier = bc7ce586-1d38-452d-a7fd-a6863709a358-1736851243592 - [executable_action_instance:d37e53cf-0f49-4f5b-8b55-2a339dc452e5-1736851274352][action_type:opengui] = build-teams-start - [executable_block:bc7ce586-1d38-452d-a7fd-a6863709a358-1736851243592][type:generic] = [executables:d37e53cf-0f49-4f5b-8b55-2a339dc452e5-1736851274352;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = <- - navigatable = true - widget_active_state_requirement_container_identifier = 13d2b46f-40f6-42e9-8026-e73d69b626f9-1736851243592 - [loading_requirement_container_meta:13d2b46f-40f6-42e9-8026-e73d69b626f9-1736851243592] = [groups:][instances:] - element_type = custom_button - instance_identifier = b8f1e49d-1e97-46bc-b37f-ad030f7c409f-1736851243592 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = top-left - x = 5 - y = 5 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 623aea1c-d61a-4a22-8dff-95f1986ec223-1736851243592 - [loading_requirement_container_meta:623aea1c-d61a-4a22-8dff-95f1986ec223-1736851243592] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = d9f299d9-ae83-45ae-8b6d-16dc33b92524-1736851129420 - [executable_block:d9f299d9-ae83-45ae-8b6d-16dc33b92524-1736851129420][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 = d644af03-fb86-4a45-8a54-0840dfe6fcfc-1736851129420 - [loading_requirement_container_meta:d644af03-fb86-4a45-8a54-0840dfe6fcfc-1736851129420] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 5975 - 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 = 5 - y = 227 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = dcd1bafe-fcdb-41df-a4a6-837f5ccdb486-1736851129420 - [loading_requirement_container_meta:dcd1bafe-fcdb-41df-a4a6-837f5ccdb486-1736851129420] = [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 = 3788b7af-6caf-4ad9-bb7c-e3cd289079b8-1736851129420 - [executable_block:3788b7af-6caf-4ad9-bb7c-e3cd289079b8-1736851129420][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 = 35b2814d-ae3c-44d2-ad65-6d7b9f477a33-1736851129420 - [loading_requirement_container_meta:35b2814d-ae3c-44d2-ad65-6d7b9f477a33-1736851129420] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 897975 - 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 = 227 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7d5931e-7da9-4968-89c1-05d33a4824f1-1736851129420 - [loading_requirement_container_meta:c7d5931e-7da9-4968-89c1-05d33a4824f1-1736851129420] = [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 = bf10289f-9637-49d0-a181-75f0d4684223-1736851129420 - [executable_block:bf10289f-9637-49d0-a181-75f0d4684223-1736851129420][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 = c1d18af9-3790-4d95-84e0-7a36bc555536-1736851129420 - [loading_requirement_container_meta:c1d18af9-3790-4d95-84e0-7a36bc555536-1736851129420] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 39025 - 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 = 130 - y = 25 - width = 221 - height = 11 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 20080834-2372-4dd5-9b94-81b1cbd442be-1736851129420 - [loading_requirement_container_meta:20080834-2372-4dd5-9b94-81b1cbd442be-1736851129420] = [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 = 149b54b5-b69f-4779-a3d7-5c91568fe318-1736851129420 - [executable_block:149b54b5-b69f-4779-a3d7-5c91568fe318-1736851129420][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 = 3420cc3f-40bd-43e1-82a5-db80dcf03904-1736851129420 - [loading_requirement_container_meta:3420cc3f-40bd-43e1-82a5-db80dcf03904-1736851129420] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 55 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = vanilla - x = 5 - y = 5 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 3a71d116-d14f-464b-8b5a-03f0bf0cc2d9-1736851129420 - [loading_requirement_container_meta:3a71d116-d14f-464b-8b5a-03f0bf0cc2d9-1736851129420] = [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 = cc7d42e4-9659-424b-8c12-3acff7f6b48a-1736851129420 - [executable_block:cc7d42e4-9659-424b-8c12-3acff7f6b48a-1736851129420][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 = 5049c8b8-b790-43a0-8c28-261de4e5e989-1736851129420 - [loading_requirement_container_meta:5049c8b8-b790-43a0-8c28-261de4e5e989-1736851129420] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 8975 - 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 = 5 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 47d438db-450c-4894-801d-1f4d88f5ab19-1736851129420 - [loading_requirement_container_meta:47d438db-450c-4894-801d-1f4d88f5ab19-1736851129420] = [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/overrides/config/fancymenu/customization/connect_screen_layout.txt b/overrides/config/fancymenu/customization/connect_screen_layout.txt deleted file mode 100644 index fbc8bb8..0000000 --- a/overrides/config/fancymenu/customization/connect_screen_layout.txt +++ /dev/null @@ -1,379 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = connect_screen - render_custom_elements_behind_vanilla = true - last_edited_time = 1733897286865 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:a3b70e3f-21d8-45fe-b217-99ae9108faf3-1733897202632] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/backgrounds/{"placeholder":"getvariable","values":{"name":"background_index"}}.png - slide = false - repeat_texture = false - background_type = image -} - -customization { - action = backgroundoptions - keepaspectratio = true -} - -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 -} - -element { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = c301e553-031c-4f64-9635-73a2d5583694-1728249015352 - 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 = 0.5 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = 0 - y = 0 - width = 100 - height = 100 - stretch_x = true - stretch_y = true - stay_on_screen = true - element_loading_requirement_container_identifier = 3f020eed-b309-49dc-99ad-5b064d6f5c65-1728249015352 - [loading_requirement_container_meta:3f020eed-b309-49dc-99ad-5b064d6f5c65-1728249015352] = [groups:][instances:] -} - -element { - source = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - element_type = image - instance_identifier = 1535dd83-9238-44ba-936b-533aa6f4525b-1728228235697 - 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 = bottom-centered - x = -245 - y = -68 - width = 100 - height = 68 - stretch_x = true - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 77ea7b49-ae6f-40e9-8338-d41695e16bff-1728203225741 - [loading_requirement_container_meta:77ea7b49-ae6f-40e9-8338-d41695e16bff-1728203225741] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = 75e183ab-3164-4cd8-b398-e4a477ca4ce8-1728228246499 - [executable_action_instance:4f43fd07-e900-4439-a4ea-e2f6f7af2f1a-1728228300578][action_type:mimicbutton] = connect_screen:400382 - [executable_block:75e183ab-3164-4cd8-b398-e4a477ca4ce8-1728228246499][type:generic] = [executables:4f43fd07-e900-4439-a4ea-e2f6f7af2f1a-1728228300578;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Cancel - navigatable = true - widget_active_state_requirement_container_identifier = a693eb87-c418-4b67-aa42-2d0d0a108f11-1733329098386 - [loading_requirement_container_meta:a693eb87-c418-4b67-aa42-2d0d0a108f11-1733329098386] = [groups:][instances:] - element_type = custom_button - instance_identifier = c09517a3-35f0-4d2e-848b-66b33414d6a0-1728228246499 - 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 = bottom-centered - x = -64 - y = -30 - width = 128 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 939f4df6-4c89-404d-a902-bc1de7a8dfa2-1728228246499 - [loading_requirement_container_meta:939f4df6-4c89-404d-a902-bc1de7a8dfa2-1728228246499] = [groups:][instances:] -} - -element { - interactable = true - source = ^^^%n%{"placeholder":"vanillabuttonlabel","values":{"locator":"connect_screen:status"}}%n%^^^ - source_mode = direct - shadow = true - scale = 0.8 - base_color = #00FF00FF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 = eb2e821a-25f9-4451-a506-6ba8f47092de-1728228411947 - 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 = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = element - anchor_point_element = d3f2251a-e187-4dcb-9846-77d24addd8e5-1728228558500 - x = 0 - y = -16 - width = 200 - height = 12 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593 - [loading_requirement_container_meta:91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593] = [groups:][instances:] -} - -element { - interactable = true - source = ^^^%n%{"placeholder":"randomtext","values":{"path":"config/fancymenu/assets/tips.txt","interval":"2"}}%n%^^^ - source_mode = direct - shadow = true - scale = 0.8 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 = d3f2251a-e187-4dcb-9846-77d24addd8e5-1728228558500 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = every_time - fade_in_speed = 0.1 - fade_out = no_fading - fade_out_speed = 1.0 - base_opacity = 1.0 - auto_sizing = false - auto_sizing_base_screen_width = 1040 - auto_sizing_base_screen_height = 616 - sticky_anchor = false - anchor_point = bottom-centered - x = -288 - y = -47 - width = 200 - height = 12 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593 - [loading_requirement_container_meta:91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593] = [groups:][instances:] -} - -element { - bar_color = #00FF00 - background_color = #000000 - direction = right - progress_for_element_anchor = false - progress_source = 100 - value_mode = percentage - element_type = progress_bar - instance_identifier = 164ef7c4-08a9-4fb5-8761-0ffae08ca405-1733329289196 - 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 = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = bottom-centered - x = -81 - y = -70 - width = 200 - height = 2 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 183de2cf-8a12-4261-8691-8f4864c3629b-1733329289196 - [loading_requirement_container_meta:183de2cf-8a12-4261-8691-8f4864c3629b-1733329289196] = [groups:][instances:] -} - -element { - is_async = true - tick_delay = 5000 - tick_mode = normal - ticker_element_executable_block_identifier = f0574684-bc9f-46d0-9e0d-694ce81bba61-1733743327135 - [executable_action_instance:0ca2c7fe-d95c-4405-bc0f-ab175444cd9f-1733743354926][action_type:set_variable] = background_index:{"placeholder":"random_number","values":{"min":"0","max":"4"}} - [executable_block:f0574684-bc9f-46d0-9e0d-694ce81bba61-1733743327135][type:generic] = [executables:0ca2c7fe-d95c-4405-bc0f-ab175444cd9f-1733743354926;] - element_type = fancymenu_customization_item_ticker - instance_identifier = a91d883e-1620-495c-8c08-a145cf40ff35-1733756497225 - 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 = 1040 - auto_sizing_base_screen_height = 616 - sticky_anchor = false - anchor_point = bottom-left - x = 2 - y = -42 - width = 40 - height = 40 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f565b51b-13e4-445a-a967-8ac16134b307-1733743327135 - [loading_requirement_container_meta:f565b51b-13e4-445a-a967-8ac16134b307-1733743327135] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = 267797cf-658f-4871-a5ec-fd09025fce8f-1728181136546 - [executable_block:267797cf-658f-4871-a5ec-fd09025fce8f-1728181136546][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 = 52f04135-22d3-4539-bf27-a6efbcbc40da-1733329098386 - [loading_requirement_container_meta:52f04135-22d3-4539-bf27-a6efbcbc40da-1733329098386] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 400382 - 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 = 160 - y = 209 - width = 200 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 9245b342-7841-4011-a20c-aba0a81219d6-1728181136546 - [loading_requirement_container_meta:9245b342-7841-4011-a20c-aba0a81219d6-1728181136546] = [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 = b9104a4f-745d-4948-a9cc-710643e095a2-1728181136546 - [executable_block:b9104a4f-745d-4948-a9cc-710643e095a2-1728181136546][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 = a4968edd-1a06-4a31-b3b8-a4669e90984c-1733329098386 - [loading_requirement_container_meta:a4968edd-1a06-4a31-b3b8-a4669e90984c-1733329098386] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = status - 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 = 160 - y = 104 - width = 200 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = bb33823a-758d-4dd4-b7c6-3a55d90eb883-1728181136546 - [loading_requirement_container_meta:bb33823a-758d-4dd4-b7c6-3a55d90eb883-1728181136546] = [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/overrides/config/fancymenu/customization/create_world_screen_layout.txt b/overrides/config/fancymenu/customization/create_world_screen_layout.txt deleted file mode 100644 index bcb8b05..0000000 --- a/overrides/config/fancymenu/customization/create_world_screen_layout.txt +++ /dev/null @@ -1,324 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = create_world_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733549968039 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:e8a84469-d413-4d23-b0ce-c0072d36f34b-1733549721209] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -vanilla_button { - button_element_executable_block_identifier = d23ceb74-6530-4f81-a4dc-0df58315ab13-1733549721210 - [executable_block:d23ceb74-6530-4f81-a4dc-0df58315ab13-1733549721210][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 = 0f36d50c-e7c0-4284-86bf-2bb39c7d7ccd-1733549721210 - [loading_requirement_container_meta:0f36d50c-e7c0-4284-86bf-2bb39c7d7ccd-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 396161 - 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 = 226 - y = 56 - width = 55 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d4a18c53-3dda-408b-97fd-512dd00c5c47-1733549721210 - [loading_requirement_container_meta:d4a18c53-3dda-408b-97fd-512dd00c5c47-1733549721210] = [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 = 2de6926e-247d-46a7-af83-e310022cbaa9-1733549721210 - [executable_block:2de6926e-247d-46a7-af83-e310022cbaa9-1733549721210][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 = af692b23-3b8c-42e3-916a-3636fbfc6ca5-1733549721210 - [loading_requirement_container_meta:af692b23-3b8c-42e3-916a-3636fbfc6ca5-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = allow_cheats_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 = 225 - y = 153 - width = 210 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 778d94c7-71ab-43cd-8086-47e165364076-1733549721210 - [loading_requirement_container_meta:778d94c7-71ab-43cd-8086-47e165364076-1733549721210] = [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 = b76fec3e-7efa-485f-a708-d57429fa2636-1733549721210 - [executable_block:b76fec3e-7efa-485f-a708-d57429fa2636-1733549721210][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 = c7c4970b-bb00-4e2f-a1df-d22d68e1f234-1733549721210 - [loading_requirement_container_meta:c7c4970b-bb00-4e2f-a1df-d22d68e1f234-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = difficulty_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 = 225 - y = 125 - width = 210 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 6e7eeac2-7121-42bc-b83a-76cb68c5a706-1733549721210 - [loading_requirement_container_meta:6e7eeac2-7121-42bc-b83a-76cb68c5a706-1733549721210] = [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 = 99ba4900-bdb6-47ba-8d80-9c9873aabf1a-1733549721210 - [executable_block:99ba4900-bdb6-47ba-8d80-9c9873aabf1a-1733549721210][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 = 0d2a75ea-3909-4ec5-b98a-8b2893bebbfd-1733549721210 - [loading_requirement_container_meta:0d2a75ea-3909-4ec5-b98a-8b2893bebbfd-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = cancel_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 = 334 - y = 344 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c02d7e6a-0937-4fbb-b859-2b0aa229ea45-1733549721210 - [loading_requirement_container_meta:c02d7e6a-0937-4fbb-b859-2b0aa229ea45-1733549721210] = [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 = a5d4c75e-ec93-41d7-a269-f87811ccc6dd-1733549721210 - [executable_block:a5d4c75e-ec93-41d7-a269-f87811ccc6dd-1733549721210][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 = aa3b2822-f113-49a7-ac5a-782ff49a8440-1733549721210 - [loading_requirement_container_meta:aa3b2822-f113-49a7-ac5a-782ff49a8440-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = gamemode_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 = 225 - y = 97 - width = 210 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = a79cec07-499e-4ec9-9c7e-252914c1a7af-1733549721210 - [loading_requirement_container_meta:a79cec07-499e-4ec9-9c7e-252914c1a7af-1733549721210] = [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 = 8635f0f6-a055-4508-80a2-c7fbd6a49dce-1733549721210 - [executable_block:8635f0f6-a055-4508-80a2-c7fbd6a49dce-1733549721210][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 = 4513917a-7074-4ca3-9f20-30ed238835f1-1733549721210 - [loading_requirement_container_meta:4513917a-7074-4ca3-9f20-30ed238835f1-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 396174 - 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 = 226 - y = 69 - width = 208 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = b62340f0-ae49-41b7-8ba2-b92cca370a65-1733549721210 - [loading_requirement_container_meta:b62340f0-ae49-41b7-8ba2-b92cca370a65-1733549721210] = [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 = a445dd81-4af7-4d88-b1a8-6f2a8a0bb43a-1733549721210 - [executable_block:a445dd81-4af7-4d88-b1a8-6f2a8a0bb43a-1733549721210][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 = ff095e6d-c5ff-4b1f-bfa1-5c3b5d1a8efa-1733549721210 - [loading_requirement_container_meta:ff095e6d-c5ff-4b1f-bfa1-5c3b5d1a8efa-1733549721210] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = create_world_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 = 176 - y = 344 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 2617623b-0e94-4d79-b785-907ebaa8496a-1733549721210 - [loading_requirement_container_meta:2617623b-0e94-4d79-b785-907ebaa8496a-1733549721210] = [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/overrides/config/fancymenu/customization/credits_layout.txt b/overrides/config/fancymenu/customization/credits_layout.txt deleted file mode 100644 index 795cfaf..0000000 --- a/overrides/config/fancymenu/customization/credits_layout.txt +++ /dev/null @@ -1,37 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = credits - render_custom_elements_behind_vanilla = false - last_edited_time = 1736860247559 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:6f219628-382a-4109-9d6a-365b2835f8dd-1736860243131] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - diff --git a/overrides/config/fancymenu/customization/disconnected_screen_layout.txt b/overrides/config/fancymenu/customization/disconnected_screen_layout.txt deleted file mode 100644 index 461d39f..0000000 --- a/overrides/config/fancymenu/customization/disconnected_screen_layout.txt +++ /dev/null @@ -1,384 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = disconnected_screen - render_custom_elements_behind_vanilla = true - last_edited_time = 1733803492210 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:a82dfbf4-d683-4ee1-a77c-e2ee4f218351-1733803476474] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/backgrounds/{"placeholder":"getvariable","values":{"name":"background_index"}}.png - slide = false - repeat_texture = false - background_type = image -} - -customization { - action = backgroundoptions - keepaspectratio = true -} - -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 -} - -element { - shape = rectangle - color = #00000080 - element_type = shape - instance_identifier = f7379ef4-483f-4709-9eb6-42fd07a4ee92-1728248851367 - 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 = 0 - y = 0 - width = 100 - height = 100 - stretch_x = true - stretch_y = true - stay_on_screen = true - element_loading_requirement_container_identifier = 0e4e7295-6da3-4f3c-a08f-1bfcd20948ea-1728248851367 - [loading_requirement_container_meta:0e4e7295-6da3-4f3c-a08f-1bfcd20948ea-1728248851367] = [groups:][instances:] -} - -element { - source = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - element_type = image - instance_identifier = 53be9ae2-2dbd-46e2-899e-7c0e4eca0eb5-1728203225741 - 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 = bottom-centered - x = -245 - y = -68 - width = 100 - height = 68 - stretch_x = true - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 77ea7b49-ae6f-40e9-8338-d41695e16bff-1728203225741 - [loading_requirement_container_meta:77ea7b49-ae6f-40e9-8338-d41695e16bff-1728203225741] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = 25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659 - [executable_action_instance:0d00999c-612f-46a3-9999-d7f9275c3663-1728203923146][action_type:opengui] = build-teams-start - [executable_block:25a4b4fe-0960-47c6-877a-0f74e19f76d0-1728047331659][type:generic] = [executables:0d00999c-612f-46a3-9999-d7f9275c3663-1728203923146;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 3cf5a781-fdbf-4d49-bb07-cd34136b9f4e-1733802671458 - [loading_requirement_container_meta:3cf5a781-fdbf-4d49-bb07-cd34136b9f4e-1733802671458] = [groups:][instances:] - element_type = custom_button - instance_identifier = 89b4deb8-b75b-46ea-ad0b-1321c806fb1d-1728203876604 - 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 = bottom-centered - x = -64 - y = -30 - width = 128 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 713ae3b4-4537-4264-8699-673ec0020311-1728047331658 - [loading_requirement_container_meta:713ae3b4-4537-4264-8699-673ec0020311-1728047331658] = [groups:][instances:] -} - -element { - interactable = true - source = ^^^%n%Facing issues? Join our Discord for support: [http://go.buildtheearth.net/dc](http://go.buildtheearth.net/dc)%n%Or join the Build Region Discord: [{"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['invite']","source":"config/fancymenu/assets/buildteams.json"}}]({"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['invite']","source":"config/fancymenu/assets/buildteams.json"}})%n%^^^%n% - source_mode = direct - shadow = true - scale = 0.8 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = true - auto_line_wrapping = false - 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 = 62b044bd-9b33-40f9-83f2-4942dd5c9ed9-1728210884593 - 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 = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = bottom-centered - x = -288 - y = -52 - width = 200 - height = 21 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593 - [loading_requirement_container_meta:91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593] = [groups:][instances:] -} - -element { - interactable = true - source = ^^^%n%{"placeholder":"vanillabuttonlabel","values":{"locator":"disconnected_screen:419469"}}%n%^^^ - source_mode = direct - shadow = true - scale = 0.8 - base_color = #FF0000FF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 = 71dbac3d-4c26-4ee0-868e-22680e1994d5-1728211105294 - 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 = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = element - anchor_point_element = 62b044bd-9b33-40f9-83f2-4942dd5c9ed9-1728210884593 - x = 0 - y = -11 - width = 200 - height = 12 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593 - [loading_requirement_container_meta:91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593] = [groups:][instances:] -} - -element { - shape = rectangle - color = #FF0000FF - element_type = shape - instance_identifier = 1004b1ee-aab7-4008-8194-002909e96656-1728247850524 - 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 = bottom-centered - x = -288 - y = -70 - width = 100 - height = 2 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 4582bd0b-8030-463e-baf9-d478ca01e11f-1728247850524 - [loading_requirement_container_meta:4582bd0b-8030-463e-baf9-d478ca01e11f-1728247850524] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = cacf11d5-37a7-4cb5-afdc-f85a455a6a2b-1728211476472 - [executable_block:cacf11d5-37a7-4cb5-afdc-f85a455a6a2b-1728211476472][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 = 65253aed-8486-43b8-9f22-aef5a754ffc7-1733802671459 - [loading_requirement_container_meta:65253aed-8486-43b8-9f22-aef5a754ffc7-1733802671459] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 400519 - 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 = 235 - y = 183 - width = 200 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 99cde489-3206-46a4-80af-6031fc179e60-1728211476472 - [loading_requirement_container_meta:99cde489-3206-46a4-80af-6031fc179e60-1728211476472] = [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 = 0be2f8e1-861f-43f0-80ef-da6d1b5921de-1733802671459 - [executable_block:0be2f8e1-861f-43f0-80ef-da6d1b5921de-1733802671459][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 = 115f4e49-2739-4dc0-b40d-78ccc663d17d-1733802671459 - [loading_requirement_container_meta:115f4e49-2739-4dc0-b40d-78ccc663d17d-1733802671459] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 247498 - 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 = 82 - y = 162 - width = 506 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = a6b07ace-1c31-45ff-8fbe-93937df14f51-1733802671459 - [loading_requirement_container_meta:a6b07ace-1c31-45ff-8fbe-93937df14f51-1733802671459] = [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 = d5751e15-4b33-46cd-ab80-3195a363b904-1728244456326 - [executable_block:d5751e15-4b33-46cd-ab80-3195a363b904-1728244456326][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 = f96cb97d-a5f1-484d-aaaf-05b46330e3f9-1733802671459 - [loading_requirement_container_meta:f96cb97d-a5f1-484d-aaaf-05b46330e3f9-1733802671459] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 419469 - 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 = 254 - y = 133 - width = 161 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 116ee9e8-8a63-4f1f-ac2a-93620518a5d8-1728244456326 - [loading_requirement_container_meta:116ee9e8-8a63-4f1f-ac2a-93620518a5d8-1728244456326] = [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/overrides/config/fancymenu/customization/drippy_loading_overlay_layout.txt b/overrides/config/fancymenu/customization/drippy_loading_overlay_layout.txt deleted file mode 100644 index e6340b9..0000000 --- a/overrides/config/fancymenu/customization/drippy_loading_overlay_layout.txt +++ /dev/null @@ -1,148 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = drippy_loading_overlay - render_custom_elements_behind_vanilla = false - last_edited_time = 1733574767377 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:a66f1e92-d84e-4276-a118-e965e2b062ea-1733574743454] = [groups:][instances:] -} - -menu_background { - color = #000000 - background_type = drippy_color_background -} - -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 -} - -element { - source = [source:local]/config/fancymenu/assets/banners/logo.gif - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - element_type = image - instance_identifier = fa306ff1-5aa6-47da-9466-8d2f671bb720-1733574693063 - 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 = 1086 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = mid-centered - x = -32 - y = -32 - width = 64 - height = 64 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 77159f53-9172-410d-ae84-d18cb06f7d37-1733574693063 - [loading_requirement_container_meta:77159f53-9172-410d-ae84-d18cb06f7d37-1733574693063] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = 3f41d018-5658-4d20-9adb-8ef91b8921f3-1728344309058 - [executable_block:3f41d018-5658-4d20-9adb-8ef91b8921f3-1728344309058][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 = a0df6261-d8a0-4f67-ad73-8b38e3546666-1733574689952 - [loading_requirement_container_meta:a0df6261-d8a0-4f67-ad73-8b38e3546666-1733574689952] = [groups:][instances:] - 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 = 1086 - auto_sizing_base_screen_height = 620 - sticky_anchor = false - anchor_point = vanilla - x = 116 - y = 253 - width = 310 - height = 10 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 43ca8fca-9f52-48b6-ad2f-ea77bf920309-1728344309058 - [loading_requirement_container_meta:43ca8fca-9f52-48b6-ad2f-ea77bf920309-1728344309058] = [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 = f4532d5d-bb4a-41bb-9072-016fe0da4ea0-1728344309058 - [executable_block:f4532d5d-bb4a-41bb-9072-016fe0da4ea0-1728344309058][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 = f82f67c8-e7cc-498c-99cc-205af3d2940d-1733574689952 - [loading_requirement_container_meta:f82f67c8-e7cc-498c-99cc-205af3d2940d-1733574689952] = [groups:][instances:] - 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 = 116 - y = 117 - width = 310 - height = 76 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 47a19783-b6b0-4829-824b-eda20491d0c1-1728344309058 - [loading_requirement_container_meta:47a19783-b6b0-4829-824b-eda20491d0c1-1728344309058] = [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/overrides/config/fancymenu/customization/generic_dirt_message_screen_layout.txt b/overrides/config/fancymenu/customization/generic_dirt_message_screen_layout.txt deleted file mode 100644 index 84cd71a..0000000 --- a/overrides/config/fancymenu/customization/generic_dirt_message_screen_layout.txt +++ /dev/null @@ -1,78 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = generic_dirt_message_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733550028392 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:baec892f-0cf2-482b-8b2f-328c6432931a-1733550003878] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -vanilla_button { - button_element_executable_block_identifier = 21fad98f-3f81-4a5f-9b19-21851ea8a118-1733550003878 - [executable_block:21fad98f-3f81-4a5f-9b19-21851ea8a118-1733550003878][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 = e3994b40-ce3a-4876-9cbe-71a092c63dc3-1733550003878 - [loading_requirement_container_meta:e3994b40-ce3a-4876-9cbe-71a092c63dc3-1733550003878] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = message - 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 = 217 - y = 181 - width = 227 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 52bd07ae-bf81-4862-a68b-aad8d722e024-1733550003878 - [loading_requirement_container_meta:52bd07ae-bf81-4862-a68b-aad8d722e024-1733550003878] = [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/overrides/config/fancymenu/customization/join_multiplayer_screen_layout.txt b/overrides/config/fancymenu/customization/join_multiplayer_screen_layout.txt deleted file mode 100644 index 1d0179e..0000000 --- a/overrides/config/fancymenu/customization/join_multiplayer_screen_layout.txt +++ /dev/null @@ -1,316 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = join_multiplayer_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1729926391181 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:991729f1-c678-411d-a5b8-3291b3835edd-1729926150888] = [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 -} - -element { - button_element_executable_block_identifier = f6d48f3b-c31d-4a3c-9d73-ecda0e506f21-1728111259041 - [executable_action_instance:7276562b-d325-48d1-93ad-3584b2fcc027-1728111279126][action_type:opengui] = build-teams-start - [executable_block:f6d48f3b-c31d-4a3c-9d73-ecda0e506f21-1728111259041][type:generic] = [executables:7276562b-d325-48d1-93ad-3584b2fcc027-1728111279126;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - element_type = custom_button - instance_identifier = 4dcbcad9-bdf8-43d0-ae28-61c327b826af-1728111259041 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = element - anchor_point_element = 502970 - x = 79 - y = 0 - width = 73 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c14fb248-eb65-4a98-9f1f-398c77ad246c-1728111259041 - [loading_requirement_container_meta:c14fb248-eb65-4a98-9f1f-398c77ad246c-1728111259041] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = 422c6a5b-af7d-4f1e-aa16-21b29cebad3e-1728111229012 - [executable_block:422c6a5b-af7d-4f1e-aa16-21b29cebad3e-1728111229012][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 = 346970 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 59 - y = 210 - width = 74 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = a1b94226-16b3-4634-9109-4cf5b226a76b-1728111229012 - [loading_requirement_container_meta:a1b94226-16b3-4634-9109-4cf5b226a76b-1728111229012] = [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 = 33357a42-1bc3-470c-bfc0-82e978116888-1728111229012 - [executable_block:33357a42-1bc3-470c-bfc0-82e978116888-1728111229012][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 = 580970 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 293 - y = 210 - width = 74 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 09734ce8-3c74-4e6b-8630-0cfd21cb9b86-1728111229012 - [loading_requirement_container_meta:09734ce8-3c74-4e6b-8630-0cfd21cb9b86-1728111229012] = [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 = 8cb97c22-caef-4f4c-bed6-8779ae9b8f49-1728111229012 - [executable_block:8cb97c22-caef-4f4c-bed6-8779ae9b8f49-1728111229012][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 = 502970 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 215 - y = 210 - width = 74 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = b9de4b78-2a61-4a0d-817a-9fa2ce830c45-1728111229012 - [loading_requirement_container_meta:b9de4b78-2a61-4a0d-817a-9fa2ce830c45-1728111229012] = [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 = c1e697a2-171c-412d-b737-677fc12a3004-1728111229012 - [executable_block:c1e697a2-171c-412d-b737-677fc12a3004-1728111229012][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 = 424970 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 137 - y = 210 - width = 74 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 987ec97a-9c7c-4580-91df-9cf9e6869314-1728111229012 - [loading_requirement_container_meta:987ec97a-9c7c-4580-91df-9cf9e6869314-1728111229012] = [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 = dd666df2-2d8f-4b1c-89f2-d539a7d8244d-1728111229012 - [executable_block:dd666df2-2d8f-4b1c-89f2-d539a7d8244d-1728111229012][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 = 554946 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 267 - y = 186 - width = 100 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 52786e63-3200-455f-9d8c-9a886c20f634-1728111229012 - [loading_requirement_container_meta:52786e63-3200-455f-9d8c-9a886c20f634-1728111229012] = [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 = 11b8f650-09f9-49a0-8a3f-e8bd3d7f34b0-1728111229012 - [executable_block:11b8f650-09f9-49a0-8a3f-e8bd3d7f34b0-1728111229012][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 = 450946 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 163 - y = 186 - width = 100 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 75a1e958-3c0f-4d5e-907d-020cbbdae338-1728111229012 - [loading_requirement_container_meta:75a1e958-3c0f-4d5e-907d-020cbbdae338-1728111229012] = [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 = ceda24b4-12d8-4848-9a42-024bf805f429-1728111229012 - [executable_block:ceda24b4-12d8-4848-9a42-024bf805f429-1728111229012][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 = 346946 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 59 - y = 186 - width = 100 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 815b35d4-8b73-4cc0-a339-a0ef6d020cd6-1728111229011 - [loading_requirement_container_meta:815b35d4-8b73-4cc0-a339-a0ef6d020cd6-1728111229011] = [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 = 42257460-7b6d-4c30-bc63-b110def98d84-1728172973899 - [executable_block:42257460-7b6d-4c30-bc63-b110def98d84-1728172973899][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 = 8975 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in = false - fade_in_speed = 1.0 - anchor_point = vanilla - x = 324 - y = 5 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 759a60b4-8b75-4d0e-b36d-5f0652185590-1728172973899 - [loading_requirement_container_meta:759a60b4-8b75-4d0e-b36d-5f0652185590-1728172973899] = [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/overrides/config/fancymenu/customization/level_loading_screen_layout.txt b/overrides/config/fancymenu/customization/level_loading_screen_layout.txt deleted file mode 100644 index 1369e1a..0000000 --- a/overrides/config/fancymenu/customization/level_loading_screen_layout.txt +++ /dev/null @@ -1,119 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = level_loading_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733759698123 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:1c11495e-7bb1-4aa4-9d7e-376aa3139e66-1733759675216] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -vanilla_button { - button_element_executable_block_identifier = 497c54a1-c727-4f19-818d-ec49a1a4553c-1733759675217 - [executable_block:497c54a1-c727-4f19-818d-ec49a1a4553c-1733759675217][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 = 8239477e-10dd-4c51-a45d-3cadb7cb04f5-1733759675217 - [loading_requirement_container_meta:8239477e-10dd-4c51-a45d-3cadb7cb04f5-1733759675217] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = percentage - 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 = 162 - y = 112 - width = 200 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 317b45b8-a6a4-4714-9b35-2e345caf3425-1733759675217 - [loading_requirement_container_meta:317b45b8-a6a4-4714-9b35-2e345caf3425-1733759675217] = [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 = 5f2b5b46-957d-4f21-aa90-a7b47f682fef-1733759675217 - [executable_block:5f2b5b46-957d-4f21-aa90-a7b47f682fef-1733759675217][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 = cbef5867-5924-4e83-b252-7fb9e191c5b2-1733759675217 - [loading_requirement_container_meta:cbef5867-5924-4e83-b252-7fb9e191c5b2-1733759675217] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = chunks - 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 = 212 - y = 126 - width = 100 - height = 100 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 4c1086f9-e634-4241-af65-27acea50f59e-1733759675217 - [loading_requirement_container_meta:4c1086f9-e634-4241-af65-27acea50f59e-1733759675217] = [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/overrides/config/fancymenu/customization/options_screen_layout.txt b/overrides/config/fancymenu/customization/options_screen_layout.txt deleted file mode 100644 index 8741f8d..0000000 --- a/overrides/config/fancymenu/customization/options_screen_layout.txt +++ /dev/null @@ -1,651 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = options_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1738267360345 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:63bf7403-75cb-4986-a6d5-2615f078a29e-1738267353605] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -element { - button_element_executable_block_identifier = 04394ebc-5cd1-4e90-8676-da1728026266-1736857381995 - [executable_action_instance:ff8edfb6-a28b-4e2e-8acb-e572463b60d6-1736857799676][action_type:mimicbutton] = title_screen:modmenu_titlescreen_mods_button - [executable_block:04394ebc-5cd1-4e90-8676-da1728026266-1736857381995][type:generic] = [executables:ff8edfb6-a28b-4e2e-8acb-e572463b60d6-1736857799676;] - restartbackgroundanimations = true - loopbackgroundanimations = 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 = 4a4df3be-2e14-4e64-9be3-16634e1a7808-1736857381995 - [loading_requirement_container_meta:4a4df3be-2e14-4e64-9be3-16634e1a7808-1736857381995] = [groups:][instances:] - element_type = custom_button - instance_identifier = fd4bd2e8-0c58-49b4-a987-2e6aa2f97671-1736857381995 - 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 = 1066 - auto_sizing_base_screen_height = 668 - sticky_anchor = false - anchor_point = element - anchor_point_element = 346163 - x = 0 - y = 24 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0d30ff02-7bf2-435f-b4a4-d067862d4b1f-1736857381995 - [loading_requirement_container_meta:0d30ff02-7bf2-435f-b4a4-d067862d4b1f-1736857381995] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = 6abaecf5-d2da-4894-a59a-53b83d772011-1728301250678 - [executable_block:6abaecf5-d2da-4894-a59a-53b83d772011-1728301250678][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 = 1f3745ad-f552-4a01-b3f9-95b2c7a4469d-1733569225740 - [loading_requirement_container_meta:1f3745ad-f552-4a01-b3f9-95b2c7a4469d-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346163 - 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 = 163 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = ba8d1b78-6368-4ed9-bb3b-a4fa7e8c1b6f-1728301250678 - [loading_requirement_container_meta:ba8d1b78-6368-4ed9-bb3b-a4fa7e8c1b6f-1728301250678] = [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 = 4f29a26b-016a-44fc-83bb-8bce9670533e-1728301250678 - [executable_block:4f29a26b-016a-44fc-83bb-8bce9670533e-1728301250678][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 = b1d5a6bb-d42d-4433-a936-1bdae4429461-1733569225740 - [loading_requirement_container_meta:b1d5a6bb-d42d-4433-a936-1bdae4429461-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 34629 - 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 = 29 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = fc2021cd-9c8d-4dde-96a4-cd26a3f9613d-1728301250678 - [loading_requirement_container_meta:fc2021cd-9c8d-4dde-96a4-cd26a3f9613d-1728301250678] = [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 = 0c0d3afc-8f5a-48c6-b432-75a6bf99e515-1728301250678 - [executable_block:0c0d3afc-8f5a-48c6-b432-75a6bf99e515-1728301250678][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 = 41cdd20d-bdbf-4f9b-9222-87cf2e1161ff-1733569225740 - [loading_requirement_container_meta:41cdd20d-bdbf-4f9b-9222-87cf2e1161ff-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504139 - 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 = 270 - y = 139 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = eaf65945-a5bb-48ee-8d12-2c64459265d8-1728301250678 - [loading_requirement_container_meta:eaf65945-a5bb-48ee-8d12-2c64459265d8-1728301250678] = [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 = 9c1251f1-3f46-4218-a1de-fb6d49d6bce2-1728301250678 - [executable_block:9c1251f1-3f46-4218-a1de-fb6d49d6bce2-1728301250678][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 = b3a5aa7a-5253-4b2b-894d-d1f1a16b79d6-1733569225740 - [loading_requirement_container_meta:b3a5aa7a-5253-4b2b-894d-d1f1a16b79d6-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346187 - 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 = 187 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = ed9351cf-4522-481e-97b5-012797ce090a-1728301250678 - [loading_requirement_container_meta:ed9351cf-4522-481e-97b5-012797ce090a-1728301250678] = [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 = f64e3c80-b80f-446c-a81c-c70d2e2edb03-1728301250678 - [executable_block:f64e3c80-b80f-446c-a81c-c70d2e2edb03-1728301250678][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 = f9e02e09-8718-4318-bad5-e94a40adb8cb-1733569225740 - [loading_requirement_container_meta:f9e02e09-8718-4318-bad5-e94a40adb8cb-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504187 - 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 = 34629 - x = 158 - y = 0 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = afc5aec0-4ac3-455c-bc82-95d995f15197-1728301250678 - [loading_requirement_container_meta:afc5aec0-4ac3-455c-bc82-95d995f15197-1728301250678] = [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 = 2193f8d3-490d-4c47-b1cb-d4f8a002823e-1728301250678 - [executable_block:2193f8d3-490d-4c47-b1cb-d4f8a002823e-1728301250678][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 = 4676b847-ec08-440d-8bcd-f436e7fdc30e-1733569225740 - [loading_requirement_container_meta:4676b847-ec08-440d-8bcd-f436e7fdc30e-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 34691 - 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 = 91 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 6ef5528e-4dca-42e3-a213-963fb78cfc20-1728301250678 - [loading_requirement_container_meta:6ef5528e-4dca-42e3-a213-963fb78cfc20-1728301250678] = [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 = 3b992047-6b4d-46e6-b834-b0014c7627f0-1728301250678 - [executable_block:3b992047-6b4d-46e6-b834-b0014c7627f0-1728301250678][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 = ff2fdb34-844b-4463-a485-8d6d98203018-1733569225740 - [loading_requirement_container_meta:ff2fdb34-844b-4463-a485-8d6d98203018-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346139 - 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 = 139 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 5582b58c-50c7-420a-870d-2f57646402ae-1728301250678 - [loading_requirement_container_meta:5582b58c-50c7-420a-870d-2f57646402ae-1728301250678] = [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 = 5ace5150-5c95-4056-9f9a-db5b080be1a8-1728301250678 - [executable_block:5ace5150-5c95-4056-9f9a-db5b080be1a8-1728301250678][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 = 49c87d48-d6a8-4ef1-ab49-082d3da6a92f-1733569225740 - [loading_requirement_container_meta:49c87d48-d6a8-4ef1-ab49-082d3da6a92f-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 50491 - 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 = 270 - y = 91 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = ee4ec9a1-3730-4a76-8e20-8436a9482844-1728301250678 - [loading_requirement_container_meta:ee4ec9a1-3730-4a76-8e20-8436a9482844-1728301250678] = [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 = a74666eb-0e0e-4677-887e-55e20b674325-1728301250678 - [executable_block:a74666eb-0e0e-4677-887e-55e20b674325-1728301250678][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 = f9a0a0fc-cb1c-434e-825a-5d280f92e0a7-1733569225740 - [loading_requirement_container_meta:f9a0a0fc-cb1c-434e-825a-5d280f92e0a7-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 50429 - 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 = 270 - y = 29 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 01e29cba-8774-41a0-9e74-5e74f64693f3-1728301250678 - [loading_requirement_container_meta:01e29cba-8774-41a0-9e74-5e74f64693f3-1728301250678] = [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 = 01692be2-d68a-4f0c-99e0-17b1b7c9fd75-1728301250678 - [executable_block:01692be2-d68a-4f0c-99e0-17b1b7c9fd75-1728301250678][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 = 97e1f698-75c0-4d69-96eb-1b5d7dd6a089-1733569225740 - [loading_requirement_container_meta:97e1f698-75c0-4d69-96eb-1b5d7dd6a089-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504163 - 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 = 270 - y = 163 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 8342e15e-213f-4e90-8e40-26c025ecc14b-1728301250678 - [loading_requirement_container_meta:8342e15e-213f-4e90-8e40-26c025ecc14b-1728301250678] = [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 = 8f15d2b0-1de5-4a29-a4de-d8491e694156-1728301250678 - [executable_block:8f15d2b0-1de5-4a29-a4de-d8491e694156-1728301250678][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 = ed25e1e1-eabd-45b5-8f2d-4e71556aa1cd-1733569225740 - [loading_requirement_container_meta:ed25e1e1-eabd-45b5-8f2d-4e71556aa1cd-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504115 - 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 = 270 - y = 115 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 8c02d090-a83c-4386-9caa-6203c2467bc8-1728301250678 - [loading_requirement_container_meta:8c02d090-a83c-4386-9caa-6203c2467bc8-1728301250678] = [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 = f145b1f3-6b33-40a9-b048-ea2c52fa29da-1728301250678 - [executable_block:f145b1f3-6b33-40a9-b048-ea2c52fa29da-1728301250678][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 = b56c82f8-77f6-4b01-90da-66ba038c374b-1733569225740 - [loading_requirement_container_meta:b56c82f8-77f6-4b01-90da-66ba038c374b-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 400974 - 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 = 166 - y = 308 - width = 200 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = b66a6195-5dc1-4d00-aa61-c435125523dc-1728301250678 - [loading_requirement_container_meta:b66a6195-5dc1-4d00-aa61-c435125523dc-1728301250678] = [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 = 18b7d325-3dd7-4233-a127-3e2a206f4973-1728301250678 - [executable_block:18b7d325-3dd7-4233-a127-3e2a206f4973-1728301250678][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 = 535457d6-fe26-4cd5-a639-d833f224cedd-1733569225740 - [loading_requirement_container_meta:535457d6-fe26-4cd5-a639-d833f224cedd-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346115 - 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 = 115 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 2c056e63-b17a-44fc-9d8c-80c37d40e41b-1728301250678 - [loading_requirement_container_meta:2c056e63-b17a-44fc-9d8c-80c37d40e41b-1728301250678] = [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 = 2138dc78-39f9-439c-a3de-2169f2b07a38-1728301250678 - [executable_block:2138dc78-39f9-439c-a3de-2169f2b07a38-1728301250678][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 = 2c1abb9b-23e9-4f4f-a2c4-62a764dc7c30-1733569225740 - [loading_requirement_container_meta:2c1abb9b-23e9-4f4f-a2c4-62a764dc7c30-1733569225740] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 48212 - 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 = 248 - y = 12 - width = 36 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 017311a9-de1e-4305-9304-9e7642fa5807-1728301250678 - [loading_requirement_container_meta:017311a9-de1e-4305-9304-9e7642fa5807-1728301250678] = [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/overrides/config/fancymenu/customization/pause-calculator_layout.txt b/overrides/config/fancymenu/customization/pause-calculator_layout.txt deleted file mode 100644 index e880856..0000000 --- a/overrides/config/fancymenu/customization/pause-calculator_layout.txt +++ /dev/null @@ -1,881 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = pause-calculator - render_custom_elements_behind_vanilla = false - last_edited_time = 1733486207270 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:7fb29527-756e-474e-8df7-92b0d2103a02-1733486127773] = [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 -} - -element { - button_element_executable_block_identifier = 3fd4972f-c695-40b6-9ad9-48005d17c7bb-1733461094242 - [executable_block:3fd4972f-c695-40b6-9ad9-48005d17c7bb-1733461094242][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = 4edaa170-d53e-4306-a2e5-14a69346c3fc-1733461094242 - [loading_requirement_container_meta:4edaa170-d53e-4306-a2e5-14a69346c3fc-1733461094242] = [groups:][instances:ff4cb610-a206-4e26-ad2f-85d63b4212dc-1733461106560;] - [loading_requirement:fancymenu_visibility_requirement_is_number][requirement_mode:if][req_id:ff4cb610-a206-4e26-ad2f-85d63b4212dc-1733461106560] = ["mode":"equals","number":"1","compare_with":"0"]$ - element_type = custom_button - instance_identifier = d7996de1-161e-4e29-a2b0-1dd95ee78df9-1733461094242 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = mid-centered - x = -47 - y = -84 - width = 94 - height = 141 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f5dbf9c4-5656-493b-989d-cedd389ea54f-1733461094242 - [loading_requirement_container_meta:f5dbf9c4-5656-493b-989d-cedd389ea54f-1733461094242] = [groups:][instances:] -} - -element { - shape = rectangle - color = #282828 - element_type = shape - instance_identifier = 97da4cc9-d053-44ed-9658-91d19f300d18-1733460941520 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = d7996de1-161e-4e29-a2b0-1dd95ee78df9-1733461094242 - x = 2 - y = 2 - width = 90 - height = 134 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0b7e3dd5-8893-424e-9d62-a61603ba5ef3-1733460941520 - [loading_requirement_container_meta:0b7e3dd5-8893-424e-9d62-a61603ba5ef3-1733460941520] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:361efcf3-f1c8-429d-b80a-b5f7afe4c182-1733462693277][action_type:set_variable] = calculator_ans:0 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:361efcf3-f1c8-429d-b80a-b5f7afe4c182-1733462693277;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 0 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 04fbe811-e443-48f9-b333-f513fba70430-1733460910276 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 97da4cc9-d053-44ed-9658-91d19f300d18-1733460941520 - x = 2 - y = 113 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = = - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 28f3686a-d2e6-4049-bbb6-4f06d1e16c5a-1733461234134 - 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 = 1428 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 91be6968-abbb-402d-a521-16e89e518d58-1733461346256 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:0a3a3265-4888-4af5-902b-8a13f6326e4d-1733462607216][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}2 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:0a3a3265-4888-4af5-902b-8a13f6326e4d-1733462607216;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 2 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 2a5b6b72-75b5-4775-8575-e3b7ef487199-1733461333385 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = bf8ceeff-02a6-4ec0-97bd-e95ec1e9dbed-1733461325259 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:20166e1b-de62-4859-83ad-c7f78b2517b3-1733462548394][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}1 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:20166e1b-de62-4859-83ad-c7f78b2517b3-1733462548394;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 1 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = bf8ceeff-02a6-4ec0-97bd-e95ec1e9dbed-1733461325259 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = 04fbe811-e443-48f9-b333-f513fba70430-1733460910276 - x = 0 - y = -22 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:f6da7d3d-c5e8-4059-a475-15b89dbe107d-1733462618175][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}3 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:f6da7d3d-c5e8-4059-a475-15b89dbe107d-1733462618175;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 3 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = d75c742d-a8ea-4f91-84a3-2f10aac648e7-1733461340073 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = 2a5b6b72-75b5-4775-8575-e3b7ef487199-1733461333385 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = . - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 91be6968-abbb-402d-a521-16e89e518d58-1733461346256 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 04fbe811-e443-48f9-b333-f513fba70430-1733460910276 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = / - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = f018c044-5f73-4caf-a4b2-5769e10809db-1733461412690 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 28f3686a-d2e6-4049-bbb6-4f06d1e16c5a-1733461234134 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:b39bfc9a-de5c-4923-afa1-a6f99ccdd04a-1733462631057][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}4 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:b39bfc9a-de5c-4923-afa1-a6f99ccdd04a-1733462631057;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 4 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = c58deee1-bd43-4656-820f-d21028e855ad-1733461465468 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = bf8ceeff-02a6-4ec0-97bd-e95ec1e9dbed-1733461325259 - x = 0 - y = -22 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:582ad3f8-b2bc-4fa7-ac9e-d449c767f624-1733462640371][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}5 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:582ad3f8-b2bc-4fa7-ac9e-d449c767f624-1733462640371;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 5 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = e7bad730-e614-4116-b52a-24dc00ab1ef0-1733461472284 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = c58deee1-bd43-4656-820f-d21028e855ad-1733461465468 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:cc717be0-ad3a-4df9-8cd8-638c797ace98-1733462649215][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}6 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:cc717be0-ad3a-4df9-8cd8-638c797ace98-1733462649215;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 6 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 078138c6-cf66-4c4b-8ca7-8e82b9277f87-1733461476244 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = e7bad730-e614-4116-b52a-24dc00ab1ef0-1733461472284 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:01ee4a25-e306-4894-9459-92ef062a6b9b-1733462658164][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}7 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:01ee4a25-e306-4894-9459-92ef062a6b9b-1733462658164;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 7 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = c9bbd5db-9995-480f-829c-ae1d2fc1560c-1733461707053 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = c58deee1-bd43-4656-820f-d21028e855ad-1733461465468 - x = 0 - y = -22 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:c4d189a8-413f-4545-9bb6-e9f761afd990-1733462672330][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}8 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:c4d189a8-413f-4545-9bb6-e9f761afd990-1733462672330;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 8 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 6db93cd3-54fe-49df-8cd8-74a7d0873270-1733461721052 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = c9bbd5db-9995-480f-829c-ae1d2fc1560c-1733461707053 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:cb21529a-f88f-473b-8f68-13a5749f2064-1733462682359][action_type:set_variable] = calculator_ans:{"placeholder":"getvariable","values":{"name":"calculator_ans"}}9 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:cb21529a-f88f-473b-8f68-13a5749f2064-1733462682359;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = 9 - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = db9a76d2-ac29-49af-a21f-409cfbb513d1-1733461728292 - 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 = 1194 - auto_sizing_base_screen_height = 712 - sticky_anchor = false - anchor_point = element - anchor_point_element = 6db93cd3-54fe-49df-8cd8-74a7d0873270-1733461721052 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = * - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 8d131a0d-2f8e-48e8-9894-89414a3d28e6-1733461848592 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = d75c742d-a8ea-4f91-84a3-2f10aac648e7-1733461340073 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = bda5e20d-269b-4573-a19f-22df2648c637-1733461887495 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 078138c6-cf66-4c4b-8ca7-8e82b9277f87-1733461476244 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_action_instance:1aa13f2d-3744-4e35-bca3-bd2553b56654-1733462707008][action_type:set_variable] = calculator_ans: - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:1aa13f2d-3744-4e35-bca3-bd2553b56654-1733462707008;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = C - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 9385e3bf-af76-41fa-8b9c-c3edc40271c9-1733461978015 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = c9bbd5db-9995-480f-829c-ae1d2fc1560c-1733461707053 - x = 0 - y = -22 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = < - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = e8d18546-0dbd-499a-aa07-90ec751aff04-1733462015995 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 9385e3bf-af76-41fa-8b9c-c3edc40271c9-1733461978015 - x = 66 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276 - [executable_block:e82d78a9-d4bf-4e46-9188-81aecac5efdf-1733460910276][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = + - navigatable = true - widget_active_state_requirement_container_identifier = a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276 - [loading_requirement_container_meta:a88b5171-543f-43ef-a0bf-16745639d9b0-1733460910276] = [groups:][instances:] - element_type = custom_button - instance_identifier = 7e50775b-c804-4b24-b749-ce987fb79dd8-1733462052657 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = db9a76d2-ac29-49af-a21f-409cfbb513d1-1733461728292 - x = 22 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276 - [loading_requirement_container_meta:f2b97da5-c698-43c4-b4fa-1703cbf0d642-1733460910276] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = 478d66f3-fedf-46ce-8158-4b31e9f5ba79-1733462094475 - [executable_block:478d66f3-fedf-46ce-8158-4b31e9f5ba79-1733462094475][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = 1d086c2b-b954-40f7-9597-a19d9b27e5fc-1733462094475 - [loading_requirement_container_meta:1d086c2b-b954-40f7-9597-a19d9b27e5fc-1733462094475] = [groups:][instances:95bba4d9-816e-4e84-8a2f-1ff028879dfd-1733462117922;] - [loading_requirement:fancymenu_visibility_requirement_is_number][requirement_mode:if][req_id:95bba4d9-816e-4e84-8a2f-1ff028879dfd-1733462117922] = ["mode":"equals","number":"0","compare_with":"1"]$ - element_type = custom_button - instance_identifier = 3f992fd8-49a7-44f2-ac10-2209b5aa7c1d-1733462094475 - 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 = 1456 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 9385e3bf-af76-41fa-8b9c-c3edc40271c9-1733461978015 - x = 0 - y = -22 - width = 86 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 93d346f9-64a6-4753-aaa3-02e0e46fb81e-1733462094475 - [loading_requirement_container_meta:93d346f9-64a6-4753-aaa3-02e0e46fb81e-1733462094475] = [groups:][instances:] -} - -element { - interactable = true - source = {"placeholder":"getvariable","values":{"name":"calculator_ans"}} - source_mode = direct - shadow = true - scale = 1.0 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 = 60f27827-d507-446c-ac16-8231aaa4eb54-1733462719464 - 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 = 1458 - auto_sizing_base_screen_height = 678 - sticky_anchor = false - anchor_point = element - anchor_point_element = 3f992fd8-49a7-44f2-ac10-2209b5aa7c1d-1733462094475 - x = 2 - y = 2 - width = 82 - height = 14 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 752a3a70-7f62-4c35-b0a0-88f4af2f3a77-1733462719464 - [loading_requirement_container_meta:752a3a70-7f62-4c35-b0a0-88f4af2f3a77-1733462719464] = [groups:][instances:] -} - diff --git a/overrides/config/fancymenu/customization/pause_screen_layout.txt b/overrides/config/fancymenu/customization/pause_screen_layout.txt deleted file mode 100644 index 5c1ad96..0000000 --- a/overrides/config/fancymenu/customization/pause_screen_layout.txt +++ /dev/null @@ -1,969 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = pause_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1777738946395 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:0a043dc8-e2e4-4e50-b4ff-2dbdcc701b87-1777738715066] = [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 = 3be5749a-2982-47ad-ae8b-c0d0d4299cab-1729925725575 - [executable_action_instance:c86919bd-ab5a-4f21-b7d6-75fb1eaecce3-1777738619981][action_type:disconnect_server_or_world] = build-teams-start - [executable_block:3be5749a-2982-47ad-ae8b-c0d0d4299cab-1729925725575][type:generic] = [executables:c86919bd-ab5a-4f21-b7d6-75fb1eaecce3-1777738619981;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Build Regions - navigatable = true - widget_active_state_requirement_container_identifier = b0c18a25-60f0-4d25-ad87-57b0486dadb0-1733372319074 - [loading_requirement_container_meta:b0c18a25-60f0-4d25-ad87-57b0486dadb0-1733372319074] = [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 = d3dd40c1-6f7a-41ca-99a9-76018dab7545-1729925725575 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = pause_advancements_button - x = 0 - y = 23 - width = 204 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 353bf121-ce6e-4db6-ad8d-72c6e6fefd3c-1729925725575 - [loading_requirement_container_meta:353bf121-ce6e-4db6-ad8d-72c6e6fefd3c-1729925725575] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 921673ad-6078-4518-8e03-248069159713-1733372325707 - [executable_action_instance:67d73f4a-f8f4-46c2-b357-6019204df189-1733753739152][action_type:openlink] = {"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['invite']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_block:921673ad-6078-4518-8e03-248069159713-1733372325707][type:generic] = [executables:67d73f4a-f8f4-46c2-b357-6019204df189-1733753739152;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707 - [loading_requirement_container_meta:cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707] = [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 = 033db6c2-8c1c-4796-989f-0649d23eeb74-1733372325707 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = d3dd40c1-6f7a-41ca-99a9-76018dab7545-1729925725575 - x = 208 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707 - [loading_requirement_container_meta:d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/icons/discord.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = e52d9010-7ac0-40d3-ab23-6de2de3251bc-1733757156500 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = e2e771d7-8f1e-4112-b81c-2bc26663cdaa-1733757147787 - x = 2 - y = 2 - width = 16 - height = 15 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = da6de824-6fb8-4b62-ad4b-04c2da02bcb7-1733757156500 - [loading_requirement_container_meta:da6de824-6fb8-4b62-ad4b-04c2da02bcb7-1733757156500] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 921673ad-6078-4518-8e03-248069159713-1733372325707 - [executable_action_instance:67d73f4a-f8f4-46c2-b357-6019204df189-1733753739152][action_type:openlink] = {"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['invite']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_block:921673ad-6078-4518-8e03-248069159713-1733372325707][type:generic] = [executables:67d73f4a-f8f4-46c2-b357-6019204df189-1733753739152;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Join {"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['name']","source":"config/fancymenu/assets/buildteams.json"}} Discord!%n%{"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['invite']","source":"config/fancymenu/assets/buildteams.json"}} - label = - navigatable = true - widget_active_state_requirement_container_identifier = cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707 - [loading_requirement_container_meta:cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707] = [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 = e2e771d7-8f1e-4112-b81c-2bc26663cdaa-1733757147787 - 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 = 0.0 - auto_sizing = false - auto_sizing_base_screen_width = 1328 - auto_sizing_base_screen_height = 570 - sticky_anchor = false - anchor_point = element - anchor_point_element = d3dd40c1-6f7a-41ca-99a9-76018dab7545-1729925725575 - x = 208 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707 - [loading_requirement_container_meta:d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 3be5749a-2982-47ad-ae8b-c0d0d4299cab-1729925725575 - [executable_action_instance:c86919bd-ab5a-4f21-b7d6-75fb1eaecce3-1777738619981][action_type:disconnect_server_or_world] = build-teams-start - [executable_block:3be5749a-2982-47ad-ae8b-c0d0d4299cab-1729925725575][type:generic] = [executables:c86919bd-ab5a-4f21-b7d6-75fb1eaecce3-1777738619981;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Disconnect - navigatable = true - widget_active_state_requirement_container_identifier = b0c18a25-60f0-4d25-ad87-57b0486dadb0-1733372319074 - [loading_requirement_container_meta:b0c18a25-60f0-4d25-ad87-57b0486dadb0-1733372319074] = [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 = c4b3d4ba-8d2e-4356-9959-2410ed23fdcc-1777738791762 - 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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = element - anchor_point_element = pause_advancements_button - x = 0 - y = 73 - width = 204 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 353bf121-ce6e-4db6-ad8d-72c6e6fefd3c-1729925725575 - [loading_requirement_container_meta:353bf121-ce6e-4db6-ad8d-72c6e6fefd3c-1729925725575] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -vanilla_button { - button_element_executable_block_identifier = 6748be2a-1ed9-4346-abd4-e7134b279e57-1742879006839 - [executable_block:6748be2a-1ed9-4346-abd4-e7134b279e57-1742879006839][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 = f677ea0a-d11b-481d-bb18-2dc5f3c84058-1742879006839 - [loading_requirement_container_meta:f677ea0a-d11b-481d-bb18-2dc5f3c84058-1742879006839] = [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 = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 378 - y = 222 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 7a320dfb-b64a-40c6-8334-53ef98a2c183-1742879006839 - [loading_requirement_container_meta:7a320dfb-b64a-40c6-8334-53ef98a2c183-1742879006839] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 50b37607-6d7c-4bd9-8001-541618e74936-1742879006839 - [executable_block:50b37607-6d7c-4bd9-8001-541618e74936-1742879006839][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 = ca68bf63-b63b-4f9c-9ed8-f5ade9e2d2df-1742879006839 - [loading_requirement_container_meta:ca68bf63-b63b-4f9c-9ed8-f5ade9e2d2df-1742879006839] = [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 = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 378 - y = 174 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 95ddf24b-136d-4c9d-afbb-c695849f3b00-1742879006839 - [loading_requirement_container_meta:95ddf24b-136d-4c9d-afbb-c695849f3b00-1742879006839] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 9859120c-1ab0-4700-8ebf-f1394d29f42c-1742879006839 - [executable_block:9859120c-1ab0-4700-8ebf-f1394d29f42c-1742879006839][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 = c8547323-d4e8-46a7-9560-dd24e0e4c235-1742879006839 - [loading_requirement_container_meta:c8547323-d4e8-46a7-9560-dd24e0e4c235-1742879006839] = [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 = 1156 - auto_sizing_base_screen_height = 630 - sticky_anchor = false - anchor_point = vanilla - x = 484 - y = 198 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d36d5dbb-140d-45e1-86f1-06bba78a364c-1742879006839 - [loading_requirement_container_meta:d36d5dbb-140d-45e1-86f1-06bba78a364c-1742879006839] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 491b8e3e-c825-4400-882b-7fc5c58bcae3-1729925619109 - [executable_block:491b8e3e-c825-4400-882b-7fc5c58bcae3-1729925619109][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 = 5d330a63-794c-4074-b05d-2390f49a96d6-1733372319075 - [loading_requirement_container_meta:5d330a63-794c-4074-b05d-2390f49a96d6-1733372319075] = [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 = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = vanilla - x = 484 - y = 222 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 9530d7e3-b705-4f5a-b264-ff46bbcab182-1729925619109 - [loading_requirement_container_meta:9530d7e3-b705-4f5a-b264-ff46bbcab182-1729925619109] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 594bd2fa-c1fc-451b-9941-3d7538ff19a8-1742879006839 - [executable_block:594bd2fa-c1fc-451b-9941-3d7538ff19a8-1742879006839][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 = c6e9a5bb-5f93-4975-8bb8-2a7d35ba6b0d-1742879006839 - [loading_requirement_container_meta:c6e9a5bb-5f93-4975-8bb8-2a7d35ba6b0d-1742879006839] = [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 = 0 - auto_sizing_base_screen_height = 0 - sticky_anchor = false - anchor_point = vanilla - x = 484 - y = 174 - width = 98 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = b8e07e0a-acfa-480f-a1a4-1f5a6a42432d-1742879006839 - [loading_requirement_container_meta:b8e07e0a-acfa-480f-a1a4-1f5a6a42432d-1742879006839] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 13ed4052-c3da-4abe-a328-6d50ae6219ef-1742879006839 - [executable_block:13ed4052-c3da-4abe-a328-6d50ae6219ef-1742879006839][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 = 49c76bb5-5050-48d5-8dc7-08327dce88c2-1742879006839 - [loading_requirement_container_meta:49c76bb5-5050-48d5-8dc7-08327dce88c2-1742879006839] = [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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = vanilla - x = 378 - y = 246 - width = 204 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 175c32fd-1a66-4a1e-8355-5ccc217a1063-1742879006839 - [loading_requirement_container_meta:175c32fd-1a66-4a1e-8355-5ccc217a1063-1742879006839] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 6eb191a0-87b1-4ac9-9088-ae8b6b06caef-1777738573084 - [executable_block:6eb191a0-87b1-4ac9-9088-ae8b6b06caef-1777738573084][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 = 7bf5cf97-29ec-4d26-8596-3f81698a3cf3-1777738573084 - [loading_requirement_container_meta:7bf5cf97-29ec-4d26-8596-3f81698a3cf3-1777738573084] = [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 = 606282 - 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 = 586 - y = 174 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 7b48ce58-bff3-45d2-8651-8ec18f63ea75-1777738573084 - [loading_requirement_container_meta:7b48ce58-bff3-45d2-8651-8ec18f63ea75-1777738573084] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 8ffa36f1-b96f-4e0c-ab67-6c242d227c30-1777738573084 - [executable_block:8ffa36f1-b96f-4e0c-ab67-6c242d227c30-1777738573084][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 = 46b7149b-208f-4ca9-b5c6-debf7acba89d-1777738573084 - [loading_requirement_container_meta:46b7149b-208f-4ca9-b5c6-debf7acba89d-1777738573084] = [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 = 47440 - 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 = 454 - y = 40 - width = 52 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 107bde90-765a-4d41-b349-1c8c7c37b41f-1777738573084 - [loading_requirement_container_meta:107bde90-765a-4d41-b349-1c8c7c37b41f-1777738573084] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 297cfcb8-f7b4-49cc-aa91-e7e2b276429e-1742879006839 - [executable_block:297cfcb8-f7b4-49cc-aa91-e7e2b276429e-1742879006839][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 = 3b0941fb-ce37-42e6-8fab-96da142578a3-1742879006839 - [loading_requirement_container_meta:3b0941fb-ce37-42e6-8fab-96da142578a3-1742879006839] = [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 = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = vanilla - x = 378 - y = 150 - width = 204 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 4e06b7d0-4dfd-4f17-ac4c-41f9dca665de-1742879006839 - [loading_requirement_container_meta:4e06b7d0-4dfd-4f17-ac4c-41f9dca665de-1742879006839] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 9f1dc8ea-14de-4e1c-b743-4fe019ca6766-1729925619109 - [executable_block:9f1dc8ea-14de-4e1c-b743-4fe019ca6766-1729925619109][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 = 44c39171-9220-4f44-8d51-fc266c583e9a-1733372319074 - [loading_requirement_container_meta:44c39171-9220-4f44-8d51-fc266c583e9a-1733372319074] = [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 = 398306 - 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 = 1156 - auto_sizing_base_screen_height = 630 - sticky_anchor = false - anchor_point = element - anchor_point_element = pause_options_button - x = 107 - y = 0 - width = 97 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 764c8b9d-6a95-44b9-9148-f79f5cc55072-1729925619109 - [loading_requirement_container_meta:764c8b9d-6a95-44b9-9148-f79f5cc55072-1729925619109] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - diff --git a/overrides/config/fancymenu/customization/progress_screen_layout.txt b/overrides/config/fancymenu/customization/progress_screen_layout.txt deleted file mode 100644 index 3cf33e0..0000000 --- a/overrides/config/fancymenu/customization/progress_screen_layout.txt +++ /dev/null @@ -1,119 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = progress_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733759740226 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:5d7b9bf9-5b53-4295-9563-1d0c07f5d2dd-1733759720153] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -vanilla_button { - button_element_executable_block_identifier = cced19ec-fb58-480b-b20e-02bc42bee88e-1733759720153 - [executable_block:cced19ec-fb58-480b-b20e-02bc42bee88e-1733759720153][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 = 38be25b8-c604-405d-a5d1-ac330b1210c6-1733759720153 - [loading_requirement_container_meta:38be25b8-c604-405d-a5d1-ac330b1210c6-1733759720153] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = stage - 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 = 12 - y = 90 - width = 500 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f96fe6c9-6c7c-419a-ae2b-b5d5b9b85b3e-1733759720153 - [loading_requirement_container_meta:f96fe6c9-6c7c-419a-ae2b-b5d5b9b85b3e-1733759720153] = [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 = 980b3fda-13a2-44b5-afc3-241a4372df98-1733759720153 - [executable_block:980b3fda-13a2-44b5-afc3-241a4372df98-1733759720153][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 = 83f3b4de-8ea9-4b04-a7ad-38347bde3291-1733759720153 - [loading_requirement_container_meta:83f3b4de-8ea9-4b04-a7ad-38347bde3291-1733759720153] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = header - 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 = 12 - y = 70 - width = 500 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = e71100fb-5bd8-40e0-ab95-8c233e8f0277-1733759720153 - [loading_requirement_container_meta:e71100fb-5bd8-40e0-ab95-8c233e8f0277-1733759720153] = [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/overrides/config/fancymenu/customization/receiving_level_screen_layout.txt b/overrides/config/fancymenu/customization/receiving_level_screen_layout.txt deleted file mode 100644 index 0f9b86e..0000000 --- a/overrides/config/fancymenu/customization/receiving_level_screen_layout.txt +++ /dev/null @@ -1,300 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = receiving_level_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733756551533 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:81879b83-6f38-4ccd-80ff-4cce10bfce6f-1733756540749] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/backgrounds/{"placeholder":"getvariable","values":{"name":"background_index"}}.png - slide = false - repeat_texture = false - background_type = image -} - -customization { - action = backgroundoptions - keepaspectratio = true -} - -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 -} - -element { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = 691307a9-00b1-413f-b833-733d4dcadbdd-1733330398040 - 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 = 0.5 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = mid-centered - x = -167 - y = -34 - width = 100 - height = 12 - stretch_x = true - stretch_y = true - stay_on_screen = true - element_loading_requirement_container_identifier = c2d3736e-92c9-487a-8f8d-289a5e7602d8-1733330398040 - [loading_requirement_container_meta:c2d3736e-92c9-487a-8f8d-289a5e7602d8-1733330398040] = [groups:][instances:] -} - -element { - source = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - element_type = image - instance_identifier = 2b533005-0a83-4f09-8f61-70bd4a4914da-1733330388445 - 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 = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = bottom-centered - x = -245 - y = -68 - width = 100 - height = 68 - stretch_x = true - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 77ea7b49-ae6f-40e9-8338-d41695e16bff-1728203225741 - [loading_requirement_container_meta:77ea7b49-ae6f-40e9-8338-d41695e16bff-1728203225741] = [groups:][instances:] -} - -element { - interactable = true - source = ^^^%n%{"placeholder":"randomtext","values":{"path":"config/fancymenu/assets/tips.txt","interval":"2"}}%n%^^^ - source_mode = direct - shadow = true - scale = 0.8 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 = 0ef7da21-aeb8-4356-9234-2a1266c5eec5-1733330468343 - appearance_delay = no_delay - appearance_delay_seconds = 1.0 - fade_in_v2 = no_fading - fade_in_speed = 0.1 - 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 = 1008 - sticky_anchor = false - anchor_point = bottom-centered - x = -288 - y = -47 - width = 200 - height = 12 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593 - [loading_requirement_container_meta:91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593] = [groups:][instances:] -} - -element { - interactable = true - source = ^^^%n%Loading terrain...%n%^^^ - source_mode = direct - shadow = true - scale = 0.8 - base_color = #00FF00FF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 = 44e942fd-4966-4323-b390-617345bc8674-1733330564491 - 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 = 854 - auto_sizing_base_screen_height = 480 - sticky_anchor = false - anchor_point = bottom-centered - x = -322 - y = -63 - width = 200 - height = 12 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593 - [loading_requirement_container_meta:91d0d815-6e8b-44fe-9555-40921defe88e-1728210884593] = [groups:][instances:] -} - -element { - button_element_executable_block_identifier = 75e183ab-3164-4cd8-b398-e4a477ca4ce8-1728228246499 - [executable_block:75e183ab-3164-4cd8-b398-e4a477ca4ce8-1728228246499][type:generic] = [executables:] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Cancel - navigatable = true - widget_active_state_requirement_container_identifier = a693eb87-c418-4b67-aa42-2d0d0a108f11-1733329098386 - [loading_requirement_container_meta:a693eb87-c418-4b67-aa42-2d0d0a108f11-1733329098386] = [groups:][instances:] - element_type = custom_button - instance_identifier = 3f75118d-13ce-4d9c-9e3e-bb0e28c8839d-1733330722825 - 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 = 0.4 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = bottom-centered - x = -64 - y = -30 - width = 128 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 939f4df6-4c89-404d-a902-bc1de7a8dfa2-1728228246499 - [loading_requirement_container_meta:939f4df6-4c89-404d-a902-bc1de7a8dfa2-1728228246499] = [groups:][instances:] -} - -element { - shape = rectangle - color = #00FF00 - element_type = shape - instance_identifier = 22b286c7-4a60-4e0b-b2c8-ca088e618e03-1733330764147 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = bottom-centered - x = -318 - y = -70 - width = 100 - height = 2 - stretch_x = true - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c70141d9-2bfe-4b08-8a6e-23af878b646c-1733330764147 - [loading_requirement_container_meta:c70141d9-2bfe-4b08-8a6e-23af878b646c-1733330764147] = [groups:][instances:] -} - -vanilla_button { - button_element_executable_block_identifier = dc761502-97c1-4672-a10a-b2faea3c0add-1733330185630 - [executable_block:dc761502-97c1-4672-a10a-b2faea3c0add-1733330185630][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 = b157db74-6884-4d4c-8658-e4771ebbedd2-1733330185630 - [loading_requirement_container_meta:b157db74-6884-4d4c-8658-e4771ebbedd2-1733330185630] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = downloading_terrain - 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 = 1920 - auto_sizing_base_screen_height = 1053 - sticky_anchor = false - anchor_point = vanilla - x = 145 - y = 97 - width = 200 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 315f4998-8e78-48ba-929a-e812bfafd69c-1733330185630 - [loading_requirement_container_meta:315f4998-8e78-48ba-929a-e812bfafd69c-1733330185630] = [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/overrides/config/fancymenu/customization/select_world_screen_layout.txt b/overrides/config/fancymenu/customization/select_world_screen_layout.txt deleted file mode 100644 index 7ba8e6e..0000000 --- a/overrides/config/fancymenu/customization/select_world_screen_layout.txt +++ /dev/null @@ -1,283 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = select_world_screen - render_custom_elements_behind_vanilla = false - last_edited_time = 1733549313829 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:6ce799f3-01f3-4c3f-b0cb-bb0e6d5b22a9-1733549257952] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/maps/map-bg.jpg - slide = false - repeat_texture = 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 -} - -vanilla_button { - button_element_executable_block_identifier = f3e98697-5415-4dd3-b5e1-5c9ea6669215-1733549257954 - [executable_block:f3e98697-5415-4dd3-b5e1-5c9ea6669215-1733549257954][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 = b83bf725-7863-43d1-9fd1-6a7c8c5cb242-1733549257954 - [loading_requirement_container_meta:b83bf725-7863-43d1-9fd1-6a7c8c5cb242-1733549257954] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346948 - 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 = 176 - y = 318 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 2afa620c-e0af-420b-9864-b64cdc58ad2c-1733549257954 - [loading_requirement_container_meta:2afa620c-e0af-420b-9864-b64cdc58ad2c-1733549257954] = [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 = 01827cda-1080-46c1-935b-68584c8dd95d-1733549257954 - [executable_block:01827cda-1080-46c1-935b-68584c8dd95d-1733549257954][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 = 641c7f07-b1f6-48c1-bbb3-03fef277a38b-1733549257954 - [loading_requirement_container_meta:641c7f07-b1f6-48c1-bbb3-03fef277a38b-1733549257954] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 582972 - 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 = 412 - y = 342 - width = 72 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 5fe1a3db-ae2d-48d0-96c0-a479424578a4-1733549257954 - [loading_requirement_container_meta:5fe1a3db-ae2d-48d0-96c0-a479424578a4-1733549257954] = [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 = 5794df26-d3f5-4f19-ba24-b083281c8fae-1733549257954 - [executable_block:5794df26-d3f5-4f19-ba24-b083281c8fae-1733549257954][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 = 61e85093-ab00-45a1-b1cd-a74fa918576a-1733549257954 - [loading_requirement_container_meta:61e85093-ab00-45a1-b1cd-a74fa918576a-1733549257954] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504972 - 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 = 334 - y = 342 - width = 72 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 3e7eb65e-a8e7-42f5-b770-f0928379ea52-1733549257954 - [loading_requirement_container_meta:3e7eb65e-a8e7-42f5-b770-f0928379ea52-1733549257954] = [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 = 080094ea-7b20-47fd-9da5-e2e2e33dc48b-1733549257954 - [executable_block:080094ea-7b20-47fd-9da5-e2e2e33dc48b-1733549257954][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 = dcf57d67-d6a7-4715-bf73-1627c343e5ef-1733549257954 - [loading_requirement_container_meta:dcf57d67-d6a7-4715-bf73-1627c343e5ef-1733549257954] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 504948 - 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 = 334 - y = 318 - width = 150 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = fa8b837a-7046-40ea-9afa-17f5706a2236-1733549257954 - [loading_requirement_container_meta:fa8b837a-7046-40ea-9afa-17f5706a2236-1733549257954] = [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 = 14df333c-7783-472d-a662-1ba7dc7840f7-1733549257954 - [executable_block:14df333c-7783-472d-a662-1ba7dc7840f7-1733549257954][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 = c0340ea5-bc54-488b-8d75-f95ce2e659f2-1733549257954 - [loading_requirement_container_meta:c0340ea5-bc54-488b-8d75-f95ce2e659f2-1733549257954] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 424972 - 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 = 254 - y = 342 - width = 72 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 10ece33a-63c2-466f-8140-de0d22514b47-1733549257954 - [loading_requirement_container_meta:10ece33a-63c2-466f-8140-de0d22514b47-1733549257954] = [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 = 8d7ac147-5760-4ed3-a310-fdf295891255-1733549257954 - [executable_block:8d7ac147-5760-4ed3-a310-fdf295891255-1733549257954][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 = dca65aa8-9127-4ebd-8cdc-24da8e13331a-1733549257954 - [loading_requirement_container_meta:dca65aa8-9127-4ebd-8cdc-24da8e13331a-1733549257954] = [groups:][instances:] - element_type = vanilla_button - instance_identifier = 346972 - 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 = 176 - y = 342 - width = 72 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 565e3b67-6d3d-43ff-9d25-39333e1ad1a9-1733549257954 - [loading_requirement_container_meta:565e3b67-6d3d-43ff-9d25-39333e1ad1a9-1733549257954] = [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/overrides/config/fancymenu/customization/showcase_layout.txt b/overrides/config/fancymenu/customization/showcase_layout.txt deleted file mode 100644 index 954b3e0..0000000 --- a/overrides/config/fancymenu/customization/showcase_layout.txt +++ /dev/null @@ -1,75 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = showcase - render_custom_elements_behind_vanilla = false - last_edited_time = 1738267172829 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:caa4ab92-35b4-4ff8-a411-f73f7e813177-1738267168891] = [groups:][instances:] -} - -menu_background { - image_path = [source:local]/config/fancymenu/assets/backgrounds/0.png - slide = false - repeat_texture = false - background_type = image -} - -customization { - action = backgroundoptions - keepaspectratio = true -} - -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 -} - -element { - button_element_executable_block_identifier = 52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737 - [executable_action_instance:ce47f684-b7d6-4dda-9593-0c518ceb9f74-1727996082075][action_type:closegui] = - [executable_block:52a67cd5-f2a4-459a-a736-222156a9f1f6-1727991735737][type:generic] = [executables:ce47f684-b7d6-4dda-9593-0c518ceb9f74-1727996082075;] - restartbackgroundanimations = true - loopbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 3139ffb3-cc77-4d3a-8172-5f2fb3afefe7-1731754838744 - [loading_requirement_container_meta:3139ffb3-cc77-4d3a-8172-5f2fb3afefe7-1731754838744] = [groups:][instances:] - element_type = custom_button - instance_identifier = a42a2335-9954-4788-83a2-a7c5129511be-1738267169598 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = bottom-centered - x = -28 - y = -30 - width = 56 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737 - [loading_requirement_container_meta:c7a1415f-f731-48a5-a06b-4fa3fdd6e162-1727991735737] = [groups:][instances:] -} - diff --git a/overrides/config/fancymenu/customization/title_screen_layout_1.txt b/overrides/config/fancymenu/customization/title_screen_layout_1.txt deleted file mode 100644 index ef18777..0000000 --- a/overrides/config/fancymenu/customization/title_screen_layout_1.txt +++ /dev/null @@ -1,2680 +0,0 @@ -type = fancymenu_layout - -layout-meta { - identifier = title_screen - render_custom_elements_behind_vanilla = true - last_edited_time = 1777741351781 - is_enabled = true - randommode = false - randomgroup = 1 - randomonlyfirsttime = false - layout_index = 0 - [loading_requirement_container_meta:9382cbe0-a678-4174-9914-0fb54804ef7f-1777741320563] = [groups:][instances:] -} - -menu_background { - slideshow_name = main_menu - instance_identifier = 7cd66d0c-b49f-4540-9536-a1702fcbf6df-1777726603016 - background_type = slideshow -} - -customization { - action = backgroundoptions - keepaspectratio = true -} - -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 { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = 56978346-08ec-4e37-97e4-86a1202f7bc2-1733367948928 - 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 = 0.5 - auto_sizing = false - auto_sizing_base_screen_width = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = mid-centered - x = -163 - y = -5 - width = 100 - height = 100 - stretch_x = true - stretch_y = true - stay_on_screen = true - element_loading_requirement_container_identifier = 622fd501-7aa4-4430-9a37-7afc43a29dc0-1733367948928 - [loading_requirement_container_meta:622fd501-7aa4-4430-9a37-7afc43a29dc0-1733367948928] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = false - source = Single%n%Player - source_mode = direct - shadow = true - scale = 1.0 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 38fefabf-fa6b-43de-8258-c9faedda3700-1733336038889 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = ed4a2fe4-6421-4e55-b5b9-f5a8162b874c-1733336249006 - x = 2 - y = 68 - width = 68 - height = 26 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 10cdf4c4-7d9b-42d2-97ea-52e45638d1dd-1733333869775 - [loading_requirement_container_meta:10cdf4c4-7d9b-42d2-97ea-52e45638d1dd-1733333869775] = [groups:][instances:94c7f7ad-3f96-4445-a0ac-469d1c492c13-1733403246630;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:94c7f7ad-3f96-4445-a0ac-469d1c492c13-1733403246630] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = false - source = Build %n%Regions - source_mode = direct - shadow = true - scale = 1.0 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 4adb02cb-c0ea-4535-89cc-f7c84692dd2d-1733333869775 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = 1 - y = 68 - width = 68 - height = 26 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 10cdf4c4-7d9b-42d2-97ea-52e45638d1dd-1733333869775 - [loading_requirement_container_meta:10cdf4c4-7d9b-42d2-97ea-52e45638d1dd-1733333869775] = [groups:][instances:dee1043c-93db-47a7-b324-6d5b04259e53-1733403235701;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:dee1043c-93db-47a7-b324-6d5b04259e53-1733403235701] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = false - source = Continue - source_mode = direct - shadow = true - scale = 1.0 - base_color = #FFFFFFFF - text_border = 2 - line_spacing = 2 - enable_scrolling = false - auto_line_wrapping = false - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = 095528e3-f35c-4ab7-801e-bf219dbdca58-1733397773694 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 5a1cf163-b786-4ba6-8688-d6b2bb3472d5-1733397763072 - x = 2 - y = 78 - width = 51 - height = 15 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 10cdf4c4-7d9b-42d2-97ea-52e45638d1dd-1733333869775 - [loading_requirement_container_meta:10cdf4c4-7d9b-42d2-97ea-52e45638d1dd-1733333869775] = [groups:][instances:eefe603e-5c21-46c1-8a09-37487115367c-1733403223410;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:eefe603e-5c21-46c1-8a09-37487115367c-1733403223410] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382 - [executable_block:db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = 470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441 - [loading_requirement_container_meta:470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441] = [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 = 6ca62811-5a7d-4a1c-8ce2-83f2bc8198d2-1733335879488 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = 72 - y = 0 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382 - [loading_requirement_container_meta:934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 3ff3b866-d880-4338-802e-0ef76c887e58-1733334365753 - [executable_block:3ff3b866-d880-4338-802e-0ef76c887e58-1733334365753][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = 596ecdd8-852b-4e5f-90fe-3c98063a5684-1733334365753 - [loading_requirement_container_meta:596ecdd8-852b-4e5f-90fe-3c98063a5684-1733334365753] = [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 = 9b017719-0a89-4e16-8924-42569913801f-1733334365753 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = 0 - y = 0 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 6783eb25-3e68-45e9-bd98-5eff5f1713b2-1733334365753 - [loading_requirement_container_meta:6783eb25-3e68-45e9-bd98-5eff5f1713b2-1733334365753] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382 - [executable_block:db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = 470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441 - [loading_requirement_container_meta:470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441] = [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 = aafa0ee2-c2fb-4ffe-8b13-a1d52cb3ebd8-1728064566423 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = -72 - y = 0 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382 - [loading_requirement_container_meta:934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/singleplayer.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = 26da93ca-992e-41eb-a25e-cee81ae795d8-1733335990385 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 6ca62811-5a7d-4a1c-8ce2-83f2bc8198d2-1733335879488 - x = 2 - y = 2 - width = 64 - height = 90 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f4d22072-3f8e-4fa1-933f-1ba44163be87-1733333728040 - [loading_requirement_container_meta:f4d22072-3f8e-4fa1-933f-1ba44163be87-1733333728040] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/multiplayer.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = c70f25d8-ac54-498a-92f0-8894ef099e47-1733333728040 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = 2 - y = 2 - width = 64 - height = 90 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f4d22072-3f8e-4fa1-933f-1ba44163be87-1733333728040 - [loading_requirement_container_meta:f4d22072-3f8e-4fa1-933f-1ba44163be87-1733333728040] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/continue.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = b7114e89-8178-48fe-a847-a06b8a1cc451-1733397712450 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = aafa0ee2-c2fb-4ffe-8b13-a1d52cb3ebd8-1728064566423 - x = 2 - y = 2 - width = 64 - height = 90 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = f4d22072-3f8e-4fa1-933f-1ba44163be87-1733333728040 - [loading_requirement_container_meta:f4d22072-3f8e-4fa1-933f-1ba44163be87-1733333728040] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = d398a01a-92d9-48ed-83f5-ce6bf62c821b-1733336027636 - 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 = 0.4 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 26da93ca-992e-41eb-a25e-cee81ae795d8-1733335990385 - x = -2 - y = -2 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = af9e2abe-250d-4276-bcfc-480bdc1552aa-1733333814972 - [loading_requirement_container_meta:af9e2abe-250d-4276-bcfc-480bdc1552aa-1733333814972] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = 8dc8de81-e0fd-4f64-a827-d901dfa5df01-1733333814972 - 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 = 0.4 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = 0 - y = 0 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = af9e2abe-250d-4276-bcfc-480bdc1552aa-1733333814972 - [loading_requirement_container_meta:af9e2abe-250d-4276-bcfc-480bdc1552aa-1733333814972] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = 5a1cf163-b786-4ba6-8688-d6b2bb3472d5-1733397763072 - 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 = 0.4 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = b7114e89-8178-48fe-a847-a06b8a1cc451-1733397712450 - x = -2 - y = -2 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = af9e2abe-250d-4276-bcfc-480bdc1552aa-1733333814972 - [loading_requirement_container_meta:af9e2abe-250d-4276-bcfc-480bdc1552aa-1733333814972] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382 - [executable_action_instance:6f7e0b30-229f-4652-b563-e43b854283d0-1733336265920][action_type:mimicbutton] = title_screen:mc_titlescreen_singleplayer_button - [executable_block:db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382][type:generic] = [executables:6f7e0b30-229f-4652-b563-e43b854283d0-1733336265920;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Vanilla singleplayer %n%for debugging%n%[WorldEdit not included] - label = - navigatable = true - widget_active_state_requirement_container_identifier = 470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441 - [loading_requirement_container_meta:470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441] = [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 = ed4a2fe4-6421-4e55-b5b9-f5a8162b874c-1733336249006 - 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 = 0.0 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = d398a01a-92d9-48ed-83f5-ce6bf62c821b-1733336027636 - x = 0 - y = 0 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382 - [loading_requirement_container_meta:934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382] = [groups:][instances:5f39b08b-01fc-428a-95d8-91ba33e99544-1733403116071;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:5f39b08b-01fc-428a-95d8-91ba33e99544-1733403116071] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382 - [executable_action_instance:80b8335b-7f1c-42d7-8f40-72a3e7fd548d-1727986300891][action_type:opengui] = build-teams-start - [executable_action_instance:aa014536-9b81-457e-8578-be42bd7df3cd-1731759175819][action_type:set_variable] = buildteams:{"placeholder":"json","values":{"json_path":"$","source":"http://localhost:8080/api/v1/buildteams/modpack"}} - [executable_block:db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382][type:generic] = [executables:80b8335b-7f1c-42d7-8f40-72a3e7fd548d-1727986300891;aa014536-9b81-457e-8578-be42bd7df3cd-1731759175819;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Explore the servers %n%of our Build Teams - label = - navigatable = true - widget_active_state_requirement_container_identifier = 989baa65-9189-4f33-a9a3-154c62560011-1731759164441 - [loading_requirement_container_meta:989baa65-9189-4f33-a9a3-154c62560011-1731759164441] = [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 = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - 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 = 0.0 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = ce477f9d-eb49-4b92-9286-52caf7af938e-1728249600056 - x = 114 - y = 61 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382 - [loading_requirement_container_meta:934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382] = [groups:][instances:274848bf-c298-485d-a3fc-09594af3aa73-1733403104456;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:274848bf-c298-485d-a3fc-09594af3aa73-1733403104456] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382 - [executable_action_instance:0900a9f3-9bfe-4bd2-8542-3d3fdadd786b-1733458639717][action_type:joinserver] = {"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - [executable_block:db9dd9d5-bb86-410f-a709-7b720e80106c-1727986276382][type:generic] = [executables:0900a9f3-9bfe-4bd2-8542-3d3fdadd786b-1733458639717;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = {"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['name']","source":"config/fancymenu/assets/buildteams.json"}}%n%{"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['ip']","source":"config/fancymenu/assets/buildteams.json"}} - label = - navigatable = true - widget_active_state_requirement_container_identifier = 470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441 - [loading_requirement_container_meta:470a3fdc-2d2e-41a0-bfaf-0dec5832ea19-1731759164441] = [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 = 79f17fc4-e45d-4668-bafa-e384869bfd3c-1733397680283 - 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 = 0.0 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 5a1cf163-b786-4ba6-8688-d6b2bb3472d5-1733397763072 - x = 0 - y = 0 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382 - [loading_requirement_container_meta:934b8549-36a7-430e-92ef-6722c157aaa0-1727986276382] = [groups:][instances:302daa76-04c3-45e5-a198-e7998ae2a0f2-1733403093908;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:302daa76-04c3-45e5-a198-e7998ae2a0f2-1733403093908] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 921673ad-6078-4518-8e03-248069159713-1733372325707 - [executable_block:921673ad-6078-4518-8e03-248069159713-1733372325707][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Join {"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['name']","source":"config/fancymenu/assets/buildteams.json"}} Discord!%n%{"placeholder":"json","values":{"json_path":"$['{"placeholder":"getvariable","values":{"name":"current_server"}}']['invite']","source":"config/fancymenu/assets/buildteams.json"}} - label = - navigatable = true - widget_active_state_requirement_container_identifier = cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707 - [loading_requirement_container_meta:cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707] = [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 = 00a011ba-fddb-4df7-9f85-cf09e1fca369-1733803272593 - 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 = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = element - anchor_point_element = mc_titlescreen_quit_button - x = 72 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707 - [loading_requirement_container_meta:d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/icons/discord.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = d2ae1a70-6902-4b1a-ba6c-0b098e270e0c-1733803323226 - 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 = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = element - anchor_point_element = 00a011ba-fddb-4df7-9f85-cf09e1fca369-1733803272593 - x = 2 - y = 2 - width = 16 - height = 14 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 426e7427-2723-4eb7-b14f-4263d8189adb-1733803323226 - [loading_requirement_container_meta:426e7427-2723-4eb7-b14f-4263d8189adb-1733803323226] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 921673ad-6078-4518-8e03-248069159713-1733372325707 - [executable_action_instance:67d73f4a-f8f4-46c2-b357-6019204df189-1733753739152][action_type:openlink] = https://go.buildtheearth.net/dc - [executable_block:921673ad-6078-4518-8e03-248069159713-1733372325707][type:generic] = [executables:67d73f4a-f8f4-46c2-b357-6019204df189-1733753739152;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - description = Join our Discord!%n%https://go.buildtheearth.net/dc - label = - navigatable = true - widget_active_state_requirement_container_identifier = cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707 - [loading_requirement_container_meta:cad44aee-0498-48f6-ae66-afe5a8a53845-1733372325707] = [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 = fd9927c9-3112-490c-8728-b7b96e5b3630-1733803228701 - 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 = 0.0 - auto_sizing = false - auto_sizing_base_screen_width = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = element - anchor_point_element = d2ae1a70-6902-4b1a-ba6c-0b098e270e0c-1733803323226 - x = -2 - y = -2 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707 - [loading_requirement_container_meta:d940e208-17bf-45c9-8cea-4d8fc7a28daf-1733372325707] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = a27d0cdc-1556-495f-b083-fbfc162be817-1733400910755 - [executable_block:a27d0cdc-1556-495f-b083-fbfc162be817-1733400910755][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = - navigatable = true - widget_active_state_requirement_container_identifier = 2a9ae547-57c5-4f33-844f-1cc0640d24b1-1733400910755 - [loading_requirement_container_meta:2a9ae547-57c5-4f33-844f-1cc0640d24b1-1733400910755] = [groups:][instances:a95a2b8a-ce29-4b74-b03e-037bc151cba7-1733405407394;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:a95a2b8a-ce29-4b74-b03e-037bc151cba7-1733405407394] = is_first_time:false - 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 = 665a2b86-b4eb-487e-9399-cda908e219f8-1733400910755 - 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 = 1066 - auto_sizing_base_screen_height = 668 - sticky_anchor = false - anchor_point = top-centered - x = -207 - y = 33 - width = 414 - height = 240 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 6040e6d0-a008-4e95-866f-05a0a748cf7f-1733400910755 - [loading_requirement_container_meta:6040e6d0-a008-4e95-866f-05a0a748cf7f-1733400910755] = [groups:][instances:95f49631-19aa-441e-be08-0a00adcf840a-1733403348874;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:95f49631-19aa-441e-be08-0a00adcf840a-1733403348874] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - shape = rectangle - color = #000000 - element_type = shape - instance_identifier = e715a459-c623-4f4f-a35a-1ccace999e5a-1733640075294 - 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 = 0.4 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1138 - sticky_anchor = false - anchor_point = mid-centered - x = -276 - y = -114 - width = 100 - height = 100 - stretch_x = true - stretch_y = true - stay_on_screen = true - element_loading_requirement_container_identifier = 8557aaf2-d3b1-4112-b5e2-e1d08795fca9-1733640075294 - [loading_requirement_container_meta:8557aaf2-d3b1-4112-b5e2-e1d08795fca9-1733640075294] = [groups:][instances:d67f7af4-616a-4fca-87bf-43b434dc1513-1733640094784;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:d67f7af4-616a-4fca-87bf-43b434dc1513-1733640094784] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - shape = rectangle - color = #282828 - element_type = shape - instance_identifier = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 665a2b86-b4eb-487e-9399-cda908e219f8-1733400910755 - x = 2 - y = 2 - width = 410 - height = 234 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 7c2431c0-baf3-4d3d-b608-49dba6b91a61-1733402604830 - [loading_requirement_container_meta:7c2431c0-baf3-4d3d-b608-49dba6b91a61-1733402604830] = [groups:][instances:13b6454e-5bd8-4a15-b8c8-b5d8823e5e15-1733403359109;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:13b6454e-5bd8-4a15-b8c8-b5d8823e5e15-1733403359109] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/banners/main.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = b8e03c05-03ed-44ff-bedf-5e56847e040f-1733403433041 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - x = 113 - y = 7 - width = 188 - height = 31 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = cd97a5d2-5650-4ccc-8de1-21a890a894b9-1728249600056 - [loading_requirement_container_meta:cd97a5d2-5650-4ccc-8de1-21a890a894b9-1728249600056] = [groups:][instances:faa13122-da99-4dae-be1f-28509ed534dd-1733403058515;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:faa13122-da99-4dae-be1f-28509ed534dd-1733403058515] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - interactable = true - source = {"placeholder":"json","values":{"json_path":"$['content'][{"placeholder":"getvariable","values":{"name":"intro_index"}}]","source":"config/fancymenu/assets/introduction.json"}} - 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 - table_show_header = true - table_alternate_row_colors = true - table_line_color = #787878FF - table_header_background_color = #323232FF - table_row_background_color = #282828FF - table_alternate_row_color = #3C3C3CFF - table_line_thickness = 1.0 - table_cell_padding = 8.0 - table_margin = 4.0 - element_type = text_v2 - instance_identifier = ea6c4c22-e921-467b-b1cc-58c14e9fa855-1733403485621 - 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 = 1244 - auto_sizing_base_screen_height = 668 - sticky_anchor = false - anchor_point = element - anchor_point_element = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - x = 4 - y = 44 - width = 392 - height = 162 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = fbc47d72-0b28-47eb-89f7-e6ea3dbd1c2b-1733403485621 - [loading_requirement_container_meta:fbc47d72-0b28-47eb-89f7-e6ea3dbd1c2b-1733403485621] = [groups:][instances:f1ee85ea-1ee7-40bc-8877-1d49941331ba-1733406673954;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:f1ee85ea-1ee7-40bc-8877-1d49941331ba-1733406673954] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = f2c123a7-e24d-4edc-bae5-0550def830ef-1733405163842 - [executable_action_instance:34be6f2d-663f-4222-bafe-90caad053c57-1733416964676][action_type:set_variable] = is_first_time:false - [executable_action_instance:f90bc2f8-9bf2-4f37-8491-15a14486819b-1733417110947][action_type:set_variable] = intro_index:0 - [executable_block:febe514f-f58d-4aee-944d-0d88440e45b9-1733416732178][type:if] = [executables:34be6f2d-663f-4222-bafe-90caad053c57-1733416964676;f90bc2f8-9bf2-4f37-8491-15a14486819b-1733417110947;][appended:102a191d-b99e-4009-9572-6cd706d2c5a0-1733416738006] - [executable_action_instance:7a49d67e-9e43-419a-85a6-42e4b69ac0f0-1733407140668][action_type:set_variable] = intro_index:{"placeholder":"calc","values":{"expression":"{"placeholder":"getvariable","values":{"name":"intro_index"}}+1","decimal":"false"}} - [executable_block:102a191d-b99e-4009-9572-6cd706d2c5a0-1733416738006][type:else] = [executables:7a49d67e-9e43-419a-85a6-42e4b69ac0f0-1733407140668;] - [if_executable_block_body:febe514f-f58d-4aee-944d-0d88440e45b9-1733416732178] = 6771003b-f365-47ef-8060-5e2b80f19c9f-1733416680909 - [loading_requirement_container_meta:6771003b-f365-47ef-8060-5e2b80f19c9f-1733416680909] = [groups:][instances:26590eae-86b0-49b1-8c62-ec09b15fe7d2-1733416681795;] - [loading_requirement:fancymenu_visibility_requirement_is_number][requirement_mode:if][req_id:26590eae-86b0-49b1-8c62-ec09b15fe7d2-1733416681795] = ["mode":"equals","number":"{"placeholder":"json","values":{"json_path":"$['length']","source":"config/fancymenu/assets/introduction.json"}}","compare_with":"{"placeholder":"getvariable","values":{"name":"intro_index"}}"]$ - [if_executable_block_collapsed:febe514f-f58d-4aee-944d-0d88440e45b9-1733416732178] = false - [executable_block:f2c123a7-e24d-4edc-bae5-0550def830ef-1733405163842][type:generic] = [executables:febe514f-f58d-4aee-944d-0d88440e45b9-1733416732178;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Next - navigatable = true - widget_active_state_requirement_container_identifier = 3fa60b86-cbd1-441c-918c-a7db8cb03111-1733405163842 - [loading_requirement_container_meta:3fa60b86-cbd1-441c-918c-a7db8cb03111-1733405163842] = [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 = beae9028-b931-47d8-abda-641dff144cf1-1733405163842 - 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 = 1920 - auto_sizing_base_screen_height = 1052 - sticky_anchor = false - anchor_point = element - anchor_point_element = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - x = 338 - y = 210 - width = 68 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 99cb9bfb-d5fd-44d7-bc87-b5af2d609580-1733405163842 - [loading_requirement_container_meta:99cb9bfb-d5fd-44d7-bc87-b5af2d609580-1733405163842] = [groups:][instances:b2d79176-7058-4327-97fe-4b0560a52dee-1733405312674;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:b2d79176-7058-4327-97fe-4b0560a52dee-1733405312674] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = f2c123a7-e24d-4edc-bae5-0550def830ef-1733405163842 - [executable_block:dd02a997-9722-4842-b547-378095f8b58f-1733410169604][type:if] = [executables:][appended:c75f0e56-8ed7-4b10-9d7c-41270f2dc9c6-1733410173834] - [executable_action_instance:7a49d67e-9e43-419a-85a6-42e4b69ac0f0-1733407140668][action_type:set_variable] = intro_index:{"placeholder":"calc","values":{"expression":"{"placeholder":"getvariable","values":{"name":"intro_index"}}-1","decimal":"false"}} - [executable_block:c75f0e56-8ed7-4b10-9d7c-41270f2dc9c6-1733410173834][type:else] = [executables:7a49d67e-9e43-419a-85a6-42e4b69ac0f0-1733407140668;] - [if_executable_block_body:dd02a997-9722-4842-b547-378095f8b58f-1733410169604] = 3b528b7c-369a-4598-9ce4-603ab1d3378a-1733410154186 - [loading_requirement_container_meta:3b528b7c-369a-4598-9ce4-603ab1d3378a-1733410154186] = [groups:][instances:6701e537-df6d-46c6-9a8d-fb826d6b45e5-1733410156540;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:6701e537-df6d-46c6-9a8d-fb826d6b45e5-1733410156540] = intro_index:0 - [if_executable_block_collapsed:dd02a997-9722-4842-b547-378095f8b58f-1733410169604] = false - [executable_block:f2c123a7-e24d-4edc-bae5-0550def830ef-1733405163842][type:generic] = [executables:dd02a997-9722-4842-b547-378095f8b58f-1733410169604;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Back - navigatable = true - widget_active_state_requirement_container_identifier = 3fa60b86-cbd1-441c-918c-a7db8cb03111-1733405163842 - [loading_requirement_container_meta:3fa60b86-cbd1-441c-918c-a7db8cb03111-1733405163842] = [groups:][instances:68e117df-5711-4df3-b355-c894bc0dbc30-1733410262907;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if_not][req_id:68e117df-5711-4df3-b355-c894bc0dbc30-1733410262907] = intro_index:0 - 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 = c93502b2-e1a2-4619-a794-8b331224fb53-1733407221135 - 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 = 1114 - auto_sizing_base_screen_height = 664 - sticky_anchor = false - anchor_point = element - anchor_point_element = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - x = 266 - y = 210 - width = 68 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 99cb9bfb-d5fd-44d7-bc87-b5af2d609580-1733405163842 - [loading_requirement_container_meta:99cb9bfb-d5fd-44d7-bc87-b5af2d609580-1733405163842] = [groups:][instances:b2d79176-7058-4327-97fe-4b0560a52dee-1733405312674;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:b2d79176-7058-4327-97fe-4b0560a52dee-1733405312674] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = f2c123a7-e24d-4edc-bae5-0550def830ef-1733405163842 - [executable_action_instance:51aaa0d0-698f-4ad4-aefc-6f99ca0f4303-1733416990563][action_type:set_variable] = is_first_time:false - [executable_action_instance:1bc9848f-1574-474b-bdf5-463e67d6fbbb-1733417097428][action_type:set_variable] = intro_index:0 - [executable_block:f2c123a7-e24d-4edc-bae5-0550def830ef-1733405163842][type:generic] = [executables:51aaa0d0-698f-4ad4-aefc-6f99ca0f4303-1733416990563;1bc9848f-1574-474b-bdf5-463e67d6fbbb-1733417097428;] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Skip - navigatable = true - widget_active_state_requirement_container_identifier = 3fa60b86-cbd1-441c-918c-a7db8cb03111-1733405163842 - [loading_requirement_container_meta:3fa60b86-cbd1-441c-918c-a7db8cb03111-1733405163842] = [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 = 0ec55d10-3891-443e-aa6e-31ab8e99193a-1733405348282 - 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 = 1340 - auto_sizing_base_screen_height = 656 - sticky_anchor = false - anchor_point = element - anchor_point_element = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - x = 3 - y = 211 - width = 68 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 99cb9bfb-d5fd-44d7-bc87-b5af2d609580-1733405163842 - [loading_requirement_container_meta:99cb9bfb-d5fd-44d7-bc87-b5af2d609580-1733405163842] = [groups:][instances:b2d79176-7058-4327-97fe-4b0560a52dee-1733405312674;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:b2d79176-7058-4327-97fe-4b0560a52dee-1733405312674] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - bar_color = #00FF00 - background_color = #000000 - direction = right - progress_for_element_anchor = false - progress_source = {"placeholder":"calc","values":{"expression":"({"placeholder":"getvariable","values":{"name":"intro_index"}}+1)/({"placeholder":"json","values":{"json_path":"$['length']","source":"config/fancymenu/assets/introduction.json"}}+1)*100","decimal":"true"}} - value_mode = percentage - smooth_filling_animation = true - element_type = progress_bar - instance_identifier = 3bf23f81-1813-41cd-b7d9-2607e958b237-1733417631671 - 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 = 1140 - auto_sizing_base_screen_height = 696 - sticky_anchor = false - anchor_point = element - anchor_point_element = 251a933e-7a67-4f27-b124-27b136dd6ce2-1733402604830 - x = -1 - y = 235 - width = 412 - height = 2 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 54c8d6a9-5362-4f9e-bfbf-cded22d27893-1733417631671 - [loading_requirement_container_meta:54c8d6a9-5362-4f9e-bfbf-cded22d27893-1733417631671] = [groups:][instances:6db12d42-11a9-459e-ad1d-f66da3736e50-1733418688079;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:6db12d42-11a9-459e-ad1d-f66da3736e50-1733418688079] = is_first_time:true - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - source = [source:local]/config/fancymenu/assets/banners/main.png - repeat_texture = false - nine_slice_texture = false - nine_slice_texture_border_x = 5 - nine_slice_texture_border_y = 5 - image_tint = #FFFFFF - restart_animated_on_menu_load = false - element_type = image - instance_identifier = ce477f9d-eb49-4b92-9286-52caf7af938e-1728249600056 - 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 = 1070 - auto_sizing_base_screen_height = 606 - sticky_anchor = false - anchor_point = top-centered - x = -147 - y = 32 - width = 297 - height = 49 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = cd97a5d2-5650-4ccc-8de1-21a890a894b9-1728249600056 - [loading_requirement_container_meta:cd97a5d2-5650-4ccc-8de1-21a890a894b9-1728249600056] = [groups:][instances:faa13122-da99-4dae-be1f-28509ed534dd-1733403058515;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:faa13122-da99-4dae-be1f-28509ed534dd-1733403058515] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -element { - button_element_executable_block_identifier = 866f0472-f9a2-4a28-b947-d1b1e68f0961-1736857293881 - [executable_action_instance:d031ecd1-a252-428f-8915-2f0ebbe79bdb-1738267343742][action_type:mimicbutton] = title_screen:modmenu_titlescreen_mods_button - [executable_block:866f0472-f9a2-4a28-b947-d1b1e68f0961-1736857293881][type:generic] = [executables:d031ecd1-a252-428f-8915-2f0ebbe79bdb-1738267343742;] - 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 = dd4dc69d-9014-4734-a392-68e4e8e3e79f-1736857293881 - [loading_requirement_container_meta:dd4dc69d-9014-4734-a392-68e4e8e3e79f-1736857293881] = [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 = 476d24c1-849a-454c-9989-900006f29b8d-1736857293881 - 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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 79f17fc4-e45d-4668-bafa-e384869bfd3c-1733397680283 - x = 1 - y = 100 - width = 67 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = a39b3a44-c11d-4491-affd-a7550b1fc8c8-1736857293881 - [loading_requirement_container_meta:a39b3a44-c11d-4491-affd-a7550b1fc8c8-1736857293881] = [groups:][instances:c137232b-b9be-4540-9a4d-4a6d0c2d3f5e-1736863603405;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:c137232b-b9be-4540-9a4d-4a6d0c2d3f5e-1736863603405] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false -} - -vanilla_button { - button_element_executable_block_identifier = 1e8696fc-c1ed-4021-88a6-cf58a587626e-1777740062216 - [executable_block:1e8696fc-c1ed-4021-88a6-cf58a587626e-1777740062216][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 = 979176f0-20f2-4978-b309-5e621ba74eb1-1777740062216 - [loading_requirement_container_meta:979176f0-20f2-4978-b309-5e621ba74eb1-1777740062216] = [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 = 49 - width = 100 - height = 40 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = b551f283-67c6-4ba5-b407-b09334bf4518-1777740062216 - [loading_requirement_container_meta:b551f283-67c6-4ba5-b407-b09334bf4518-1777740062216] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 40c90684-fa0d-479c-aa99-2b356682da5e-1727977884503 - [executable_block:40c90684-fa0d-479c-aa99-2b356682da5e-1727977884503][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 = 9dcf107b-dfe8-455b-9c72-5ffe68ca036e-1731759164442 - [loading_requirement_container_meta:9dcf107b-dfe8-455b-9c72-5ffe68ca036e-1731759164442] = [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 = modmenu_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 = 1066 - auto_sizing_base_screen_height = 668 - sticky_anchor = false - anchor_point = element - anchor_point_element = ed4a2fe4-6421-4e55-b5b9-f5a8162b874c-1733336249006 - x = -25 - y = 195 - width = 68 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d151e6dd-2eca-4d81-8851-1a526790b066-1727977884503 - [loading_requirement_container_meta:d151e6dd-2eca-4d81-8851-1a526790b066-1727977884503] = [groups:][instances:889c16fd-3f5a-46c7-8554-1ffcd5848207-1733401366198;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:889c16fd-3f5a-46c7-8554-1ffcd5848207-1733401366198] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 7242eb62-b65f-48b3-ae4b-ade8c8d777ff-1777740062216 - [executable_block:7242eb62-b65f-48b3-ae4b-ade8c8d777ff-1777740062216][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 = 3756b0c2-8682-4763-a54f-2f8418aeb595-1777740062216 - [loading_requirement_container_meta:3756b0c2-8682-4763-a54f-2f8418aeb595-1777740062216] = [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_realms_notification_icons_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 = 515 - y = 240 - width = 62 - height = 18 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 27f494ba-4b3b-4fa2-b3a6-fee90ee3a63a-1777740062216 - [loading_requirement_container_meta:27f494ba-4b3b-4fa2-b3a6-fee90ee3a63a-1777740062216] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 0ab49113-4189-465a-9896-cf833f6d95f9-1727977884503 - [executable_block:0ab49113-4189-465a-9896-cf833f6d95f9-1727977884503][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 = 3c0acf24-3601-442c-b74f-253447490cba-1731759164442 - [loading_requirement_container_meta:3c0acf24-3601-442c-b74f-253447490cba-1731759164442] = [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 = 1194 - auto_sizing_base_screen_height = 626 - sticky_anchor = false - anchor_point = vanilla - x = 762 - y = 559 - width = 196 - height = 10 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 0d21bc9a-0754-414f-80f1-f904610fc35c-1727977884503 - [loading_requirement_container_meta:0d21bc9a-0754-414f-80f1-f904610fc35c-1727977884503] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = bb2fefe5-9a5e-4e64-96d7-e75658a971f5-1727977884503 - [executable_block:bb2fefe5-9a5e-4e64-96d7-e75658a971f5-1727977884503][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 = 26b19bf7-b365-4d04-a569-de80dc0e618d-1731759164442 - [loading_requirement_container_meta:26b19bf7-b365-4d04-a569-de80dc0e618d-1731759164442] = [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 = 1140 - auto_sizing_base_screen_height = 696 - sticky_anchor = false - anchor_point = element - anchor_point_element = mc_titlescreen_options_button - x = 72 - y = 0 - width = 68 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = d0cf0e3b-2e67-45f4-93ab-5d49b1d7f807-1727977884503 - [loading_requirement_container_meta:d0cf0e3b-2e67-45f4-93ab-5d49b1d7f807-1727977884503] = [groups:][instances:aeed7ef5-b02d-4715-a04f-71c36d820d0e-1733401457931;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:aeed7ef5-b02d-4715-a04f-71c36d820d0e-1733401457931] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = f241a24d-52c8-4ec6-8601-8325ba28a2ce-1727977884503 - [executable_block:f241a24d-52c8-4ec6-8601-8325ba28a2ce-1727977884503][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 = 58105052-1dd2-4e4e-95d0-c52bd373c31c-1731759164441 - [loading_requirement_container_meta:58105052-1dd2-4e4e-95d0-c52bd373c31c-1731759164441] = [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 = mid-centered - x = 102 - y = -44 - width = 65 - height = 106 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 03f0625c-5064-4ba0-961c-974f2015576b-1727977884503 - [loading_requirement_container_meta:03f0625c-5064-4ba0-961c-974f2015576b-1727977884503] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = b78d280d-0399-4041-9e43-d638930e431f-1777740062216 - [executable_block:b78d280d-0399-4041-9e43-d638930e431f-1777740062216][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 = d4f3072f-b4a1-4c1c-a874-e4ae3f987262-1777740062216 - [loading_requirement_container_meta:d4f3072f-b4a1-4c1c-a874-e4ae3f987262-1777740062216] = [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 = 559 - width = 171 - height = 9 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = bc12b133-dd57-4d01-8ab8-b5272917450a-1777740062216 - [loading_requirement_container_meta:bc12b133-dd57-4d01-8ab8-b5272917450a-1777740062216] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = a1a19189-d45d-4b26-bc02-35c9a1c962c1-1727977884503 - [executable_block:a1a19189-d45d-4b26-bc02-35c9a1c962c1-1727977884503][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 = 4f042675-c072-4b99-8251-1a2f846173ea-1731759164442 - [loading_requirement_container_meta:4f042675-c072-4b99-8251-1a2f846173ea-1731759164442] = [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 = 376394 - 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 = true - element_loading_requirement_container_identifier = 9a867b4b-b5f1-4a5f-86db-6da536908231-1727977884503 - [loading_requirement_container_meta:9a867b4b-b5f1-4a5f-86db-6da536908231-1727977884503] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 8062ced2-e984-4b55-b153-7a40d68c9f18-1727977884503 - [executable_block:8062ced2-e984-4b55-b153-7a40d68c9f18-1727977884503][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 = 4f6b8da9-f8bf-4952-a951-130e7e1dd898-1731759164441 - [loading_requirement_container_meta:4f6b8da9-f8bf-4952-a951-130e7e1dd898-1731759164441] = [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 = 0.0 - auto_sizing = false - auto_sizing_base_screen_width = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 0f517fa9-ac12-45b8-8789-673203d46b49-1727986276382 - x = 73 - y = 112 - width = 68 - height = 96 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 9e54ca23-b850-470f-a98e-28e60fb2a3ae-1727977884503 - [loading_requirement_container_meta:9e54ca23-b850-470f-a98e-28e60fb2a3ae-1727977884503] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 4b19a837-df6a-4196-ba37-f597d39aebe0-1727977884503 - [executable_block:4b19a837-df6a-4196-ba37-f597d39aebe0-1727977884503][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 = 5516ab7b-527a-4eb4-8a3d-8405dc531fe4-1731759164441 - [loading_requirement_container_meta:5516ab7b-527a-4eb4-8a3d-8405dc531fe4-1731759164441] = [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 = 604394 - 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 = true - element_loading_requirement_container_identifier = 13341ed3-f7a2-4d74-846b-925f78cba599-1727977884503 - [loading_requirement_container_meta:13341ed3-f7a2-4d74-846b-925f78cba599-1727977884503] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 1e7a4208-5f11-48a0-8a15-0c8d476d5814-1777740062216 - [executable_block:1e7a4208-5f11-48a0-8a15-0c8d476d5814-1777740062216][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 = 0ad8edce-7ce1-4d39-9a35-427857bc17e0-1777740062216 - [loading_requirement_container_meta:0ad8edce-7ce1-4d39-9a35-427857bc17e0-1777740062216] = [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 = 30 - width = 256 - height = 51 - stretch_x = false - stretch_y = false - stay_on_screen = false - element_loading_requirement_container_identifier = 34b79566-14c4-44d2-8105-39a0f91913e9-1777740062216 - [loading_requirement_container_meta:34b79566-14c4-44d2-8105-39a0f91913e9-1777740062216] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 28c0e0ae-136a-42d6-87cb-f30d7608cb50-1727977884503 - [executable_block:28c0e0ae-136a-42d6-87cb-f30d7608cb50-1727977884503][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 = 4b715af6-fdff-4b70-b96a-66e64da31e8b-1731759164442 - [loading_requirement_container_meta:4b715af6-fdff-4b70-b96a-66e64da31e8b-1731759164442] = [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 = true - element_loading_requirement_container_identifier = 511fbe31-7bb3-4063-8a6c-c2bed60bd984-1727977884503 - [loading_requirement_container_meta:511fbe31-7bb3-4063-8a6c-c2bed60bd984-1727977884503] = [groups:][instances:] - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = true - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = cc04b728-4b7e-4ce5-b211-0aa5dca872ae-1729092090032 - [executable_block:cc04b728-4b7e-4ce5-b211-0aa5dca872ae-1729092090032][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 = 20475db4-75dc-4f60-8f6b-1d3083e49cfe-1731759164442 - [loading_requirement_container_meta:20475db4-75dc-4f60-8f6b-1d3083e49cfe-1731759164442] = [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 = 604358 - 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 = 1228 - auto_sizing_base_screen_height = 666 - sticky_anchor = false - anchor_point = element - anchor_point_element = 476d24c1-849a-454c-9989-900006f29b8d-1736857293881 - x = -24 - y = 0 - width = 20 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 3eaa3209-c578-4cd2-9ebe-13dd98d47abe-1729092090032 - [loading_requirement_container_meta:3eaa3209-c578-4cd2-9ebe-13dd98d47abe-1729092090032] = [groups:][instances:9dbed776-0b3b-4f19-8021-a891f1435d21-1777740082513;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:9dbed776-0b3b-4f19-8021-a891f1435d21-1777740082513] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - -vanilla_button { - button_element_executable_block_identifier = 9fb301d9-eda4-464a-b1ce-6edbf51ab794-1727977884503 - [executable_block:9fb301d9-eda4-464a-b1ce-6edbf51ab794-1727977884503][type:generic] = [executables:] - restartbackgroundanimations = true - nine_slice_custom_background = false - nine_slice_border_x = 5 - nine_slice_border_y = 5 - label = Settings - navigatable = true - widget_active_state_requirement_container_identifier = 81adc063-512b-4e7b-a32a-a0926310c930-1731759164442 - [loading_requirement_container_meta:81adc063-512b-4e7b-a32a-a0926310c930-1731759164442] = [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 = 1920 - auto_sizing_base_screen_height = 1008 - sticky_anchor = false - anchor_point = element - anchor_point_element = 476d24c1-849a-454c-9989-900006f29b8d-1736857293881 - x = 71 - y = 0 - width = 68 - height = 20 - stretch_x = false - stretch_y = false - stay_on_screen = true - element_loading_requirement_container_identifier = 1365deaf-83dd-4ff0-af9d-f0fcb9a56112-1727977884503 - [loading_requirement_container_meta:1365deaf-83dd-4ff0-af9d-f0fcb9a56112-1727977884503] = [groups:][instances:76c13066-f256-40ed-b10b-a62b1e3224da-1733401445699;] - [loading_requirement:fancymenu_visibility_requirement_is_variable_value][requirement_mode:if][req_id:76c13066-f256-40ed-b10b-a62b1e3224da-1733401445699] = is_first_time:false - enable_parallax = false - parallax_intensity_v2 = 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 - rotation_degrees = 0.0 - advanced_rotation_mode = false - vertical_tilt_degrees = 0.0 - advanced_vertical_tilt_mode = false - horizontal_tilt_degrees = 0.0 - advanced_horizontal_tilt_mode = false - is_hidden = false - automated_button_clicks = 0 -} - diff --git a/overrides/config/fancymenu/normalized_scroll_screens.json b/overrides/config/fancymenu/normalized_scroll_screens.json deleted file mode 100644 index f826806..0000000 --- a/overrides/config/fancymenu/normalized_scroll_screens.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "title_screen": false -} \ No newline at end of file diff --git a/overrides/config/fancymenu/options.txt b/overrides/config/fancymenu/options.txt deleted file mode 100644 index 7a893e5..0000000 --- a/overrides/config/fancymenu/options.txt +++ /dev/null @@ -1,95 +0,0 @@ -##[general] - -B:force_fullscreen = 'true'; -I:default_gui_scale = '-1'; -B:play_vanilla_menu_music = 'false'; - - -##[customization] - -B:modpack_mode = 'true'; -B:show_customization_overlay = 'true'; -B:advanced_customization_mode = 'true'; - - -##[loading] - -S:preload_resources = '[source:local]config/fancymenu/assets/maps/map.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-asia.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-europe.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-africa.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-australia.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-north-america.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-bg.jpg%!source_end!%[source:local]config/fancymenu/assets/maps/map-south-america.jpg%!source_end!%[source:local]config/fancymenu/assets/icons/proxy.jpg%!source_end!%[source:local]config/fancymenu/assets/banners/logo.gif%!source_end!%[source:local]config/fancymenu/assets/banners/main.png%!source_end!%'; -B:allow_game_intro_skip = 'false'; -S:game_intro_animation_name = ''; -B:game_intro_fade_out = 'false'; -S:custom_game_intro_skip_text = ''; - - -##[window] - -S:custom_window_icon_16 = '/config/fancymenu/assets/banners/logo16.png'; -B:show_custom_window_icon = 'true'; -S:custom_window_icon_macos = '/config/fancymenu/assets/banners/logomac.icns'; -S:custom_window_icon_32 = '/config/fancymenu/assets/banners/logo32.png'; -S:custom_window_title = 'BuildTheEarth'; - - -##[multiplayer_screen] - -B:show_multiplayer_screen_server_icons = 'true'; - - -##[singleplayer_screen] - -B:show_singleplayer_screen_world_icons = 'true'; - - -##[layout_editor] - -B:layout_editor_grid_snapping = 'true'; -B:anchor_overlay_change_anchor_on_area_hover = 'true'; -B:show_layout_editor_grid = 'true'; -S:anchor_overlay_color_base_override = ''; -B:enable_element_rotation_controls = 'true'; -F:anchor_overlay_opacity_normal = '0.5'; -F:anchor_overlay_opacity_busy = '0.7'; -D:anchor_overlay_hover_charging_time_seconds = '2.0'; -B:anchor_overlay_change_anchor_on_element_hover = 'true'; -S:anchor_overlay_visibility_mode = 'dragging'; -B:anchor_overlay_show_all_connection_lines = 'false'; -F:layout_editor_grid_snapping_strength = '1.0'; -I:layout_editor_grid_size = '10'; -B:invert_anchor_overlay_color = 'false'; -B:enable_buddy = 'true'; -S:anchor_overlay_color_border_override = ''; -B:enable_element_tilting_controls = 'true'; - - -##[ui] - -F:ui_scale = '1.0'; -B:play_ui_click_sounds = 'true'; -B:enable_ui_text_shadow = 'false'; -I:context_menu_hover_open_speed = '1'; -S:ui_theme = 'butter_dark'; - - -##[debug_overlay] - -B:debug_overlay_show_basic_screen_category = 'true'; -B:show_debug_overlay = 'false'; -B:debug_overlay_show_resources_category = 'true'; -B:debug_overlay_show_system_category = 'true'; -B:debug_overlay_show_advanced_screen_category = 'true'; - - -##[tutorial] - -B:show_welcome_screen = 'false'; - - -##[keyframe_editor] - -B:arrow_keys_move_preview = 'false'; - - -##[advanced] - -L:placeholder_caching_duration_ms = '30'; -L:requirement_caching_duration_ms = '0'; \ No newline at end of file diff --git a/overrides/config/fancymenu/slideshows/mainmenu/backgrounds.json b/overrides/config/fancymenu/slideshows/mainmenu/backgrounds.json deleted file mode 100644 index 31abcd7..0000000 --- a/overrides/config/fancymenu/slideshows/mainmenu/backgrounds.json +++ /dev/null @@ -1 +0,0 @@ -{"1":{"url":"https://cdn.buildtheearth.net/uploads/b83f00a7a9a30369aecfe714b859b13f75cb9047ea4982894ad672946035a4cc","credit":"Azguendare_"},"2":{"url":"https://cdn.buildtheearth.net/uploads/401f90fb89d8349935cbf8a46d67604c36cf283be6edabe4892a6bac159fcf17","credit":"phattiel"},"3":{"url":"https://cdn.buildtheearth.net/uploads/4bcfe6a2e29fce8c7e572c4a4a70f9e8acaf6390d9c5478cded090eeb80a578b","credit":"av1ks"},"4":{"url":"https://cdn.buildtheearth.net/uploads/4bcfe6a2e29fce8c7e572c4a4a70f9e8acaf6390d9c5478cded090eeb80a578b","credit":"richtigerichtung, norwod and thatsjustlukas"},"5":{"url":"https://cdn.buildtheearth.net/uploads/21ca3ee59b381b30c47d05f68dd33c2da365c0905952e1c0b4146030af6ff09d","credit":"davixdevelop, magix92, pineapplestrix, adi1203"},"logo":{"url":"https://cdn.buildtheearth.net/uploads/553cee2de3cb651ccbe6c5405e746bfb57926fe8adf97d1d6ed708d7815f0485","credit":null}} \ No newline at end of file diff --git a/overrides/config/fancymenu/slideshows/mainmenu/images/0.png b/overrides/config/fancymenu/slideshows/mainmenu/images/0.png deleted file mode 100644 index 3b43fd6..0000000 Binary files a/overrides/config/fancymenu/slideshows/mainmenu/images/0.png and /dev/null differ diff --git a/overrides/config/fancymenu/slideshows/mainmenu/images/1.png b/overrides/config/fancymenu/slideshows/mainmenu/images/1.png deleted file mode 100644 index 6af7406..0000000 Binary files a/overrides/config/fancymenu/slideshows/mainmenu/images/1.png and /dev/null differ diff --git a/overrides/config/fancymenu/slideshows/mainmenu/images/2.png b/overrides/config/fancymenu/slideshows/mainmenu/images/2.png deleted file mode 100644 index 219c209..0000000 Binary files a/overrides/config/fancymenu/slideshows/mainmenu/images/2.png and /dev/null differ diff --git a/overrides/config/fancymenu/slideshows/mainmenu/images/3.png b/overrides/config/fancymenu/slideshows/mainmenu/images/3.png deleted file mode 100644 index 219c209..0000000 Binary files a/overrides/config/fancymenu/slideshows/mainmenu/images/3.png and /dev/null differ diff --git a/overrides/config/fancymenu/slideshows/mainmenu/images/4.png b/overrides/config/fancymenu/slideshows/mainmenu/images/4.png deleted file mode 100644 index 2fdde0a..0000000 Binary files a/overrides/config/fancymenu/slideshows/mainmenu/images/4.png and /dev/null differ diff --git a/overrides/config/fancymenu/ui_themes/light.json b/overrides/config/fancymenu/ui_themes/light.json deleted file mode 100644 index 6971d44..0000000 --- a/overrides/config/fancymenu/ui_themes/light.json +++ /dev/null @@ -1,262 +0,0 @@ -{ - "identifier": "light", - "display_name": "fancymenu.ui.themes.light", - "menu_bar_bottom_line_color": { - "hex": "#777777FF" - }, - "layout_editor_mouse_selection_rectangle_color": { - "hex": "#0394FCFF" - }, - "layout_editor_grid_color_normal": { - "hex": "#BA79F164" - }, - "layout_editor_grid_color_center": { - "hex": "#5B5EFF64" - }, - "layout_editor_element_border_color_normal": { - "hex": "#0394FCFF" - }, - "layout_editor_element_border_color_selected": { - "hex": "#03DBFCFF" - }, - "layout_editor_element_border_rotation_controls_color": { - "hex": "#9E2BFFFF" - }, - "layout_editor_element_border_vertical_tilting_controls_color": { - "hex": "#FFB52BFF" - }, - "layout_editor_element_border_horizontal_tilting_controls_color": { - "hex": "#91FF2BFF" - }, - "layout_editor_element_dragging_not_allowed_color": { - "hex": "#E83609C8" - }, - "layout_editor_element_border_display_line_background_color": { - "hex": "#00000080" - }, - "layout_editor_element_border_display_line_text_color": { - "hex": "#FFFFFFFF" - }, - "layout_editor_anchor_point_overlay_color_base": { - "hex": "#25B479FF" - }, - "layout_editor_anchor_point_overlay_color_border": { - "hex": "#114F34FF" - }, - "layout_editor_close_icon_color": { - "hex": "#932813FF" - }, - "scroll_grabber_color_normal": { - "hex": "#595B5D64" - }, - "scroll_grabber_color_hover": { - "hex": "#66686864" - }, - "screen_background_color": { - "hex": "#B2B2B2FF" - }, - "screen_background_color_darker": { - "hex": "#ADADADFF" - }, - "element_border_color_normal": { - "hex": "#777777FF" - }, - "element_border_color_hover": { - "hex": "#777777FF" - }, - "element_background_color_normal": { - "hex": "#CBCBCBFF" - }, - "element_background_color_hover": { - "hex": "#AFAFAFFF" - }, - "slider_handle_color_normal": { - "hex": "#858484FF" - }, - "slider_handle_color_hover": { - "hex": "#A2A2A2FF" - }, - "area_background_color": { - "hex": "#CBCBCBFF" - }, - "edit_box_background_color": { - "hex": "#CBCBCBFF" - }, - "edit_box_border_color_normal": { - "hex": "#383838FF" - }, - "edit_box_border_color_focused": { - "hex": "#444444FF" - }, - "list_entry_color_selected_hovered": { - "hex": "#AFAFAFFF" - }, - "actions_entry_background_color_action": { - "hex": "#E0E0E0FF" - }, - "actions_entry_background_color_action_hover": { - "hex": "#CECECEFF" - }, - "actions_entry_background_color_if": { - "hex": "#C9DBEFFF" - }, - "actions_entry_background_color_if_hover": { - "hex": "#B8CEE8FF" - }, - "actions_entry_background_color_else_if": { - "hex": "#E9D7F0FF" - }, - "actions_entry_background_color_else_if_hover": { - "hex": "#D8C6E3FF" - }, - "actions_entry_background_color_else": { - "hex": "#F3E1C7FF" - }, - "actions_entry_background_color_else_hover": { - "hex": "#E5D1B6FF" - }, - "actions_entry_background_color_while": { - "hex": "#CCEBE3FF" - }, - "actions_entry_background_color_while_hover": { - "hex": "#BCDED4FF" - }, - "actions_entry_background_color_folder": { - "hex": "#F2D5DBFF" - }, - "actions_entry_background_color_folder_hover": { - "hex": "#E6C7CEFF" - }, - "actions_entry_background_color_generic_block": { - "hex": "#E5E5E5FF" - }, - "actions_entry_background_color_generic_block_hover": { - "hex": "#D2D2D2FF" - }, - "actions_chain_indicator_color": { - "hex": "#8CAAD296" - }, - "actions_chain_indicator_hovered_color": { - "hex": "#6895D7BE" - }, - "actions_chain_indicator_selected_color": { - "hex": "#DCA236D2" - }, - "actions_minimap_background_color": { - "hex": "#ECECECC8" - }, - "actions_minimap_border_color": { - "hex": "#ACACACDC" - }, - "actions_minimap_viewport_color": { - "hex": "#5050503C" - }, - "actions_minimap_viewport_border_color": { - "hex": "#D2DEFF64" - }, - "actions_minimap_tooltip_border_color": { - "hex": "#78AADCDC" - }, - "text_editor_sidebar_color": { - "hex": "#A4A4A4FF" - }, - "text_editor_line_number_text_color_normal": { - "hex": "#696969FF" - }, - "text_editor_line_number_text_color_selected": { - "hex": "#464646FF" - }, - "listing_dot_color_1": { - "hex": "#438DD0FF" - }, - "listing_dot_color_2": { - "hex": "#AB3950FF" - }, - "listing_dot_color_3": { - "hex": "#B2740CFF" - }, - "suggestions_background_color": { - "hex": "#A2A2A2FF" - }, - "suggestions_text_color_normal": { - "hex": "#2D2D2DFF" - }, - "suggestions_text_color_selected": { - "hex": "#205EA2FF" - }, - "ui_texture_color": { - "hex": "#2D2D2DFF" - }, - "generic_text_base_color": { - "hex": "#252525FF" - }, - "element_label_color_normal": { - "hex": "#2D2D2DFF" - }, - "element_label_color_inactive": { - "hex": "#8A8989FF" - }, - "edit_box_text_color_normal": { - "hex": "#2D2D2DFF" - }, - "edit_box_text_color_uneditable": { - "hex": "#8A8989FF" - }, - "edit_box_suggestion_text_color": { - "hex": "#8A8989FF" - }, - "description_area_text_color": { - "hex": "#2D2D2DFF" - }, - "text_editor_text_color": { - "hex": "#484E53FF" - }, - "success_text_color": { - "hex": "#197E02FF" - }, - "error_text_color": { - "hex": "#A41B1BFF" - }, - "warning_text_color": { - "hex": "#9B6105FF" - }, - "text_editor_text_formatting_nested_text_color_1": { - "hex": "#A10F0FFF" - }, - "text_editor_text_formatting_nested_text_color_2": { - "hex": "#B27D09FF" - }, - "text_editor_text_formatting_nested_text_color_3": { - "hex": "#66A80AFF" - }, - "text_editor_text_formatting_nested_text_color_4": { - "hex": "#089891FF" - }, - "text_editor_text_formatting_nested_text_color_5": { - "hex": "#072E8DFF" - }, - "text_editor_text_formatting_nested_text_color_6": { - "hex": "#26069DFF" - }, - "text_editor_text_formatting_nested_text_color_7": { - "hex": "#6A0685FF" - }, - "text_editor_text_formatting_nested_text_color_8": { - "hex": "#730303FF" - }, - "text_editor_text_formatting_nested_text_color_9": { - "hex": "#854306FF" - }, - "text_editor_text_formatting_nested_text_color_10": { - "hex": "#918504FF" - }, - "text_editor_text_formatting_nested_text_color_11": { - "hex": "#267A07FF" - }, - "text_editor_text_formatting_nested_text_color_12": { - "hex": "#363CF5FF" - }, - "text_editor_text_formatting_brackets_color": { - "hex": "#FF3A0064" - } -} \ No newline at end of file diff --git a/overrides/config/fancymenu/user_variables.db b/overrides/config/fancymenu/user_variables.db deleted file mode 100644 index 47d388b..0000000 --- a/overrides/config/fancymenu/user_variables.db +++ /dev/null @@ -1,44 +0,0 @@ -type = user_variables - -variable { - name = intro_index - value = 0 - reset_on_launch = false -} - -variable { - name = is_first_time - value = true - reset_on_launch = false -} - -variable { - name = calculator_ans - value = - reset_on_launch = false -} - -variable { - name = background_index - value = 4 - reset_on_launch = false -} - -variable { - name = asean - value = ["asean.thatsnek.asia"] - reset_on_launch = false -} - -variable { - name = current_server - value = 8cb65869-e5e0-45da-b214-eb561eae35dc - reset_on_launch = false -} - -variable { - name = buildteams - value = - reset_on_launch = false -} - diff --git a/overrides/config/ferritecore.mixin.properties b/overrides/config/ferritecore.mixin.properties deleted file mode 100644 index 8ce6b96..0000000 --- a/overrides/config/ferritecore.mixin.properties +++ /dev/null @@ -1,24 +0,0 @@ -# Replace the blockstate neighbor table -replaceNeighborLookup = true -# Do not store the properties of a state explicitly and read themfrom the replace neighbor table instead. Requires replaceNeighborLookup to be enabled -replacePropertyMap = true -# Cache the predicate instances used in multipart models -cacheMultipartPredicates = true -# Avoid creation of new strings when creating ModelResourceLocations -modelResourceLocations = true -# Do not create a new MultipartBakedModel instance for each block state using the same multipartmodel. Requires cacheMultipartPredicates to be enabled -multipartDeduplication = true -# Deduplicate cached data for blockstates, most importantly collision and render shapes -blockstateCacheDeduplication = true -# Deduplicate vertex data of baked quads in the basic model implementations -bakedQuadDeduplication = true -# Use smaller data structures for "simple" models, especially models with few side-specific faces -modelSides = true -# Save memory overhead from empty data component maps/patched -dataComponentPatch = true -# Replace objects used to detect multi-threaded access to chunks by a much smaller field. This option is disabled by default due to very rare and very hard-to-reproduce crashes, use at your own risk! -useSmallThreadingDetector = false -# Use a slightly more compact, but also slightly slower representation for block states -compactFastMap = false -# Populate the neighbor table used by vanilla. Enabling this slightly increases memory usage, but can help with issues in the rare case where mods access it directly. -populateNeighborTable = false diff --git a/overrides/config/flashback/imgui.ini b/overrides/config/flashback/imgui.ini deleted file mode 100644 index 18d007a..0000000 --- a/overrides/config/flashback/imgui.ini +++ /dev/null @@ -1,18 +0,0 @@ -[Window][###Timeline] -Pos=0,830 -Size=1920,250 -Collapsed=0 -DockId=0x00000002,0 - -[Window][###Visuals] -Pos=1670,0 -Size=250,830 -Collapsed=0 -DockId=0x00000004,0 - -[Docking][Data] -DockSpace ID=0x7C6B3D9B Window=0xA787BDB4 Pos=0,22 Size=1920,1080 Split=Y Selected=0x1F1A625A - DockNode ID=0x00000001 Parent=0x7C6B3D9B SizeRef=1920,830 Split=X Selected=0x1F1A625A - DockNode ID=0x00000003 Parent=0x00000001 SizeRef=1670,830 CentralNode=1 NoTabBar=1 Selected=0x1F1A625A - DockNode ID=0x00000004 Parent=0x00000001 SizeRef=250,830 Selected=0x595032EA - DockNode ID=0x00000002 Parent=0x7C6B3D9B SizeRef=1920,250 Selected=0xBF88A430 diff --git a/overrides/config/immediatelyfast.json b/overrides/config/immediatelyfast.json deleted file mode 100644 index aad1b9b..0000000 --- a/overrides/config/immediatelyfast.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "REGULAR_INFO": "----- Regular config values below -----", - "enhanced_batching": true, - "font_atlas_resizing": true, - "font_atlas_size": 1024, - "map_atlas_generation": true, - "map_atlas_size": 2048, - "skip_text_translucency_sorting": true, - "fast_text_lookup": true, - "avoid_redundant_framebuffer_switching": true, - "fix_slow_buffer_upload_on_apple_gpu": true, - "EXPERIMENTAL_INFO": "----- Experimental config values below (Rendering glitches may occur) -----", - "experimental_disable_resource_pack_conflict_handling": false, - "experimental_sign_text_buffering": false, - "DEBUG_INFO": "----- Debug only config values below (Do not touch) -----", - "debug_only_and_not_recommended_disable_mod_conflict_handling": false, - "debug_only_and_not_recommended_disable_hardware_conflict_handling": false, - "debug_only_print_additional_error_information": false, - "debug_only_use_last_usage_for_batch_ordering": false, - "debug_only_detailed_memory_leak_detection": false -} \ No newline at end of file diff --git a/overrides/config/iris-excluded.json b/overrides/config/iris-excluded.json deleted file mode 100644 index c168c6c..0000000 --- a/overrides/config/iris-excluded.json +++ /dev/null @@ -1 +0,0 @@ -{"excluded":["put:valuesHere"]} \ No newline at end of file diff --git a/overrides/config/iris.properties b/overrides/config/iris.properties deleted file mode 100644 index 0db2b14..0000000 --- a/overrides/config/iris.properties +++ /dev/null @@ -1,9 +0,0 @@ -#This file stores configuration options for Iris, such as the currently active shaderpack -#Sat May 02 19:01:56 CEST 2026 -allowUnknownShaders=false -colorSpace=SRGB -disableUpdateMessage=false -enableDebugOptions=false -enableShaders=true -maxShadowRenderDistance=32 -shaderPack= diff --git a/overrides/config/languagereload.json b/overrides/config/languagereload.json deleted file mode 100644 index f42547b..0000000 --- a/overrides/config/languagereload.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "version": 1, - "multilingualItemSearch": true, - "removableDefaultLanguage": false, - "fallbacks": [], - "previousFallbacks": [], - "language": "en_us", - "previousLanguage": "" -} diff --git a/overrides/config/lithium.properties b/overrides/config/lithium.properties deleted file mode 100644 index fdb5556..0000000 --- a/overrides/config/lithium.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This is the configuration file for Lithium. -# -# You can find information on editing this file and all the available options here: -# https://github.com/CaffeineMC/lithium-fabric/wiki/Configuration-File -# -# By default, this file will be empty except for this notice. diff --git a/overrides/config/notenoughanimations.json b/overrides/config/notenoughanimations.json deleted file mode 100644 index 97d49c8..0000000 --- a/overrides/config/notenoughanimations.json +++ /dev/null @@ -1,107 +0,0 @@ -{ - "configVersion": 11, - "animationSmoothingSpeed": 0.2, - "holdingItems": [ - "quad-mstv-mtv:pale_oak_torch", - "quad-mstv-mtv:bamboo_torch", - "minecraft:clock", - "minecraft:waxed_oxidized_copper_lantern", - "quad-mstv-mtv:spruce_soul_torch", - "minecraft:compass", - "minecraft:soul_torch", - "minecraft:waxed_weathered_copper_lantern", - "quad-mstv-mtv:jungle_soul_torch", - "quad-mstv-mtv:birch_soul_torch", - "quad-mstv-mtv:warped_soul_torch", - "minecraft:exposed_copper_lantern", - "minecraft:torch", - "quad-mstv-mtv:bamboo_soul_torch", - "minecraft:copper_lantern", - "minecraft:waxed_copper_lantern", - "minecraft:waxed_exposed_copper_lantern", - "quad-mstv-mtv:mangrove_torch", - "quad-mstv-mtv:cherry_soul_torch", - "minecraft:recovery_compass", - "quad-mstv-mtv:jungle_torch", - "quad-mstv-mtv:mangrove_soul_torch", - "minecraft:soul_lantern", - "quad-mstv-mtv:acacia_torch", - "quad-mstv-mtv:cherry_torch", - "quad-mstv-mtv:spruce_torch", - "quad-mstv-mtv:dark_oak_soul_torch", - "quad-mstv-mtv:warped_torch", - "minecraft:lantern", - "quad-mstv-mtv:crimson_soul_torch", - "quad-mstv-mtv:pale_oak_soul_torch", - "quad-mstv-mtv:birch_torch", - "quad-mstv-mtv:acacia_soul_torch", - "quad-mstv-mtv:crimson_torch", - "minecraft:weathered_copper_lantern", - "quad-mstv-mtv:dark_oak_torch" - ], - "enableAnimationSmoothing": true, - "enableInWorldMapRendering": true, - "enableOffhandHiding": true, - "enableRotationLocking": true, - "enableLadderAnimation": true, - "ladderAnimationAmplifier": 0.35, - "ladderAnimationArmHeight": 1.7, - "ladderAnimationArmSpeed": 2.0, - "enableRotateToLadder": true, - "enableEatDrinkAnimation": true, - "enableRowBoatAnimation": true, - "enableHorseAnimation": true, - "enableHorseLegAnimation": false, - "dontHoldItemsInBed": true, - "freezeArmsInBed": true, - "rotationLock": "NONE", - "limitRotationLockToFP": true, - "applyRotationLockToEveryone": false, - "showLastUsedSword": false, - "sheathSwords": [ - "minecraft:golden_sword", - "minecraft:iron_sword", - "minecraft:wooden_sword", - "minecraft:stone_sword", - "minecraft:diamond_sword", - "minecraft:netherite_sword" - ], - "enableCrawlingAnimation": true, - "holdUpItemsMode": "CONFIG", - "holdUpTarget": "CAMERA", - "holdUpCameraOffset": 0.1, - "holdUpOnlySelf": false, - "holdUpItemOffset": 0.0, - "itemSwapAnimation": true, - "tweakElytraAnimation": true, - "petAnimation": true, - "fallingAnimation": false, - "freezingAnimation": true, - "huggingAnimation": false, - "narutoRunning": false, - "disableLegSmoothing": false, - "bowAnimation": "VANILLA", - "customBowRotationLock": false, - "clampCrossbowAnimations": false, - "burningAnimation": true, - "hideItemsForTheseBows": [], - "mapHolding": [ - "minecraft:filled_map", - "antiqueatlas:antique_atlas" - ], - "animateLanterns": true, - "lanternItems": [ - "minecraft:waxed_copper_lantern", - "minecraft:waxed_exposed_copper_lantern", - "minecraft:soul_lantern", - "minecraft:waxed_oxidized_copper_lantern", - "minecraft:exposed_copper_lantern", - "minecraft:lantern", - "minecraft:waxed_weathered_copper_lantern", - "minecraft:weathered_copper_lantern", - "minecraft:oxidized_copper_lantern", - "minecraft:copper_lantern" - ], - "maxBlockingAngle": 15.0, - "maxNormalAngle": 50.0 -} \ No newline at end of file diff --git a/overrides/config/packetfixer.properties b/overrides/config/packetfixer.properties deleted file mode 100644 index 5db087a..0000000 --- a/overrides/config/packetfixer.properties +++ /dev/null @@ -1,18 +0,0 @@ -#Packet Fixer config file. -#Default values (minecraft default): nbtMaxSize 2097152, packetSize 1048576, decoderSize 8388608 and varInt21Size 3. -#Max values are 2147483647 for packetSize/decoderSize/varInt21 and 9223372036854775807 for nbtMaxSize. -#Sat May 02 19:01:37 CEST 2026 -allSizesUnlimited=true -chunkPacketData=2097152 -decoderSize=8388608 -forceUnlimitedNbtEnabled=false -keepAliveTimeout=120 -loginTimeout=120 -nbtMaxSize=2097152 -packetSize=1048576 -playerIdleTimeout=0 -readTimeout=120 -stringSize=32767 -varInt=5 -varInt21=3 -varLong=10 diff --git a/overrides/config/skinlayers.json b/overrides/config/skinlayers.json deleted file mode 100644 index b787a6f..0000000 --- a/overrides/config/skinlayers.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "enableHat": true, - "enableJacket": true, - "enableLeftSleeve": true, - "enableRightSleeve": true, - "enableLeftPants": true, - "enableRightPants": true, - "baseVoxelSize": 1.15, - "bodyVoxelWidthSize": 1.05, - "headVoxelSize": 1.18, - "renderDistanceLOD": 14, - "enableSkulls": true, - "enableSkullsItems": true, - "skullVoxelSize": 1.1, - "fastRender": true, - "compatibilityMode": true, - "irisCompatibilityMode": false, - "applySodiumWorkaround": false, - "firstPersonPixelScaling": 1.1 -} \ No newline at end of file diff --git a/overrides/config/sodium-extra-options.json b/overrides/config/sodium-extra-options.json deleted file mode 100644 index 9cfb79b..0000000 --- a/overrides/config/sodium-extra-options.json +++ /dev/null @@ -1,97 +0,0 @@ -{ - "animation_settings": { - "animation": true, - "water": true, - "lava": true, - "fire": true, - "portal": true, - "block_animations": true, - "sculk_sensor": true - }, - "particle_settings": { - "particles": true, - "rain_splash": true, - "block_break": true, - "block_breaking": true, - "other": {} - }, - "detail_settings": { - "sky": true, - "sun": true, - "moon": true, - "stars": true, - "rain_snow": true, - "biome_colors": true, - "sky_colors": true - }, - "render_settings": { - "global_fog": true, - "fog_type_config": { - "LAVA": { - "enable": true, - "environment_start_multiplier": 100, - "environment_end_multiplier": 100, - "render_distance_start_multiplier": 100, - "render_distance_end_multiplier": 100, - "sky_end_multiplier": 100, - "cloud_end_multiplier": 100 - }, - "WATER": { - "enable": true, - "environment_start_multiplier": 100, - "environment_end_multiplier": 100, - "render_distance_start_multiplier": 100, - "render_distance_end_multiplier": 100, - "sky_end_multiplier": 100, - "cloud_end_multiplier": 100 - }, - "POWDER_SNOW": { - "enable": true, - "environment_start_multiplier": 100, - "environment_end_multiplier": 100, - "render_distance_start_multiplier": 100, - "render_distance_end_multiplier": 100, - "sky_end_multiplier": 100, - "cloud_end_multiplier": 100 - }, - "ATMOSPHERIC": { - "enable": true, - "environment_start_multiplier": 100, - "environment_end_multiplier": 100, - "render_distance_start_multiplier": 100, - "render_distance_end_multiplier": 100, - "sky_end_multiplier": 100, - "cloud_end_multiplier": 100 - } - }, - "light_updates": true, - "item_frame": true, - "armor_stand": true, - "painting": true, - "piston": true, - "beacon_beam": true, - "limit_beacon_beam_height": false, - "enchanting_table_book": true, - "item_frame_name_tag": true, - "player_name_tag": true - }, - "extra_settings": { - "overlay_corner": "TOP_LEFT", - "text_contrast": "NONE", - "show_fps": false, - "show_f_p_s_extended": true, - "show_coords": false, - "reduce_resolution_on_mac": false, - "use_adaptive_sync": false, - "cloud_height": 192, - "toasts": true, - "advancement_toast": true, - "recipe_toast": true, - "system_toast": true, - "tutorial_toast": true, - "instant_sneak": false, - "prevent_shaders": false, - "steady_debug_hud": true, - "steady_debug_hud_refresh_interval": 1 - } -} \ No newline at end of file diff --git a/overrides/config/sodium-extra.properties b/overrides/config/sodium-extra.properties deleted file mode 100644 index dde224b..0000000 --- a/overrides/config/sodium-extra.properties +++ /dev/null @@ -1,7 +0,0 @@ -# This is the configuration file for Sodium Extra. -# This file exists for debugging purposes and should not be configured otherwise. -# -# You can find information on editing this file and all the available options here: -# https://github.com/FlashyReese/sodium-extra-fabric/wiki/Configuration-File -# -# By default, this file will be empty except for this notice. diff --git a/overrides/config/sodium-fingerprint.json b/overrides/config/sodium-fingerprint.json deleted file mode 100644 index 9096236..0000000 --- a/overrides/config/sodium-fingerprint.json +++ /dev/null @@ -1 +0,0 @@ -{"v":1,"s":"04069b979a9373a2852edbbac519bd4637b2f58f978038277d1a02a8a5d2bab2a15c95ccdec04aaee72898c4e56a1e64788709eda98fdb19f3ec059f464ef666","u":"e1dab9d9678dabfde925c872a2ddc2ef2d1f19f94198bf9bf45e00cc1ff91313b82bb0b70f54dd0848b2ca120bfa7cc18b0aa052e4a66024b899c81b4cbcecb2","p":"fb91d3786acb9f6c6b37035f096876a1e3a7acba0ef4aa7628fda3a8ec9a5155be71d114c4f614c2d1106936e2250b03415f3dc122e4777429c965cd74043bad","t":1777730867} \ No newline at end of file diff --git a/overrides/config/sodium-mixins.properties b/overrides/config/sodium-mixins.properties deleted file mode 100644 index 864cfde..0000000 --- a/overrides/config/sodium-mixins.properties +++ /dev/null @@ -1,6 +0,0 @@ -# This is the configuration file for Sodium. -# -# You can find information on editing this file and all the available options here: -# https://github.com/CaffeineMC/sodium/wiki/Configuration-File -# -# By default, this file will be empty except for this notice. diff --git a/overrides/config/sodium-options.json b/overrides/config/sodium-options.json deleted file mode 100644 index d3107ae..0000000 --- a/overrides/config/sodium-options.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "quality": { - "hidden_fluid_culling": true, - "improved_fluid_shaping": false - }, - "performance": { - "chunk_builder_threads": 0, - "chunk_build_defer_mode": "ALWAYS", - "animate_only_visible_textures": true, - "use_entity_culling": true, - "use_fog_occlusion": true, - "use_block_face_culling": true, - "use_no_error_g_l_context": true, - "quad_splitting_mode": "SAFE" - }, - "advanced": { - "enable_memory_tracing": false, - "use_advanced_staging_buffers": true, - "cpu_render_ahead_limit": 3 - }, - "debug": { - "terrain_sorting_enabled": true - }, - "notifications": { - "has_cleared_donation_button": false, - "has_seen_donation_prompt": false - } -} \ No newline at end of file diff --git a/overrides/config/transition.json b/overrides/config/transition.json deleted file mode 100644 index 652c133..0000000 --- a/overrides/config/transition.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "version": 1, - "userConsentedToSendCrashReports": false -} \ No newline at end of file diff --git a/overrides/config/trender.json b/overrides/config/trender.json deleted file mode 100644 index 8c0cf63..0000000 --- a/overrides/config/trender.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "version": 1, - "style": "VANILLA_MODERN" -} \ No newline at end of file diff --git a/overrides/config/viafabricplus/accounts.json b/overrides/config/viafabricplus/accounts.json deleted file mode 100644 index 9e26dfe..0000000 --- a/overrides/config/viafabricplus/accounts.json +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/overrides/config/viafabricplus/settings.json b/overrides/config/viafabricplus/settings.json deleted file mode 100644 index 02dcbff..0000000 --- a/overrides/config/viafabricplus/settings.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "general": { - "multiplayer_screen_button_orientation": "right_top", - "add_server_screen_button_orientation": "right_top", - "direct_connect_screen_button_orientation": "right_top", - "filter_creative_tabs": "vanilla_and_modded", - "save_selected_protocol_version": true, - "show_classic_loading_progress": true, - "show_advertised_server_version": true, - "ignore_packet_translation_errors": "kick", - "load_skins_and_skulls_in_legacy_versions": true, - "emulate_inventory_actions_in_alpha_versions": true, - "save_scroll_position_in_slot_screens": true, - "experimental_block_connections": false - }, - "bedrock": { - "replace_default_port": true, - "experimental_features": true - }, - "authentication": { - "use_beta_craft_authentication": true, - "verify_session_for_online_mode": true, - "automatically_select_cpe_when_using_classicube": true, - "set_session_name_to_classicube_name": true - }, - "debug": { - "queue_config_packets": true, - "print_networking_errors_to_logs": true, - "ignore_fabric_sync_errors": false, - "hide_modern_jigsaw_screen_features": true, - "filter_non_existing_glyphs": true, - "dont_create_packet_error_crash_reports": "auto", - "disable_sequencing": "auto", - "always_tick_client_player": "auto", - "execute_inputs_synchronously": "auto", - "legacy_tab_completions": "auto", - "legacy_pane_outlines": "auto", - "emulate_armor_hud": "auto", - "hide_modern_command_block_screen_features": "auto", - "legacy_crop_outlines": "auto", - "serverside_place_sounds": "auto", - "disable_server_pinging": "auto" - }, - "visual": { - "change_game_menu_screen_layout": "adjusted", - "remove_bubble_pop_sound": false, - "hide_empty_bubble_icons": false, - "hide_villager_profession": false, - "hide_download_terrain_screen_transition_effects": "disabled", - "lock_blocking_arm_rotation": "auto", - "change_body_rotation_interpolation": "auto", - "potion_enchantment_glint": "auto", - "disable_secure_chat_warning": "auto", - "hide_signature_indicator": "auto", - "replace_petrified_oak_slab": "auto", - "hide_furnace_recipe_book": "auto", - "force_unicode_font_for_non_ascii_languages": "disabled", - "sneak_instantly": "auto", - "sideways_backwards_walking": "auto", - "hide_crafting_recipe_book": "auto", - "always_render_crosshair": "auto", - "swing_hand_on_item_use": "auto", - "tilt_item_positions": "auto", - "enable_legacy_tablist": "auto", - "replace_hurt_sound_with_oof_sound": "auto", - "hide_modern_hud_elements": "auto", - "replace_creative_inventory_with_classic_inventory": "auto", - "old_walking_animation": "auto" - }, - "selected-protocol-version": "Auto Detect (1.7+ servers)" -} \ No newline at end of file diff --git a/overrides/config/viafabricplus/viaaprilfools.yml b/overrides/config/viafabricplus/viaaprilfools.yml deleted file mode 100644 index 1c8ff6f..0000000 --- a/overrides/config/viafabricplus/viaaprilfools.yml +++ /dev/null @@ -1,2 +0,0 @@ -# No config yet -there-is-no-config-yet: true diff --git a/overrides/config/viafabricplus/viabackwards.yml b/overrides/config/viafabricplus/viabackwards.yml deleted file mode 100644 index 7e57843..0000000 --- a/overrides/config/viafabricplus/viabackwards.yml +++ /dev/null @@ -1,76 +0,0 @@ -# If you need help, you can join our Discord - https://viaversion.com/discord -# -# Always shows a mapped mob's original name, and not only when hovering over it with the cursor. -always-show-original-mob-name: true -# -# Writes name and level of custom enchantments into the item's lore. -# Set this to false if you see the entries doubled/if the custom-enchant plugin already writes these into the lore manually. -add-custom-enchants-into-lore: true -# -# Adds the color of a scoreboard team after its prefix for 1.12 clients on 1.13+ servers. -add-teamcolor-to-prefix: true -# -# Converts the 1.13 face look-at packet for 1.12- players. Requires a bit of extra caching. -fix-1_13-face-player: false -# -# Fixes 1.13 clients and lower not seeing color or formatting in inventory titles by converting them to legacy text. -# If you have issues with translatable text being displayed wrongly, disable this. -fix-formatted-inventory-titles: true -# -# Sends inventory acknowledgement packets to act as a replacement for ping packets for sub 1.17 clients. -# This only takes effect for ids in the short range. Useful for anticheat compatibility. -handle-pings-as-inv-acknowledgements: false -# -# Adds bedrock blocks at y=0 for sub 1.17 clients. This may allow for weird interactions due to sending fake blocks. -bedrock-at-y-0: false -# -# Shows sculk shriekers as crying obsidian for 1.18.2 clients on 1.19+ servers. This fixes collision and block breaking issues. -# If disabled, the client will see them as end portal frames. -sculk-shriekers-to-crying-obsidian: true -# -# Shows scaffolding as water for 1.13.2 clients on 1.14+ servers. This fixes collision issues. -# If disabled, the client will see them as hay blocks. -scaffolding-to-water: false -# -# Maps the darkness effect to blindness for 1.18.2 clients on 1.19+ servers. -map-darkness-effect: true -# -# If enabled, 1.21.3 clients will receive the first float of 1.21.4+ custom model data as int. Disable if you handle this change yourself. -map-custom-model-data: true -# -# If enabled, 1.19.3 clients will receive display entities as armor stands with custom entity data on 1.19.4+ servers. Note that -# this does not support all features display entities offer. -map-display-entities: true -# -# Suppresses warnings of missing emulations for certain features that are not supported (e.g. world height in 1.17+). -suppress-emulation-warnings: false -# -# If enabled, dialogs will be shown via chest inventories for 1.21.5 clients on 1.21.6+ servers. -dialogs-via-chests: true -# -# Dialog styling. You can also use translation keys here. -dialog-style: - page-navigation-title: '&9&lPage navigation' - page-navigation-next: '&9Left click: &6Go to next page' - page-navigation-previous: '&9Right click: &6Go to previous page' - toggle-value: '&9Left click: &6Toggle value' - increase-value: '&9Left click: &6Increase value by %s' - decrease-value: '&9Right click: &6Decrease value by %s' - value-range: '&7(Value between &a%s &7and &a%s&7)' - current-value: '&7Current value: &a%s' - edit-value: '&9Left click: &6Edit text' - next-option: '&9Left click: &6Go to next option' - previous-option: '&9Right click: &6Go to previous option' - set-text: '&9Left click/close: &6Set text' - close: '&9Left click: &6Close' -# -# If enabled, the code of conduct will be shown as a dialog for 1.21.7 clients on 1.21.9+ servers. -# Note that this is not supported for clients below 1.21.6 right now due to missing support for -# dialogs during the configuration phase. -code-of-conduct-as-dialog: true -# -# Passes the original vanilla 1.21.4+ item name into custom_model_data strings. -# This allows client resource packs to restore the appearance of newer items entirely missing from this older version. -# Disable if your server creates custom items using modern items as their base. -# Tip: For server custom items, base them on items in the game before 1.21.4 (e.g. saddle) to ensure compatibility. -pass-original-item-name-to-resource-packs: true diff --git a/overrides/config/viafabricplus/viabedrock.yml b/overrides/config/viafabricplus/viabedrock.yml deleted file mode 100644 index dcef3f6..0000000 --- a/overrides/config/viafabricplus/viabedrock.yml +++ /dev/null @@ -1,18 +0,0 @@ -# If true, enables experimental features. These features are almost certainly not fully stable/tested and may cause unexpected issues -enable-experimental-features: false -# Controls blob caching (Reduces network usage and loading time), Valid options: "disabled", "memory", "disk" -blob-cache: disk -# If enabled, starts the resource pack HTTP server and enables resource pack translation -translate-resource-packs: true -# Resource pack HTTP server address -resource-pack-host: 127.0.0.1 -# Resource pack HTTP server port (0 = random available port) -resource-pack-port: 0 -# Resource pack URL which the clients will use to download the resource pack (empty = auto) -resource-pack-url: '' -# Controls resource pack caching (Reduces network usage and loading time), Valid options: "disabled", "memory", "disk" -pack-cache: disk -# If true, translates bedrock's showCoordinates game rule to java's reduced debug info flag -translate-show-coordinates-game-rule: false -# If true, disables the internal server blacklist. This will allow you to connect to any server, even if it's known to ban ViaBedrock clients -disable-server-blacklist: false diff --git a/overrides/config/viafabricplus/viabedrock/blob_cache/data.bdbd b/overrides/config/viafabricplus/viabedrock/blob_cache/data.bdbd deleted file mode 100644 index 40b450d..0000000 Binary files a/overrides/config/viafabricplus/viabedrock/blob_cache/data.bdbd and /dev/null differ diff --git a/overrides/config/viafabricplus/viabedrock/blob_cache/index.bdbi b/overrides/config/viafabricplus/viabedrock/blob_cache/index.bdbi deleted file mode 100644 index ff91223..0000000 Binary files a/overrides/config/viafabricplus/viabedrock/blob_cache/index.bdbi and /dev/null differ diff --git a/overrides/config/viafabricplus/vialegacy.yml b/overrides/config/viafabricplus/vialegacy.yml deleted file mode 100644 index d906364..0000000 --- a/overrides/config/viafabricplus/vialegacy.yml +++ /dev/null @@ -1,33 +0,0 @@ -# -# Calculate 1.7.10 OnGround field dynamically. Requires a bit of extra caching -dynamic-onground: true -# -# Ignores serverbound plugin channel messages of 1.8+ clients with channel names longer than 16 characters -# CraftBukkit had this limit hardcoded until 1.8 -ignore-long-1_8-channel-names: true -# -# Load <= 1.7.2 player skull skins -legacy-skull-loading: false -# -# Load <= 1.6.4 skins. (Adds max 500ms delay to player spawn packets) -legacy-skin-loading: false -# -# Emulate sounds for <= 1.2.5 -sound-emulation: true -# -# Calculate <= 1.1 biomes. Requires a lot of extra calculations -old-biomes: true -# -# Enables sprinting for versions below beta 1.8. !THIS CAN CAUSE ISSUES WITH ANTI-CHEAT PLUGINS! -enable-b1_7_3-sprinting: false -# -# The MOTD to use for <= beta 1.7.3 servers. Supports newlines. Doesn't support color codes. -b1_7_3-motd: | - The server seems to be running! - Wait 5 seconds between each connection -# -# Classic chunk loading range -classic-chunk-range: 10 -# -# Enable fly on regular (non CPE) classic servers -enable-classic-fly: false diff --git a/overrides/config/viafabricplus/viaversion.yml b/overrides/config/viafabricplus/viaversion.yml deleted file mode 100644 index 978e17a..0000000 --- a/overrides/config/viafabricplus/viaversion.yml +++ /dev/null @@ -1,192 +0,0 @@ -# Thanks for downloading ViaVersion -# Ensure you look through all these options -# If you need help: -# Discord - https://viaversion.com/discord -# Docs - https://docs.viaversion.com -# -#----------------------------------------------------------# -# GLOBAL OPTIONS # -#----------------------------------------------------------# -# -# Should ViaVersion check for updates? -# Send the supported versions with the Status (Ping) response packet -send-supported-versions: false -# Easier to configure alternative to 'block-protocols'. Uses readable version strings with possible '<' and '>' prefixes. -# An example to block 1.16.4, everything below 1.16, as well as everything above 1.17.1 would be: ["<1.16", "1.16.4", ">1.17.1"] -# You can use both this and the block-protocols option at the same time as well. -block-versions: [] -# Block specific Minecraft protocol version numbers. -# List of all Minecraft protocol versions: https://minecraft.wiki/w/Protocol_version, or use a generator: https://via.krusic22.com -block-protocols: [] -# Change the blocked disconnect message -block-disconnect-msg: You are using an unsupported Minecraft version! -# If you use ProtocolLib, we can't reload without kicking the players. -# (We don't suggest using reload either, use a plugin manager) -# You can customize the message we kick people with if you use ProtocolLib here. -reload-disconnect-msg: Server reload, please rejoin! -# Settings for logging behavior. When debugging issues, we may ask you to change some of these. -# Most of these are disabled by default to prevent log spam from bad user input. -logging: - # Whether to log more info about kicks due to blocked protocol versions to the console. - log-blocked-joins: false - # Whether to log errors during entity data conversion. - log-entity-data-errors: true - # Whether to log errors during text component conversion. - log-text-component-conversion-errors: false - # Whether to warn for other issues when converting items, blocks, or other data between server and client. - log-other-conversion-warnings: false - # Maximum length of error messages in the console. - max-error-length: 1500 -# -# Used for auto updating config files. Do not touch. -config-version: 1 -init-config-version: 1 -# Whether to update config values that were left on their default to newly changed defaults. Recommended to keep enabled. -migrate-default-config-changes: true -# If enabled, ViaVersion will send the native player version to the server on connect via a plugin message. -# See the wiki for more info: https://github.com/ViaVersion/ViaVersion/wiki/Server-and-Player-Details-Protocol -send-player-details: false -# If enabled, ViaVersion will send the native server version to a player on connect via a plugin message. -# See the wiki above for more info. -send-server-details: true -# -#----------------------------------------------------------# -# GLOBAL PACKET LIMITER # -#----------------------------------------------------------# -# Packets Per Second (PPS) and kilobyte packet size limiters. -# Setting 'max-per-second' or 'sustained-max-per-second' to -1 will disable the individual limit. -# Kick messages may include the %pps or %bps placeholders respectively, though they are more intended for debugging purposes. -# -# Limits the amount of packets sent per second. -# Clients by default send around 20-90 packets per second. -packet-limiter: - enabled: true - # The maximum packets a client can send per second. - max-per-second: 800 - max-per-second-kick-message: You are sending too many packets! - # - # We can also kick them if they repeatedly send too many packets over a longer period of time. - # E.g. if a player sends over 200 packets per second for 4 out of 7 seconds, we kick them. - # The maximum packets per second a client can send over a longer period of time. - sustained-max-per-second: 200 - # Period to track in seconds. - sustained-period-seconds: 7 - # The number of seconds within the interval that the client can exceed the limit before being kicked. - sustained-threshold: 4 - sustained-kick-message: You are sending too many packets, :( -# Limits the size of packets in kilobytes sent per second. -packet-size-limiter: - enabled: false - max-per-second: -1 - max-per-second-kick-message: You are sending too large packets! - sustained-max-per-second: -1 - sustained-period-seconds: 5 - sustained-threshold: 3 - sustained-kick-message: You are sending too large packets, :( -# -#----------------------------------------------------------# -# MULTIPLE VERSIONS OPTIONS # -#----------------------------------------------------------# -# -# Should we enable our hologram patch? -# If they're in the wrong place, enable this -hologram-patch: false -# This is the offset, should work as default when enabled. -hologram-y: -0.96 -# Should we disable piston animation for 1.11/1.11.1 clients? -# In some cases, when firing lots of pistons, it crashes them. -piston-animation-patch: false -# 1.13 introduced new auto complete which can trigger "Kicked for spamming" for servers older than 1.13, the following option will disable it completely. -disable-1_13-auto-complete: false -# The following option will delay the tab complete request in x ticks if greater than 0, if other tab-complete is received, the previous is cancelled -1_13-tab-complete-delay: 0 -# For 1.13 clients the smallest (1 layer) snow doesn't have collisions, this will send these as 2 snowlayers for 1.13+ clients to prevent them bugging through them -fix-low-snow-collision: false -# Infested blocks are instantly breakable for 1.13+ clients, resulting in them being unable to break them on sub 1.13 servers. This remaps them to their normal stone variants -fix-infested-block-breaking: false -# In 1.14 the client page limit has been upped to 100 (from 50). Some anti-exploit plugins ban when clients go higher than 50. This option cuts edited books to 50 pages. -truncate-1_14-books: false -# Fixes 1.14+ clients on sub 1.14 servers having a light value of 0 for non-full blocks. -fix-non-full-blocklight: true -# Fixes walk animation not shown when health is set to Float.NaN -fix-1_14-health-nan: true -# Should 1.15+ clients respawn instantly / without showing a death screen? -use-1_15-instant-respawn: false -# -# Enable serverside block-connections for 1.13+ clients - all the options in this section are built around this option -serverside-blockconnections: true -# When activated, only the most important blocks are stored in the blockstorage. (fences, glass panes etc. won't connect to solid blocks) -reduce-blockstorage-memory: false -# When activated with serverside-blockconnections, flower parts with blocks above will be sent as stems -# Useful for lobbyservers where users can't build and those stems are used decoratively -flowerstem-when-block-above: false -# Vines that are not connected to blocks will be mapped to air, else 1.13+ would still be able to climb up on them. -vine-climb-fix: false -# -# Ignores incoming plugin channel messages of 1.16+ clients with channel names longer than 32 characters. -# CraftBukkit had this limit hardcoded until 1.16, so we have to assume any server/proxy might have this arbitrary check present. -ignore-long-1_16-channel-names: true -# -# Force 1.17+ client to accept the server resource pack; they will automatically disconnect if they decline. -forced-use-1_17-resource-pack: false -# The message to be displayed at the prompt when the 1.17+ client receives the server resource pack. -resource-pack-1_17-prompt: '' -# -# Caches light until chunks are unloaded to allow later chunk update packets as opposed to instantly uncaching when the first chunk data is sent. -# Only disable this if you know what you are doing. -cache-1_17-light: true -# -# Get the world names which should be returned for each vanilla dimension -map-1_16-world-names: - overworld: minecraft:overworld - nether: minecraft:the_nether - end: minecraft:the_end -# -# If disabled, tamed cats will be displayed as ocelots to 1.14+ clients on 1.13 servers. Otherwise, ocelots (tamed and untamed) will be displayed as cats. -translate-ocelot-to-cat: false -# -# Determines the value sent to 1.19+ clients on join if currently not accessible by ViaVersion. -# It is not recommended to fake this value if your server is running 1.19 or later, as 1.20.5 have stricter chat handling and may get kicked otherwise. -enforce-secure-chat: false -# -# Handles items with invalid count values (higher than max stack size) on 1.20.3 servers. -handle-invalid-item-count: true -# -# Hides scoreboard numbers for 1.20.3+ clients on older server versions. -hide-scoreboard-numbers: false -# -#----------------------------------------------------------# -# 1.9+ CLIENTS ON 1.8 SERVERS OPTIONS # -#----------------------------------------------------------# -# -# No collide options, these allow you to configure how collision works. -# Do you want us to prevent collision? -prevent-collision: true -# If the above is true, should we automatically team players until you do? -auto-team: true -# When enabled, 1.9+ will be able to block by using shields -shield-blocking: false -# If this setting is active, the main hand is used instead of the off-hand to trigger the blocking of the player. -# With the main hand, the blocking starts way faster. -# (Requires "show-shield-when-sword-in-hand" to be disabled) -no-delay-shield-blocking: true -# If this setting is active, the shield will appear immediately for 1.9+ when you hold a sword in your main hand. -# The shield disappears when you switch to another item. -# (Requires "shield-blocking" to be enabled) -show-shield-when-sword-in-hand: false -# Should we patch boss bars so they work? (Default: true, disable if you're having issues) -bossbar-patch: true -# If your boss bar flickers on 1.9+, set this to 'true'. It will keep all boss bars on 100% (not recommended) -bossbar-anti-flicker: false -# This will show the new effect indicator in the top-right corner for 1.9+ players. -use-new-effect-indicator: true -# Should we replace extended pistons to fix 1.10.1 (Only on chunk loading)? -replace-pistons: false -# What id should we replace with, default is air. (careful of players getting stuck standing on them) -replacement-piston-id: 0 -# Fix 1.9+ clients not rendering the far away chunks and improve chunk rendering when moving fast (Increases network usage and decreases client fps slightly) -chunk-border-fix: true -# Allows 1.9+ left-handedness (main hand) on 1.8 servers -left-handed-handling: true -# Tries to cancel block break/place sounds sent by 1.8 servers to 1.9+ clients to prevent them from playing twice -cancel-block-sounds: true diff --git a/overrides/config/worldeditcui.config.json b/overrides/config/worldeditcui.config.json deleted file mode 100644 index 2db19e6..0000000 --- a/overrides/config/worldeditcui.config.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "debugMode": false, - "promiscuous": false, - "clearAllOnKey": false, - "cuboidGridColor": "#CC4C4CCC", - "cuboidEdgeColor": "#CC3333CC", - "cuboidFirstPointColor": "#33CC33CC", - "cuboidSecondPointColor": "#3333CCCC", - "polyGridColor": "#CC3333CC", - "polyEdgeColor": "#CC4C4CCC", - "polyPointColor": "#33CCCCCC", - "ellipsoidGridColor": "#CC4C4CCC", - "ellipsoidPointColor": "#CCCC33CC", - "cylinderGridColor": "#CC3333CC", - "cylinderEdgeColor": "#CC4C4CCC", - "cylinderPointColor": "#CC33CCCC", - "chunkBoundaryColour": "#33CC33CC", - "chunkGridColour": "#4CCCAA99" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.core.config b/overrides/journeymap/config/6.0/journeymap.core.config deleted file mode 100644 index 304d3be..0000000 --- a/overrides/journeymap/config/6.0/journeymap.core.config +++ /dev/null @@ -1,93 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "logLevel": "INFO", - "autoMapPoll": "2000", - "cacheAnimalsData": "3100", - "cacheMobsData": "3000", - "cachePlayerData": "1000", - "cachePlayersData": "2000", - "cacheVillagersData": "2200", - "announceMod": "true", - "checkUpdates": "true", - "recordCacheStats": "false", - "themeName": "Purist", - "caveIgnoreGlass": "true", - "mapOnlyPlayerChunk": "false", - "mapBathymetry": "false", - "mapWaterBiomeColors": "true", - "mapTopography": "true", - "mapBiome": "true", - "mapTransparency": "true", - "mapCaveLighting": "true", - "netherSurfaceLighting": "true", - "mapAntialiasing": "true", - "mapPlantShadows": "false", - "mapShadows": "true", - "mapPlants": "false", - "mapCrops": "true", - "mapBlendGrass": "true", - "mapBlendFoliage": "true", - "mapBlendWater": "true", - "mapSurfaceAboveCaves": "true", - "caveBlackAsClear": "false", - "renderDistanceCaveMax": "0", - "renderDistanceSurfaceMax": "0", - "renderDelay": "500", - "topoMax": "0", - "revealShape": "Circle", - "caveModeThreshold": "2", - "alwaysMapCaves": "false", - "alwaysMapSurface": "false", - "ignoreHeightmaps": "false", - "ignoreSnow": "false", - "lodsEnabled": "true", - "legacyIcons": "false", - "allowMiniMapBehindScreens": "true", - "maxAnimalsData": "32", - "maxAmbientCreaturesData": "32", - "maxMobsData": "32", - "maxPlayersData": "32", - "maxVillagersData": "32", - "hideSneakingEntities": "true", - "hideSpectators": "false", - "radarLateralDistance": "64", - "radarVerticalDistance": "16", - "dataCachingEnabled": "true", - "glErrorChecking": "false", - "seedId": "false", - "serverIp": "false", - "playerIconFade": "true", - "mobIconFade": "true", - "minimapPresetOverlay": "true", - "mappingEnabled": "true", - "optionsManagerViewed": "6.0.0-beta.68", - "splashViewed": "6.0.0-beta.68", - "gridSpecs": { - "day": "Squares,#808080,0.5,-1,-1", - "night": "Squares,#8080ff,0.3,-1,-1", - "underground": "Squares,#808080,0.3,-1,-1" - }, - "colorPassive": "#bbbbbb", - "colorPassiveLabel": "#bbbbbb", - "colorHostile": "#ff0000", - "colorHostileLabel": "#ff0000", - "colorPet": "#0077ff", - "colorPetLabel": "#0077ff", - "colorVillager": "#88e188", - "colorVillagerLabel": "#88e188", - "colorPlayer": "#ffffff", - "colorPlayerLabel": "#ffffff", - "colorSelf": "#0000ff", - "initialSortOrder": "Name", - "sortDescending": "true", - "dayShader": "jm.common.map_filter.default", - "nightShader": "jm.common.map_filter.default", - "biomeShader": "jm.common.map_filter.default", - "topoShader": "jm.common.map_filter.default", - "caveShader": "jm.common.map_filter.default", - "netherShader": "jm.common.map_filter.default", - "colorPickerHistory": [], - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.fullmap.config b/overrides/journeymap/config/6.0/journeymap.fullmap.config deleted file mode 100644 index e21abbf..0000000 --- a/overrides/journeymap/config/6.0/journeymap.fullmap.config +++ /dev/null @@ -1,48 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "showKeys": "true", - "showThemeButton": "true", - "showPlayerLoc": "true", - "showMouseLoc": "true", - "minimalMode": "false", - "propertiesId": 0, - "playerDisplay": "OutlinedIcons", - "selfDisplayScale": "1.0", - "playerDisplayScale": "1.0", - "showPlayerHeading": "true", - "mobDisplay": "DotsAndOutlinedIcons", - "mobDisplayScale": "1.0", - "showMobHeading": "true", - "showMobs": "true", - "showAnimals": "true", - "showAmbientCreatures": "false", - "showVillagers": "true", - "showPets": "true", - "showPlayers": "true", - "fontScale": "1.0", - "showWaypointLabels": "true", - "waypointLabelScale": "1.0", - "waypointIconScale": "1.0", - "locationFormatVerbose": "true", - "locationFormat": "xzyv", - "showOffScreenPlayers": "true", - "showWaypoints": "true", - "showSelf": "true", - "showGrid": "true", - "showCaves": "true", - "showPlayerNames": "true", - "showTeamNames": "true", - "showEntityNames": "false", - "showHostileNames": "false", - "showPassiveNames": "false", - "showAmbientNames": "false", - "showPetNames": "false", - "showNpcNames": "false", - "showVillagerNames": "false", - "showNoIconNames": "true", - "preferredMapType": "day", - "zoomLevel": "512", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.minimap.config b/overrides/journeymap/config/6.0/journeymap.minimap.config deleted file mode 100644 index 5eb2319..0000000 --- a/overrides/journeymap/config/6.0/journeymap.minimap.config +++ /dev/null @@ -1,81 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "enabled": "false", - "showDayNight": "true", - "minimapLockedMapType": "jm.common.map_type.auto", - "caveLayer": "4", - "info1Label": "jm.theme.labelsource.blank", - "info1LabelPosition": "Top", - "info2Label": "jm.theme.labelsource.gametime", - "info2LabelPosition": "Top", - "info3Label": "jm.theme.labelsource.location", - "info3LabelPosition": "Bottom", - "info4Label": "jm.theme.labelsource.biome", - "info4LabelPosition": "Bottom", - "infoSlotAlpha": "0.7", - "infoSlotFontScale": "1.0", - "infoSlotTimeFormat": "HH:mm:ss", - "systemTimeRealFormat": "HH:mm:ss", - "reticleOrientation": "Compass", - "shape": "Circle", - "sizePercent": "30", - "frameAlpha": "100", - "terrainAlpha": "100", - "backgroundAlpha": "0.8", - "orientation": "North", - "compassFontScale": "1.0", - "showCompass": "true", - "showReticle": "true", - "positionX": "0.9", - "positionY": "0.25", - "moveEffectIcons": "true", - "hideEffectIcons": "false", - "effectTranslateX": "0", - "effectTranslateY": "0", - "effectVertical": "false", - "effectReversed": "false", - "minimapKeyMovementSpeed": "0.001", - "hudRenderLayer": "Last", - "position": "TopRight", - "active": true, - "propertiesId": 1, - "playerDisplay": "OutlinedIcons", - "selfDisplayScale": "1.0", - "playerDisplayScale": "1.0", - "showPlayerHeading": "true", - "mobDisplay": "DotsAndOutlinedIcons", - "mobDisplayScale": "1.0", - "showMobHeading": "true", - "showMobs": "true", - "showAnimals": "true", - "showAmbientCreatures": "false", - "showVillagers": "true", - "showPets": "true", - "showPlayers": "true", - "fontScale": "1.0", - "showWaypointLabels": "true", - "waypointLabelScale": "1.0", - "waypointIconScale": "1.0", - "locationFormatVerbose": "true", - "locationFormat": "xzyv", - "showOffScreenPlayers": "true", - "showWaypoints": "true", - "showSelf": "true", - "showGrid": "true", - "showCaves": "true", - "showPlayerNames": "true", - "showTeamNames": "true", - "showEntityNames": "false", - "showHostileNames": "false", - "showPassiveNames": "false", - "showAmbientNames": "false", - "showPetNames": "false", - "showNpcNames": "false", - "showVillagerNames": "false", - "showNoIconNames": "true", - "preferredMapType": "day", - "zoomLevel": "16384", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.minimap2.config b/overrides/journeymap/config/6.0/journeymap.minimap2.config deleted file mode 100644 index fe770d0..0000000 --- a/overrides/journeymap/config/6.0/journeymap.minimap2.config +++ /dev/null @@ -1,81 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "enabled": "true", - "showDayNight": "true", - "minimapLockedMapType": "jm.common.map_type.auto", - "caveLayer": "4", - "info1Label": "jm.theme.labelsource.blank", - "info1LabelPosition": "Top", - "info2Label": "jm.theme.labelsource.gametime", - "info2LabelPosition": "Top", - "info3Label": "jm.theme.labelsource.location", - "info3LabelPosition": "Bottom", - "info4Label": "jm.theme.labelsource.biome", - "info4LabelPosition": "Bottom", - "infoSlotAlpha": "0.7", - "infoSlotFontScale": "1.0", - "infoSlotTimeFormat": "HH:mm:ss", - "systemTimeRealFormat": "HH:mm:ss", - "reticleOrientation": "Compass", - "shape": "Rectangle_Horizontal", - "sizePercent": "30", - "frameAlpha": "100", - "terrainAlpha": "100", - "backgroundAlpha": "0.8", - "orientation": "North", - "compassFontScale": "1.0", - "showCompass": "true", - "showReticle": "true", - "positionX": "0.9", - "positionY": "0.25", - "moveEffectIcons": "true", - "hideEffectIcons": "false", - "effectTranslateX": "0", - "effectTranslateY": "0", - "effectVertical": "false", - "effectReversed": "false", - "minimapKeyMovementSpeed": "0.001", - "hudRenderLayer": "Last", - "position": "TopRight", - "active": false, - "propertiesId": 2, - "playerDisplay": "OutlinedIcons", - "selfDisplayScale": "1.0", - "playerDisplayScale": "1.0", - "showPlayerHeading": "true", - "mobDisplay": "DotsAndOutlinedIcons", - "mobDisplayScale": "1.0", - "showMobHeading": "true", - "showMobs": "true", - "showAnimals": "true", - "showAmbientCreatures": "false", - "showVillagers": "true", - "showPets": "true", - "showPlayers": "true", - "fontScale": "1.0", - "showWaypointLabels": "true", - "waypointLabelScale": "1.0", - "waypointIconScale": "1.0", - "locationFormatVerbose": "true", - "locationFormat": "xzyv", - "showOffScreenPlayers": "true", - "showWaypoints": "true", - "showSelf": "true", - "showGrid": "true", - "showCaves": "true", - "showPlayerNames": "true", - "showTeamNames": "true", - "showEntityNames": "false", - "showHostileNames": "false", - "showPassiveNames": "false", - "showAmbientNames": "false", - "showPetNames": "false", - "showNpcNames": "false", - "showVillagerNames": "false", - "showNoIconNames": "true", - "preferredMapType": "day", - "zoomLevel": "512", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.rendering.config b/overrides/journeymap/config/6.0/journeymap.rendering.config deleted file mode 100644 index 8325dd6..0000000 --- a/overrides/journeymap/config/6.0/journeymap.rendering.config +++ /dev/null @@ -1,20 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "shadingSlopeMin": "0.2", - "shadingSlopeMax": "1.7", - "shadingPrimaryDownslopeMultiplier": "0.65", - "shadingPrimaryUpslopeMultiplier": "1.2", - "shadingSecondaryDownslopeMultiplier": "0.95", - "shadingSecondaryUpslopeMultiplier": "1.05", - "tweakMoonlightLevel": "3.5", - "tweakBrightenDaylightDiff": "0.06", - "tweakBrightenLightsourceBlock": "1.2", - "tweakMinimumDarkenNightWater": "0.25", - "tweakWaterColorBlend": "0.5", - "tweakSurfaceAmbientColor": "#00001a", - "tweakNetherAmbientColor": "#330808", - "tweakEndAmbientColor": "#00001a", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.topo.config b/overrides/journeymap/config/6.0/journeymap.topo.config deleted file mode 100644 index 6651361..0000000 --- a/overrides/journeymap/config/6.0/journeymap.topo.config +++ /dev/null @@ -1,10 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_5 -{ - "showContour": "true", - "landContour": "#3F250B", - "waterContour": "#0000dd", - "land": "#010c02,#041105,#071609,#0a1b0c,#0d200f,#102513,#132a16,#162f19,#19341c,#1b3a20,#1e3f23,#214426,#24492a,#274e2d,#2a5330,#2d5834,#375f41,#41674d,#4b6e5a,#557567,#5f7c73,#698480,#738b8d,#7c929a,#8699a6,#90a1b3,#9aa8c0,#a4afcc,#aeb6d9,#b8bee6,#c2c5f2,#ccccff,#cccfff,#ccd2ff,#ccd6ff,#ccd9ff,#ccdcff,#ccdfff,#cce2ff,#cce5ff,#cce9ff,#ccecff,#ccefff,#ccf2ff,#ccf5ff,#ccf9ff,#ccfcff,#ccffff,#cfffff,#d2ffff,#d6ffff,#d9ffff,#dcffff,#dfffff,#e2ffff,#e5ffff,#e9ffff,#ecffff,#efffff,#f2ffff,#f5ffff,#f9ffff,#fcffff,#ffffff", - "water": "#000040,#02024e,#03035d,#05056b,#070779,#080887,#0a0a96,#0b0ba4,#1a1aaa,#2a2aaf,#3939b5,#4848bb,#5757c0,#6767c6,#7676cc,#8585d2,#9494d7,#a4a4dd,#b3b3e3,#c2c2e8,#d1d1ee,#d7d7f0,#ddddf2,#e2e2f4,#e8e8f6,#eeeef9,#f4f4fb,#f9f9ff,#f9f9ff,#f9f9ff,#f9f9ff,#f9f9ff", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.waypoint.config b/overrides/journeymap/config/6.0/journeymap.waypoint.config deleted file mode 100644 index 63c34ad..0000000 --- a/overrides/journeymap/config/6.0/journeymap.waypoint.config +++ /dev/null @@ -1,47 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "managerEnabled": "true", - "showDeleteConfirmation": "true", - "disableShare": "false", - "disableStrikeThrough": "false", - "coordinatesFormat": "XZY", - "useActionsButton": "false", - "managerDimensionFocus": "false", - "displayOnLocatorBar": "false", - "createDeathpoints": "true", - "showPlayers": "false", - "wholeNumberTeleportCoords": "false", - "autoRemoveDeathpoints": "false", - "autoRemoveDeathpointDistance": "2", - "autoRemoveTempWaypoints": "2", - "showDeathpointlabel": "true", - "fullscreenDoubleClickToCreate": "true", - "teleportCommand": "/execute in {dim} run tp {name} {x} {y} {z}", - "dateFormat": "MM-dd-yyyy", - "timeFormat": "HH:mm:ss", - "renderWaypoints": "true", - "renderWaypointsWorld": "true", - "renderWaypointsMap": "true", - "beaconEnabled": "true", - "autoHideIcon": "false", - "ignoreRenderDistance": "false", - "autoHideIconAngle": "5", - "showStaticBeam": "true", - "showRotatingBeam": "true", - "showName": "true", - "showDistance": "true", - "autoHideLabel": "true", - "autoHideLabelAngle": "5", - "autoHideLabelVertical": "true", - "autoHideLabelVerticalAngle": "10", - "boldLabel": "false", - "showLabelBackground": "true", - "fontScale": "2.0", - "textureSmall": "true", - "shaderBeacon": "false", - "maxDistance": "0", - "minDistance": "4", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/journeymap/config/6.0/journeymap.webmap.config b/overrides/journeymap/config/6.0/journeymap.webmap.config deleted file mode 100644 index 3ee9d88..0000000 --- a/overrides/journeymap/config/6.0/journeymap.webmap.config +++ /dev/null @@ -1,8 +0,0 @@ -// jm.config.file_header_1 -// jm.config.file_header_2 -// jm.config.file_header_5 -{ - "enabled": "false", - "port": "8080", - "configVersion": "6.0.0-beta.68" -} \ No newline at end of file diff --git a/overrides/openminemap/config.txt b/overrides/openminemap/config.txt deleted file mode 100644 index 9acef1d..0000000 --- a/overrides/openminemap/config.txt +++ /dev/null @@ -1,37 +0,0 @@ -HudMapX : 10 -HudMapY : 10 -HudMapWidth : 144 -HudMapHeight : 81 -HudCompassX : 10 -HudCompassY : 96 -HudCompassWidth : 144 -TileMapUrl : OpenStreetMap -ArtificialZoom : off -SnapAngle : -RightClickMenuUses : /tpll -ReverseScroll : off -ShowPlayers2 : all -ShowDirectionIndicators2 : all -AltitudeShading : on -ZoomStrength : 0.40 -HoverNames : show -InterfaceOpacity : 0.50 -PlayerSize : normal -WaypointSize : normal -ConnectionStatus : hide -TileScale : 128 -ClaimsRendering : off -HudmapBorder : show -ShowCompass : show -TextColor : #FFFFFF -§claimstoggle : true -§hudtoggle : true -§hudenabled : true -§hudlastzoom : 18.0 -§fslastzoom : 14.78 -§fslastx : 1856217.7174251433 -§fslasty : 1192732.1727700618 -§fslasttilesize : 110 -ShowDeveloperOptions : false -DisableWebRequests : false -ShowMemoryCacheSize : false diff --git a/overrides/options.txt b/overrides/options.txt deleted file mode 100644 index 52f32fb..0000000 --- a/overrides/options.txt +++ /dev/null @@ -1,260 +0,0 @@ -version:4671 -ao:true -biomeBlendRadius:2 -chunkSectionFadeInTime:0.0 -cutoutLeaves:true -enableVsync:true -entityDistanceScaling:1.0 -entityShadows:true -forceUnicodeFont:false -japaneseGlyphVariants:false -fov:0.0 -fovEffectScale:1.0 -darknessEffectScale:1.0 -glintSpeed:0.5 -glintStrength:0.75 -graphicsPreset:"custom" -prioritizeChunkUpdates:1 -fullscreen:false -gamma:1.0 -guiScale:2 -maxAnisotropyBit:1 -textureFiltering:1 -maxFps:120 -improvedTransparency:false -inactivityFpsLimit:"afk" -mipmapLevels:4 -narrator:0 -particles:0 -reducedDebugInfo:false -renderClouds:"false" -cloudRange:64 -renderDistance:10 -simulationDistance:12 -screenEffectScale:1.0 -soundDevice:"" -vignette:true -weatherRadius:10 -autoJump:false -rotateWithMinecart:false -operatorItemsTab:false -autoSuggestions:true -chatColors:true -chatLinks:true -chatLinksPrompt:true -discrete_mouse_scroll:false -invertXMouse:false -invertYMouse:false -realmsNotifications:true -showSubtitles:false -directionalAudio:false -touchscreen:false -bobView:true -toggleCrouch:false -toggleSprint:false -toggleAttack:false -toggleUse:false -sprintWindow:7 -darkMojangStudiosBackground:false -hideLightningFlashes:false -hideSplashTexts:false -mouseSensitivity:0.5 -damageTiltStrength:1.0 -highContrast:false -highContrastBlockOutline:false -narratorHotkey:true -resourcePacks:["vanilla","file/LowOnFire v26.1§8.zip","file/Unique Dark - Lite - 1.20.2-26.x.zip"] -incompatibleResourcePacks:[] -lastServer: -lang:en_us -chatVisibility:0 -chatOpacity:1.0 -chatLineSpacing:0.0 -textBackgroundOpacity:0.5 -backgroundForChatOnly:true -hideServerAddress:false -advancedItemTooltips:false -pauseOnLostFocus:true -overrideWidth:0 -overrideHeight:0 -chatHeightFocused:1.0 -chatDelay:0.0 -chatHeightUnfocused:0.4375 -chatScale:1.0 -chatWidth:1.0 -notificationDisplayTime:1.0 -useNativeTransport:true -mainHand:"right" -attackIndicator:1 -tutorialStep:none -mouseWheelSensitivity:1.0 -rawMouseInput:true -allowCursorChanges:true -glDebugVerbosity:1 -skipMultiplayerWarning:true -hideMatchedNames:true -joinedFirstServer:true -syncChunkWrites:true -showAutosaveIndicator:true -allowServerListing:true -onlyShowSecureChat:false -saveChatDrafts:false -panoramaScrollSpeed:1.0 -telemetryOptInExtra:false -onboardAccessibility:false -menuBackgroundBlurriness:5 -startedCleanly:true -musicToast:"never" -musicFrequency:"DEFAULT" -key_key.attack:key.mouse.left -key_key.use:key.mouse.right -key_key.forward:key.keyboard.w -key_key.left:key.keyboard.a -key_key.back:key.keyboard.s -key_key.right:key.keyboard.d -key_key.jump:key.keyboard.space -key_key.sneak:key.keyboard.left.shift -key_key.sprint:key.keyboard.left.control -key_key.drop:key.keyboard.q -key_key.inventory:key.keyboard.e -key_key.chat:key.keyboard.t -key_key.playerlist:key.keyboard.tab -key_key.pickItem:key.mouse.middle -key_key.command:key.keyboard.slash -key_key.socialInteractions:key.keyboard.p -key_key.toggleGui:key.keyboard.f1 -key_key.toggleSpectatorShaderEffects:key.keyboard.f4 -key_key.screenshot:key.keyboard.f2 -key_key.togglePerspective:key.keyboard.f5 -key_key.smoothCamera:key.keyboard.unknown -key_key.fullscreen:key.keyboard.f11 -key_key.spectatorOutlines:key.keyboard.unknown -key_key.spectatorHotbar:key.mouse.middle -key_key.swapOffhand:key.keyboard.f -key_key.saveToolbarActivator:key.keyboard.c -key_key.loadToolbarActivator:key.keyboard.x -key_key.advancements:key.keyboard.l -key_key.quickActions:key.keyboard.g -key_key.debug.overlay:key.keyboard.f3 -key_key.debug.modifier:key.keyboard.f3 -key_key.hotbar.1:key.keyboard.1 -key_key.hotbar.2:key.keyboard.2 -key_key.hotbar.3:key.keyboard.3 -key_key.hotbar.4:key.keyboard.4 -key_key.hotbar.5:key.keyboard.5 -key_key.hotbar.6:key.keyboard.6 -key_key.hotbar.7:key.keyboard.7 -key_key.hotbar.8:key.keyboard.8 -key_key.hotbar.9:key.keyboard.9 -key_key.debug.reloadChunk:key.keyboard.a -key_key.debug.showHitboxes:key.keyboard.b -key_key.debug.clearChat:key.keyboard.d -key_key.debug.crash:key.keyboard.c -key_key.debug.showChunkBorders:key.keyboard.g -key_key.debug.showAdvancedTooltips:key.keyboard.h -key_key.debug.copyRecreateCommand:key.keyboard.i -key_key.debug.spectate:key.keyboard.n -key_key.debug.switchGameMode:key.keyboard.f4 -key_key.debug.debugOptions:key.keyboard.f6 -key_key.debug.focusPause:key.keyboard.p -key_key.debug.dumpDynamicTextures:key.keyboard.s -key_key.debug.reloadResourcePacks:key.keyboard.t -key_key.debug.profiling:key.keyboard.l -key_key.debug.copyLocation:key.keyboard.c -key_key.debug.dumpVersion:key.keyboard.v -key_key.debug.profilingChart:key.keyboard.1 -key_key.debug.fpsCharts:key.keyboard.2 -key_key.debug.networkCharts:key.keyboard.3 -key_axiom.keybind.context:key.keyboard.left.alt -key_axiom.keybind.builder_tool_slot:key.keyboard.0 -key_axiom.keybind.orbit_camera:key.keyboard.unknown -key_axiom.keybind.jump_to_block:key.keyboard.unknown -key_axiom.keybind.toggle_editor_ui:key.keyboard.right.shift -key_axiom.keybind.toggle_invisible_blocks:key.keyboard.unknown -key_axiom.keybind.toggle_flight_speed_adjustment:key.keyboard.unknown -key_axiom.keybind.toggle_no_clip_cap:key.keyboard.unknown -key_axiom.keybind.toggle_angel_placement_cap:key.keyboard.unknown -key_axiom.keybind.toggle_fast_place_cap:key.keyboard.unknown -key_axiom.keybind.toggle_infinite_reach_cap:key.keyboard.unknown -key_axiom.keybind.toggle_tinker_cap:key.keyboard.unknown -key_axiom.keybind.toggle_no_updates_cap:key.keyboard.unknown -key_axiom.keybind.toggle_force_place_cap:key.keyboard.unknown -key_axiom.keybind.toggle_replace_mode_cap:key.keyboard.r -key_axiom.keybind.toggle_bulldozer_cap:key.keyboard.unknown -key_axiom.keybind.nudge_with_scroll:key.keyboard.unknown -key_axiom.keybind.nudge_forwards:key.keyboard.unknown -key_axiom.keybind.nudge_backwards:key.keyboard.unknown -key_flashback.keybind.create_marker_1:key.keyboard.unknown -key_flashback.keybind.create_marker_2:key.keyboard.unknown -key_flashback.keybind.create_marker_3:key.keyboard.unknown -key_flashback.keybind.create_marker_4:key.keyboard.unknown -key_key.worldeditcui.toggle:key.keyboard.unknown -key_key.worldeditcui.clear:key.keyboard.unknown -key_key.worldeditcui.chunk:key.keyboard.unknown -key_key.camerautils.zoom:key.keyboard.z -key_key.camerautils.third_person_cam_1:key.keyboard.f6 -key_key.camerautils.third_person_cam_2:key.keyboard.f7 -key_key.camerautils.third_person_offset:key.keyboard.unknown -key_key.camerautils.detach_camera:key.keyboard.grave.accent -key_key.camerautils.zoom_animation:key.keyboard.unknown -key_key.camerautils.cinematic_camera_settings:key.keyboard.unknown -key_key.camerautils.third_person_camera_1_settings:key.keyboard.unknown -key_key.camerautils.third_person_camera_2_settings:key.keyboard.unknown -key_key.camerautils.third_person_settings:key.keyboard.unknown -key_key.camerautils.zoom_settings:key.keyboard.unknown -key_key.camerautils.zoom_animation_settings:key.keyboard.unknown -key_key.entityculling.toggle:key.keyboard.unknown -key_key.entityculling.toggleBoxes:key.keyboard.unknown -key_key.journeymap.minimap_preset:key.keyboard.backslash -key_key.journeymap.toggle_entity_names:key.keyboard.g -key_key.journeymap.toggle_render_waypoints_map:key.keyboard.unknown -key_key.journeymap.fullscreen.south:key.keyboard.down -key_key.journeymap.zoom_in:key.keyboard.equal -key_key.journeymap.fullscreen.north:key.keyboard.up -key_key.journeymap.fullscreen_waypoints:key.keyboard.n -key_key.journeymap.toggle_render_waypoints_world:key.keyboard.unknown -key_key.journeymap.fullscreen.east:key.keyboard.right -key_key.journeymap.zoom_out:key.keyboard.minus -key_key.journeymap.create_waypoint:key.keyboard.b -key_key.journeymap.fullscreen.disable_buttons:key.keyboard.unknown -key_key.journeymap.minimap_type:key.keyboard.left.bracket -key_key.journeymap.fullscreen_create_waypoint:key.keyboard.b -key_key.journeymap.fullscreen.west:key.keyboard.left -key_key.journeymap.toggle_waypoints:key.keyboard.unknown -key_key.journeymap.fullscreen_chat_position:key.keyboard.c -key_key.journeymap.map_toggle_alt:key.keyboard.j -key_key.journeymap.toggle_render_waypoints:key.keyboard.unknown -key_key.journeymap.minimap_toggle_alt:key.keyboard.unknown -key_key.journeymap.fullscreen_options:key.keyboard.o -key_key.journeymap.fullscreen_follow_player:key.keyboard.f -key_key.debug.reloadLanguages:key.keyboard.j -key_key.modmenu.open_menu:key.keyboard.unknown -key_omm.key.open-fullscreen-map:key.keyboard.semicolon -key_omm.key.zoom-in:key.keyboard.equal -key_omm.key.zoom-out:key.keyboard.minus -key_omm.key.toggle-map:key.keyboard.m -key_omm.key.copy-coordinates:key.keyboard.unknown -key_omm.key.snap-angle:key.keyboard.unknown -key_iris.keybind.reload:key.keyboard.r -key_iris.keybind.toggleShaders:key.keyboard.k -key_iris.keybind.shaderPackSelection:key.keyboard.o -key_iris.keybind.wireframe:key.keyboard.unknown -key_key.craftpresence.config_keycode.name:key.keyboard.unknown -soundCategory_master:0.0 -soundCategory_music:0.0 -soundCategory_record:1.0 -soundCategory_weather:1.0 -soundCategory_block:1.0 -soundCategory_hostile:1.0 -soundCategory_neutral:1.0 -soundCategory_player:1.0 -soundCategory_ambient:1.0 -soundCategory_voice:1.0 -soundCategory_ui:1.0 -modelPart_cape:true -modelPart_jacket:true -modelPart_left_sleeve:true -modelPart_right_sleeve:true -modelPart_left_pants_leg:true -modelPart_right_pants_leg:true -modelPart_hat:true diff --git a/pakku-lock.json b/pakku-lock.json new file mode 100644 index 0000000..ef62c8d --- /dev/null +++ b/pakku-lock.json @@ -0,0 +1,3423 @@ +{ + "target": "multiplatform", + "mc_versions": [ + "26.2" + ], + "loaders": { + "fabric": "0.19.3" + }, + "projects": [ + { + "pakku_id": "G36X498BBcKsExEE", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "audition", + "curseforge": "audition" + }, + "name": { + "modrinth": "Audition", + "curseforge": "Audition" + }, + "id": { + "modrinth": "HMeGkqZ7", + "curseforge": "1223249" + }, + "files": [ + { + "type": "modrinth", + "file_name": "audition-2.0.0+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/HMeGkqZ7/versions/1JUG62Lr/audition-2.0.0+mc26.2.jar", + "id": "1JUG62Lr", + "parent_id": "HMeGkqZ7", + "hashes": { + "sha512": "ebb20c88c08fc20d317456ced6eb567eaebbdaad5a34e1cadfb985e219517a3d7dbd325601a235506a47b2e38a18c5710364b56445454062f36895a968a0bf1e", + "sha1": "ffaf68a37d8abfcf8c5f761d41067dfd6389276c" + }, + "required_dependencies": [], + "size": 42046, + "date_published": "2026-06-22T19:36:58.342100Z" + }, + { + "type": "curseforge", + "file_name": "audition-2.0.0+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8302/385/audition-2.0.0+mc26.2.jar", + "id": "8302385", + "parent_id": "1223249", + "hashes": { + "sha1": "ffaf68a37d8abfcf8c5f761d41067dfd6389276c", + "md5": "9eab1439fa38547eb89205589d06248a" + }, + "required_dependencies": [ + "306612" + ], + "size": 42046, + "date_published": "2026-06-22T19:38:09.053Z" + } + ] + }, + { + "pakku_id": "9Ma3YQqAFrs1jDSx", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "bte-terrarenderer", + "curseforge": "bte-terrarenderer" + }, + "name": { + "modrinth": "BTETerraRenderer", + "curseforge": "BTE-TerraRenderer" + }, + "id": { + "modrinth": "1A8XMFfM", + "curseforge": "1550742" + }, + "files": [ + { + "type": "modrinth", + "file_name": "bteterrarenderer-1.5.0-alpha.1-fabric26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "alpha", + "url": "https://cdn.modrinth.com/data/1A8XMFfM/versions/GVKBZaGa/bteterrarenderer-1.5.0-alpha.1-fabric26.2.jar", + "id": "GVKBZaGa", + "parent_id": "1A8XMFfM", + "hashes": { + "sha512": "2161402a7e839d89ba52e85a3ce3415abbdc1aee69fe421f51b91ae0c51bacceeb6bb216863d21ff41e2d1a9df4a32833767a110b2b6e9a9963a91b45ad46b20", + "sha1": "dd973d235cf3910bb8980d89fc8745db9cb75cfd" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 13619122, + "date_published": "2026-07-28T22:12:28.914868Z" + }, + { + "type": "curseforge", + "file_name": "bteterrarenderer-1.5.0-alpha.1-fabric26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "alpha", + "url": "https://edge.forgecdn.net/files/8529/788/bteterrarenderer-1.5.0-alpha.1-fabric26.2.jar", + "id": "8529788", + "parent_id": "1550742", + "hashes": { + "sha1": "dd973d235cf3910bb8980d89fc8745db9cb75cfd", + "md5": "78d2e59b582903595817c24d20d52ae3" + }, + "required_dependencies": [ + "306612" + ], + "size": 13619122, + "date_published": "2026-07-28T21:29:17.837Z" + } + ] + }, + { + "pakku_id": "2yf3N5dIaqueOnaP", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "badoptimizations", + "curseforge": "badoptimizations" + }, + "name": { + "modrinth": "BadOptimizations", + "curseforge": "BadOptimizations" + }, + "id": { + "modrinth": "g96Z4WVZ", + "curseforge": "949555" + }, + "files": [ + { + "type": "modrinth", + "file_name": "BadOptimizations-2.4.1-26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/g96Z4WVZ/versions/JmPs4Wie/BadOptimizations-2.4.1-26.2-fabric.jar", + "id": "JmPs4Wie", + "parent_id": "g96Z4WVZ", + "hashes": { + "sha512": "f91c409d4ce68d027ac0a11b6d2828c5f6d057e749ff0ce596f3a84a65fc1e3905b08f4d97a21a7302e2bfaf4ff865907272bd9c7ffa8487701b22e40dfe2f97", + "sha1": "b36b001f869d04245523807d9ccb26a085f243b4" + }, + "required_dependencies": [], + "size": 60709, + "date_published": "2026-06-16T19:06:36.516381Z" + }, + { + "type": "curseforge", + "file_name": "BadOptimizations-2.4.1-26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8260/341/BadOptimizations-2.4.1-26.2-fabric.jar", + "id": "8260341", + "parent_id": "949555", + "hashes": { + "sha1": "b36b001f869d04245523807d9ccb26a085f243b4", + "md5": "7394487cacb01f6e19ba14fc976e9b39" + }, + "required_dependencies": [], + "size": 60709, + "date_published": "2026-06-16T19:04:33.370Z" + } + ] + }, + { + "pakku_id": "59GmnMKcNpIZM8SV", + "pakku_links": [ + "E4X7jZTsUCPy4w22" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "better-block-entities", + "curseforge": "better-block-entities" + }, + "name": { + "modrinth": "Better Block Entities", + "curseforge": "Better Block Entities" + }, + "id": { + "modrinth": "ONZm0H7Y", + "curseforge": "1434533" + }, + "files": [ + { + "type": "modrinth", + "file_name": "bbe-fabric-1.3.7+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/ONZm0H7Y/versions/IDqHHWrF/bbe-fabric-1.3.7+mc26.2.jar", + "id": "IDqHHWrF", + "parent_id": "ONZm0H7Y", + "hashes": { + "sha512": "8c2a325a519c28170b3c6290e65f8ac7beb1b515515d226315454bc8ea4958f1366c4a8c0b564a609907dd85c3e75b0b1b626d0b2c13bf2b18e98dab1ff1cd20", + "sha1": "0cc5f68db3ebb98540be2dbcbd685d3f912e0fc5" + }, + "required_dependencies": [ + "AANobbMI" + ], + "size": 202786, + "date_published": "2026-07-09T18:13:07.532511Z" + }, + { + "type": "curseforge", + "file_name": "bbe-fabric-1.3.7+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8401/741/bbe-fabric-1.3.7+mc26.2.jar", + "id": "8401741", + "parent_id": "1434533", + "hashes": { + "sha1": "0cc5f68db3ebb98540be2dbcbd685d3f912e0fc5", + "md5": "27f52b62749054e81215e4560883f797" + }, + "required_dependencies": [ + "394468" + ], + "size": 202786, + "date_published": "2026-07-09T18:12:00.190Z" + } + ] + }, + { + "pakku_id": "FNl2rvN7jXSOFyIk", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "bettergrassify", + "curseforge": "bettergrassify" + }, + "name": { + "modrinth": "BetterGrassify", + "curseforge": "BetterGrassify" + }, + "id": { + "modrinth": "m5T5xmUy", + "curseforge": "1026394" + }, + "files": [ + { + "type": "modrinth", + "file_name": "BetterGrassify-1.8.7+fabric.26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/m5T5xmUy/versions/r4yqxYQl/BetterGrassify-1.8.7+fabric.26.2.jar", + "id": "r4yqxYQl", + "parent_id": "m5T5xmUy", + "hashes": { + "sha512": "7b70e796cea2ee57a6022108092517b6aa39d5a19b8da1de26685ae53b8fbb4717cd91ee1d232c54efa8e210ebe9b760d3dab79bf9a5fdb5ae75d97b461a1fab", + "sha1": "0f4a890d07402280686a518579fa9fa02309e315" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 88858, + "date_published": "2026-06-17T00:44:15.716424Z" + }, + { + "type": "curseforge", + "file_name": "BetterGrassify-1.8.7+fabric.26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8262/610/BetterGrassify-1.8.7+fabric.26.2.jar", + "id": "8262610", + "parent_id": "1026394", + "hashes": { + "sha1": "0f4a890d07402280686a518579fa9fa02309e315", + "md5": "8c13bb98272c61f22aec944519c09186" + }, + "required_dependencies": [ + "306612" + ], + "size": 88858, + "date_published": "2026-06-17T00:44:14.443Z" + } + ] + }, + { + "pakku_id": "eDm1PStd9KErArcv", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "big-sign-writer", + "modrinth": "bigsignwriter" + }, + "name": { + "curseforge": "Big Sign Writer", + "modrinth": "Big Sign Writer" + }, + "id": { + "curseforge": "1153979", + "modrinth": "UCpxwAAu" + }, + "files": [] + }, + { + "pakku_id": "XLsdVsOL5xNqSOkq", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "camera-utils", + "curseforge": "camera-utils" + }, + "name": { + "modrinth": "Camera Utils", + "curseforge": "Camera Utils" + }, + "id": { + "modrinth": "rrwQMaWQ", + "curseforge": "510234" + }, + "files": [ + { + "type": "modrinth", + "file_name": "camerautils-fabric-1.1.2+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/rrwQMaWQ/versions/ftzKCT0z/camerautils-fabric-1.1.2+26.2.jar", + "id": "ftzKCT0z", + "parent_id": "rrwQMaWQ", + "hashes": { + "sha512": "f2bbf67651d5ae9d006da9800c2bccc334ef6d6b6f1474b30efa62821cbf0c4b47fffe838fce996bfb5402e8648f4e2a933c6035b5dfa03f555814567e70b092", + "sha1": "61f3cf63d84d830cb60020cc24b65f41257ec86b" + }, + "required_dependencies": [], + "size": 358199, + "date_published": "2026-06-16T15:31:27.049889Z" + }, + { + "type": "curseforge", + "file_name": "camerautils-fabric-1.1.2+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/8258/620/camerautils-fabric-1.1.2+26.2.jar", + "id": "8258620", + "parent_id": "510234", + "hashes": { + "sha1": "61f3cf63d84d830cb60020cc24b65f41257ec86b", + "md5": "c928b88e4740ac4670afff14c037b169" + }, + "required_dependencies": [], + "size": 358199, + "date_published": "2026-06-16T15:31:15.990Z" + } + ] + }, + { + "pakku_id": "qJsnGNUnd1K4VqpB", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "chatanimation", + "curseforge": "chatanimation" + }, + "name": { + "modrinth": "Chat Animation [Smooth Chat]", + "curseforge": "Chat Animation [Smooth Chat]" + }, + "id": { + "modrinth": "DnNYdJsx", + "curseforge": "892086" + }, + "files": [ + { + "type": "modrinth", + "file_name": "chatanimation-fabric-1.3.0+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/DnNYdJsx/versions/7UGcRlKL/chatanimation-fabric-1.3.0+mc26.2.jar", + "id": "7UGcRlKL", + "parent_id": "DnNYdJsx", + "hashes": { + "sha512": "ca6f9fd2bd398e12c49653732906b033a1b3f0c640fd445e1fc2999a4c157bab1a9392c739bfe4e4a9ab775145ffca814fb73c65378b9d018497df648ebfc976", + "sha1": "4dfc46f32ba66b21234cc97c2bb1aafcff37bffd" + }, + "required_dependencies": [], + "size": 397973, + "date_published": "2026-07-05T16:03:26.324705Z" + }, + { + "type": "curseforge", + "file_name": "chatanimation-fabric-1.3.0+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8375/989/chatanimation-fabric-1.3.0+mc26.2.jar", + "id": "8375989", + "parent_id": "892086", + "hashes": { + "sha1": "4dfc46f32ba66b21234cc97c2bb1aafcff37bffd", + "md5": "fa45ddfdeb8cfec07ed9e7f33b61694e" + }, + "required_dependencies": [], + "size": 397973, + "date_published": "2026-07-05T16:03:25.147Z" + } + ] + }, + { + "pakku_id": "w52iE1oZSQZZBL5J", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "chat-heads", + "curseforge": "chat-heads" + }, + "name": { + "modrinth": "Chat Heads", + "curseforge": "Chat Heads" + }, + "id": { + "modrinth": "Wb5oqrBJ", + "curseforge": "407206" + }, + "files": [ + { + "type": "modrinth", + "file_name": "chat_heads-1.2.7-fabric-26.1.jar", + "mc_versions": [ + "26.1", + "26.1.1", + "26.1.2", + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Wb5oqrBJ/versions/KEmD5xhf/chat_heads-1.2.7-fabric-26.1.jar", + "id": "KEmD5xhf", + "parent_id": "Wb5oqrBJ", + "hashes": { + "sha512": "4a6821fc25ef5ab92b02a160cb7c3e19903796bfb822695576c8edb9d6bda4287794576f5dad672aed05d107e3db4adaef7f6726f48c864deef23b359cfe8044", + "sha1": "998b5fe11495ea67bf436a2c44a05463583001e2" + }, + "required_dependencies": [], + "size": 93949, + "date_published": "2026-08-08T10:54:32.388296Z" + }, + { + "type": "curseforge", + "file_name": "chat_heads-1.2.7-fabric-26.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8600/941/chat_heads-1.2.7-fabric-26.1.jar", + "id": "8600941", + "parent_id": "407206", + "hashes": { + "sha1": "998b5fe11495ea67bf436a2c44a05463583001e2", + "md5": "f69cd219a0579f358389f9cb10f8b41d" + }, + "required_dependencies": [], + "size": 93949, + "date_published": "2026-08-08T10:54:34.537Z" + } + ] + }, + { + "pakku_id": "j9uESN41o2k9rlbC", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "cloth-config", + "curseforge": "cloth-config" + }, + "name": { + "modrinth": "Cloth Config API", + "curseforge": "Cloth Config API (Fabric/Forge/NeoForge)" + }, + "id": { + "modrinth": "9s6osm5g", + "curseforge": "348521" + }, + "files": [ + { + "type": "modrinth", + "file_name": "cloth-config-26.2.155.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/9s6osm5g/versions/Nv3xnWXd/cloth-config-26.2.155.jar", + "id": "Nv3xnWXd", + "parent_id": "9s6osm5g", + "hashes": { + "sha512": "37b1e402f0df5a383656e21a38ee18cdd15cb4ba3fb62fbeba82ef4b959a4479fc32718ac0d9d154a7d9104c5f7315bfa67dbeced0b8ff240b8039d4848d5df1", + "sha1": "babcf16dbd15e09d326e21ffe85ab3f7d843ef9e" + }, + "required_dependencies": [], + "size": 1135186, + "date_published": "2026-06-18T00:27:27.147096Z" + }, + { + "type": "curseforge", + "file_name": "cloth-config-26.2.155.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8269/699/cloth-config-26.2.155.jar", + "id": "8269699", + "parent_id": "348521", + "hashes": { + "sha1": "babcf16dbd15e09d326e21ffe85ab3f7d843ef9e", + "md5": "776ec6f7bea662823c7acc7aa8b66c68" + }, + "required_dependencies": [], + "size": 1135186, + "date_published": "2026-06-18T00:27:22.570Z" + } + ] + }, + { + "pakku_id": "PkDjDRIcC3rag0N4", + "pakku_links": [ + "grJMlvDFyPy3lYAr" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "continuity", + "curseforge": "continuity" + }, + "name": { + "modrinth": "Continuity", + "curseforge": "Continuity" + }, + "id": { + "modrinth": "1IjD5062", + "curseforge": "531351" + }, + "files": [ + { + "type": "modrinth", + "file_name": "continuity-3.0.1+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1IjD5062/versions/mgUN5Xz2/continuity-3.0.1+26.2.jar", + "id": "mgUN5Xz2", + "parent_id": "1IjD5062", + "hashes": { + "sha512": "3436b39fcdddce87f8eda0f35095067477636df2667195df3cb8eae2d002d3ff8ac44de97332668ee50e13ad91be5c532cbc6121878f1e6c904c98c1c9c67c0b", + "sha1": "8fa8bc108e84158b0828a4aa59bf906d31676eec" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 1040013, + "date_published": "2026-06-16T20:37:54.326739Z" + }, + { + "type": "curseforge", + "file_name": "continuity-3.0.1+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8261/100/continuity-3.0.1+26.2.jar", + "id": "8261100", + "parent_id": "531351", + "hashes": { + "sha1": "8fa8bc108e84158b0828a4aa59bf906d31676eec", + "md5": "8d529a0906965c60115719a401ba3d43" + }, + "required_dependencies": [ + "306612" + ], + "size": 1040013, + "date_published": "2026-06-16T20:40:25.650Z" + } + ] + }, + { + "pakku_id": "LVdlaWmDIff8gnew", + "pakku_links": [ + "WRoZyGLtXcidpis9" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "craftpresence", + "curseforge": "craftpresence" + }, + "name": { + "modrinth": "CraftPresence", + "curseforge": "CraftPresence" + }, + "id": { + "modrinth": "DFqQfIBR", + "curseforge": "297038" + }, + "files": [ + { + "type": "modrinth", + "file_name": "CraftPresence-2.7.1+26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/DFqQfIBR/versions/GjRzcZtU/CraftPresence-2.7.1+26.2-fabric.jar", + "id": "GjRzcZtU", + "parent_id": "DFqQfIBR", + "hashes": { + "sha512": "f5c556e6d6e24cc262ebb209c0c4e34f9f936959f164db568f51034bd7df9602686335f7de61a4be7de9103d5749c484784edfdd592dcc6f872fc4ed86b3d248", + "sha1": "65b643ff56981c90066e26fb3f13da5458d16f3f" + }, + "required_dependencies": [ + "nT86WUER" + ], + "size": 1444483, + "date_published": "2026-06-18T20:38:41.492168Z" + }, + { + "type": "curseforge", + "file_name": "CraftPresence-2.7.1+26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8275/522/CraftPresence-2.7.1+26.2-fabric.jar", + "id": "8275522", + "parent_id": "297038", + "hashes": { + "sha1": "65b643ff56981c90066e26fb3f13da5458d16f3f", + "md5": "8e86ec04b139e481d9c1fbe75cd8d5e1" + }, + "required_dependencies": [ + "1056812" + ], + "size": 1444483, + "date_published": "2026-06-18T20:49:10.047Z" + } + ] + }, + { + "pakku_id": "QZLYOe5k9J7kFwM0", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "distant-horizons", + "modrinth": "distanthorizons" + }, + "name": { + "curseforge": "Distant Horizons: A Level of Detail mod", + "modrinth": "Distant Horizons" + }, + "id": { + "curseforge": "508933", + "modrinth": "uCdwusMi" + }, + "files": [ + { + "type": "curseforge", + "file_name": "DistantHorizons-3.2.0-b-26.2-fabric-neoforge.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "neoforge" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/8389/161/DistantHorizons-3.2.0-b-26.2-fabric-neoforge.jar", + "id": "8389161", + "parent_id": "508933", + "hashes": { + "sha1": "3646a34691c0857a64614bb7ecd344d8b22b117a", + "md5": "4ebb4b10b8da4d31798c3a5962c565ef" + }, + "required_dependencies": [], + "size": 29705395, + "date_published": "2026-07-07T20:29:22.950Z" + }, + { + "type": "modrinth", + "file_name": "DistantHorizons-3.2.0-b-26.2-fabric-neoforge.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "neoforge" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/uCdwusMi/versions/gBf0SaV1/DistantHorizons-3.2.0-b-26.2-fabric-neoforge.jar", + "id": "gBf0SaV1", + "parent_id": "uCdwusMi", + "hashes": { + "sha512": "c1b8857776a002c2232887d891bd49195f3c3127a7abe1242376ad20371e31554d8ba6c7c92a195b70782cad94fe970941487f2af530988d9b8819455c859e72", + "sha1": "3646a34691c0857a64614bb7ecd344d8b22b117a" + }, + "required_dependencies": [], + "size": 29705395, + "date_published": "2026-07-07T20:31:55.502157Z" + } + ] + }, + { + "pakku_id": "c4b8So8LSeYaLRLP", + "pakku_links": [ + "xiXDanWYNymF2QKU" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "drippy-loading-screen", + "curseforge": "drippy-loading-screen" + }, + "name": { + "modrinth": "Drippy Loading Screen", + "curseforge": "Drippy Loading Screen" + }, + "id": { + "modrinth": "v3CYg2V9", + "curseforge": "511770" + }, + "files": [ + { + "type": "modrinth", + "file_name": "drippyloadingscreen_fabric_3.1.5_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/v3CYg2V9/versions/kv882MmK/drippyloadingscreen_fabric_3.1.5_MC_26.2.jar", + "id": "kv882MmK", + "parent_id": "v3CYg2V9", + "hashes": { + "sha512": "f94441da4a22a61ee4e41ea15c50fd1c06ece759991b18b11e69076c4093fc4d4e37bfe9997bda1fa873cb74158a63428d8101da218b21827d96e75faac4b368", + "sha1": "041306eb119a4c07107eebea9a82b3b33d875685" + }, + "required_dependencies": [ + "J81TRJWm", + "P7dR8mSH", + "CVT4pFB2", + "Wq5SjeWM" + ], + "size": 287536, + "date_published": "2026-08-01T08:40:56.563992Z" + }, + { + "type": "curseforge", + "file_name": "drippyloadingscreen_fabric_3.1.5_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8552/926/drippyloadingscreen_fabric_3.1.5_MC_26.2.jar", + "id": "8552926", + "parent_id": "511770", + "hashes": { + "sha1": "041306eb119a4c07107eebea9a82b3b33d875685", + "md5": "3bae4c9374a42baaf4f3ce3b857a82d0" + }, + "required_dependencies": [ + "938643", + "367706", + "410295", + "306612" + ], + "size": 287536, + "date_published": "2026-08-01T08:40:57.547Z" + } + ] + }, + { + "pakku_id": "hPi3BKWtZ0C0TBr4", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "dynamic-fps", + "curseforge": "dynamic-fps" + }, + "name": { + "modrinth": "Dynamic FPS", + "curseforge": "Dynamic FPS" + }, + "id": { + "modrinth": "LQ3K71Q1", + "curseforge": "335493" + }, + "files": [ + { + "type": "modrinth", + "file_name": "dynamic-fps-3.11.9+minecraft-26.2.0-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/LQ3K71Q1/versions/pC2JjFw1/dynamic-fps-3.11.9+minecraft-26.2.0-fabric.jar", + "id": "pC2JjFw1", + "parent_id": "LQ3K71Q1", + "hashes": { + "sha512": "79b13548d7e9de9abfa23e062724a885e5341f371c500d6570056ecea7db00c2f7ace5a7288179ad8baec575b4aa992b91dccbc940c584cb5cddf0bc7aeb892f", + "sha1": "e8cd9e4fbc6d42091faffc873b0801f1189ed6a5" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 188740, + "date_published": "2026-06-16T16:00:18.345659Z" + }, + { + "type": "curseforge", + "file_name": "dynamic-fps-3.11.9+minecraft-26.2.0-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8260/227/dynamic-fps-3.11.9+minecraft-26.2.0-fabric.jar", + "id": "8260227", + "parent_id": "335493", + "hashes": { + "sha1": "e8cd9e4fbc6d42091faffc873b0801f1189ed6a5", + "md5": "bbd6ce171a7c37fed0dba4d96f91f400" + }, + "required_dependencies": [ + "306612" + ], + "size": 188740, + "date_published": "2026-06-16T18:54:29.777Z" + } + ] + }, + { + "pakku_id": "cSEiabHAILEHhK8x", + "pakku_links": [ + "grJMlvDFyPy3lYAr" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "entityculling", + "curseforge": "entityculling" + }, + "name": { + "modrinth": "Entity Culling", + "curseforge": "Entity Culling Fabric/Forge" + }, + "id": { + "modrinth": "NNAgCjsB", + "curseforge": "448233" + }, + "redistributable": false, + "files": [ + { + "type": "modrinth", + "file_name": "entityculling-fabric-1.10.5-mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/NNAgCjsB/versions/iiF6U3Ne/entityculling-fabric-1.10.5-mc26.2.jar", + "id": "iiF6U3Ne", + "parent_id": "NNAgCjsB", + "hashes": { + "sha512": "338813c344a2d924abbaaf249da2b52f5e162bd92407f3099c6ff1bce1c1efecde9df80efcc7b4de3b3a0044cc5735b96594b04da4594bb26793459fc6c960a6", + "sha1": "f66f9d8cbb1f76466aaf45e46fb11b18207e3aef" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 1583775, + "date_published": "2026-06-20T14:43:52.362716Z" + }, + { + "type": "curseforge", + "file_name": "entityculling-fabric-1.10.5-mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8287/118/entityculling-fabric-1.10.5-mc26.2.jar", + "id": "8287118", + "parent_id": "448233", + "hashes": { + "sha1": "f66f9d8cbb1f76466aaf45e46fb11b18207e3aef", + "md5": "a5386ffd224844effbbfa2e8b4784824" + }, + "required_dependencies": [ + "306612" + ], + "size": 1583775, + "date_published": "2026-06-20T14:42:50.233Z" + } + ] + }, + { + "pakku_id": "Bh7eevdN8aDnJEYu", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "exploitpreventer" + }, + "name": { + "modrinth": "ExploitPreventer" + }, + "id": { + "modrinth": "VdINCTcD" + }, + "files": [ + { + "type": "modrinth", + "file_name": "ExploitPreventer-1.1.0+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/VdINCTcD/versions/519WaD7o/ExploitPreventer-1.1.0+26.2.jar", + "id": "519WaD7o", + "parent_id": "VdINCTcD", + "hashes": { + "sha512": "75f7c26616a738f977093f43a92bc7db5264740853c6b6b6ccb9dac9d984f878940dc52da868ada4ab9699409d8002d43b82ea87f01882c229d2ca23ba1cde6c", + "sha1": "5f65427a6794689994e13a1c1caa66ec9d964e9f" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 147584, + "date_published": "2026-06-16T17:12:27.565070Z" + } + ] + }, + { + "pakku_id": "grJMlvDFyPy3lYAr", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "fabric-api", + "curseforge": "fabric-api" + }, + "name": { + "modrinth": "Fabric API", + "curseforge": "Fabric API" + }, + "id": { + "modrinth": "P7dR8mSH", + "curseforge": "306612" + }, + "files": [ + { + "type": "modrinth", + "file_name": "fabric-api-0.156.0+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/P7dR8mSH/versions/3gT0I5vt/fabric-api-0.156.0+26.2.jar", + "id": "3gT0I5vt", + "parent_id": "P7dR8mSH", + "hashes": { + "sha512": "5bbc436d07f836cd90b88287e2ef27f1cd67e26185b2cd4a62cb2ae850eb74e5edbbc7ba7772e92ea91ebf35b263f8815421e3d5e7d2836cb28993ba1d534816", + "sha1": "d96e0d9ef8ea3604fac4ca7495d7c6148f3ac816" + }, + "required_dependencies": [], + "size": 2531175, + "date_published": "2026-07-28T09:57:10.795527Z" + }, + { + "type": "curseforge", + "file_name": "fabric-api-0.156.0+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8525/693/fabric-api-0.156.0+26.2.jar", + "id": "8525693", + "parent_id": "306612", + "hashes": { + "sha1": "d96e0d9ef8ea3604fac4ca7495d7c6148f3ac816", + "md5": "a42e80da3fadb6f202c7dc7f021408f5" + }, + "required_dependencies": [], + "size": 2531175, + "date_published": "2026-07-28T09:57:02.243Z" + } + ] + }, + { + "pakku_id": "xtLpKYNR7bnDylHD", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "fabric-language-kotlin", + "curseforge": "fabric-language-kotlin" + }, + "name": { + "modrinth": "Fabric Language Kotlin", + "curseforge": "Fabric Language Kotlin" + }, + "id": { + "modrinth": "Ha28R6CL", + "curseforge": "308769" + }, + "files": [ + { + "type": "modrinth", + "file_name": "fabric-language-kotlin-1.13.13+kotlin.2.4.10.jar", + "mc_versions": [ + "1.14", + "1.14.1", + "1.14.2", + "1.14.3", + "1.14.4", + "1.15", + "1.15.1", + "1.15.2", + "1.16", + "1.16.1", + "1.16.2", + "1.16.3", + "1.16.4", + "1.16.5", + "1.17", + "1.17.1", + "1.18", + "1.18.1", + "1.18.2", + "1.19", + "1.19.1", + "1.19.2", + "1.19.3", + "1.19.4", + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6", + "1.21", + "1.21.1", + "1.21.2", + "1.21.3", + "1.21.4", + "1.21.5", + "1.21.6", + "1.21.7", + "1.21.8", + "1.21.9", + "1.21.10", + "1.21.11", + "26.1", + "26.1.1", + "26.1.2", + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Ha28R6CL/versions/bdhiINYC/fabric-language-kotlin-1.13.13+kotlin.2.4.10.jar", + "id": "bdhiINYC", + "parent_id": "Ha28R6CL", + "hashes": { + "sha512": "9a63c35a550b0362b7b25ff045d93709c7b0dae08c89076cba422813fdfb9e5f5dd021ed3afac9f82e74e95b88c249e8f68b240717151540ca3e88cc27fb9c77", + "sha1": "620cb137a9dc69ce86f3114f19d9eedab16366f5" + }, + "required_dependencies": [], + "size": 8076363, + "date_published": "2026-07-15T20:14:45.530782Z" + }, + { + "type": "curseforge", + "file_name": "fabric-language-kotlin-1.13.13+kotlin.2.4.10.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8439/967/fabric-language-kotlin-1.13.13+kotlin.2.4.10.jar", + "id": "8439967", + "parent_id": "308769", + "hashes": { + "sha1": "620cb137a9dc69ce86f3114f19d9eedab16366f5", + "md5": "b70470268be8c74a10e10b24a2bf7df6" + }, + "required_dependencies": [], + "size": 8076363, + "date_published": "2026-07-15T20:14:43.517Z" + } + ] + }, + { + "pakku_id": "ZO4FAMCP7wNSpm5i", + "pakku_links": [ + "grJMlvDFyPy3lYAr", + "xiXDanWYNymF2QKU" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "fancymenu", + "curseforge": "fancymenu" + }, + "name": { + "modrinth": "FancyMenu", + "curseforge": "FancyMenu" + }, + "id": { + "modrinth": "Wq5SjeWM", + "curseforge": "367706" + }, + "files": [ + { + "type": "modrinth", + "file_name": "fancymenu_fabric_3.9.9_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Wq5SjeWM/versions/GHgbiobT/fancymenu_fabric_3.9.9_MC_26.2.jar", + "id": "GHgbiobT", + "parent_id": "Wq5SjeWM", + "hashes": { + "sha512": "5c95eddfd2fd758c44f229fc0e29e432350665a710c8439287c4ffee4867e1f601e99616d5092385ebf5bc5047e71ca2c2cf41b67b04f57a28a737bca44dac8c", + "sha1": "a091552a0f7c9fd0d4bc83dac10c3e87b36fb439" + }, + "required_dependencies": [ + "J81TRJWm", + "CVT4pFB2", + "P7dR8mSH" + ], + "size": 26284989, + "date_published": "2026-07-31T03:49:06.472849Z" + }, + { + "type": "curseforge", + "file_name": "fancymenu_fabric_3.9.9_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8544/982/fancymenu_fabric_3.9.9_MC_26.2.jar", + "id": "8544982", + "parent_id": "367706", + "hashes": { + "sha1": "a091552a0f7c9fd0d4bc83dac10c3e87b36fb439", + "md5": "a7614410bcf3588a08bbaca315da0ca3" + }, + "required_dependencies": [ + "410295", + "938643", + "306612" + ], + "size": 26284989, + "date_published": "2026-07-31T03:49:10.640Z" + } + ] + }, + { + "pakku_id": "RCjYqN9WXSRk5YHL", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "ferritecore-fabric", + "modrinth": "ferrite-core" + }, + "name": { + "curseforge": "FerriteCore (Fabric)", + "modrinth": "FerriteCore" + }, + "id": { + "curseforge": "459857", + "modrinth": "uXXizFIs" + }, + "files": [ + { + "type": "curseforge", + "file_name": "ferritecore-9.0.0-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7806/40/ferritecore-9.0.0-fabric.jar", + "id": "7806040", + "parent_id": "459857", + "hashes": { + "sha1": "eac76ff0f3753422c61b2c44487d0d195d88d4bc", + "md5": "9d96f643cfd220b75f47c94ea56ebc2a" + }, + "required_dependencies": [], + "size": 72677, + "date_published": "2026-03-24T18:31:49.493Z" + }, + { + "type": "modrinth", + "file_name": "ferritecore-9.0.0-fabric.jar", + "mc_versions": [ + "26.1", + "26.1.1", + "26.1.2", + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/uXXizFIs/versions/d5ddUdiB/ferritecore-9.0.0-fabric.jar", + "id": "d5ddUdiB", + "parent_id": "uXXizFIs", + "hashes": { + "sha512": "d81fa97e11784c19d42f89c2f433831d007603dd7193cee45fa177e4a6a9c52b384b198586e04a0f7f63cd996fed713322578bde9a8db57e1188854ae5cbe584", + "sha1": "eac76ff0f3753422c61b2c44487d0d195d88d4bc" + }, + "required_dependencies": [], + "size": 72677, + "date_published": "2026-03-24T18:31:50.491773Z" + } + ] + }, + { + "pakku_id": "as5Qp4Bn87kpp2vi", + "pakku_links": [ + "grJMlvDFyPy3lYAr" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "flashback" + }, + "name": { + "modrinth": "Flashback" + }, + "id": { + "modrinth": "4das1Fjq" + }, + "files": [ + { + "type": "modrinth", + "file_name": "Flashback-0.42.1-for-MC26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/4das1Fjq/versions/HkyawEi6/Flashback-0.42.1-for-MC26.2.jar", + "id": "HkyawEi6", + "parent_id": "4das1Fjq", + "hashes": { + "sha512": "c47a59d15f4dee59f52593eeb645caed297b51778819daf40ba1e36bedce566773785e0d5ea5b4e02155540074c11409f6bcad6c30df0488bd6ea602399c2418", + "sha1": "801ea2798e216fe62809a4d6255db6cb6f72ba09" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 211468125, + "date_published": "2026-07-28T21:07:59.112435Z" + } + ] + }, + { + "pakku_id": "4HxurPPgSFGVczov", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "flashback-extras" + }, + "name": { + "modrinth": "Flashback Extras" + }, + "id": { + "modrinth": "SEEukT7F" + }, + "files": [ + { + "type": "modrinth", + "file_name": "flashback-extras-1.2.0-MC26.2.x.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/SEEukT7F/versions/aUTpZweH/flashback-extras-1.2.0-MC26.2.x.jar", + "id": "aUTpZweH", + "parent_id": "SEEukT7F", + "hashes": { + "sha512": "d16e24fb82b935d04ad46ecad883eb9607962249f5861197e3590e604f2451758dad7d329e9c49a59472fa43f972be1e8e8a2719db9e0c0ba018bc2480dd07b6", + "sha1": "628843a8a9b81dbb48e76274384768d0990cd214" + }, + "required_dependencies": [], + "size": 48388, + "date_published": "2026-07-15T16:55:34.877859Z" + } + ] + }, + { + "pakku_id": "4DVA7VKar9EElqOp", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "fusion-connected-textures", + "curseforge": "fusion-connected-textures" + }, + "name": { + "modrinth": "Fusion (Connected Textures)", + "curseforge": "Fusion (Connected Textures)" + }, + "id": { + "modrinth": "p19vrgc2", + "curseforge": "854949" + }, + "files": [ + { + "type": "modrinth", + "file_name": "fusion-1.3.12-fabric-mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/p19vrgc2/versions/N8OknjCW/fusion-1.3.12-fabric-mc26.2.jar", + "id": "N8OknjCW", + "parent_id": "p19vrgc2", + "hashes": { + "sha512": "d1fc24b9dd4ce8fcf1dedb0e38c11bb468b6e9552ea9ad4621ea3cb5aeec1d80ab383df831e78f73592842bb248481700434515eacaca89f369b3810f47c0bf9", + "sha1": "2853b3fe004c0e8c411b626a6df1673fb4499a93" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 937809, + "date_published": "2026-07-29T21:58:17.009017Z" + }, + { + "type": "curseforge", + "file_name": "fusion-1.3.12-fabric-mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8536/609/fusion-1.3.12-fabric-mc26.2.jar", + "id": "8536609", + "parent_id": "854949", + "hashes": { + "sha1": "2853b3fe004c0e8c411b626a6df1673fb4499a93", + "md5": "e71c01302573af9f63c3fcce539720a1" + }, + "required_dependencies": [ + "306612" + ], + "size": 937809, + "date_published": "2026-07-29T21:58:16.570Z" + } + ] + }, + { + "pakku_id": "YC6lqXuk5z3wr1qL", + "pakku_links": [ + "xtLpKYNR7bnDylHD" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "fzzy-config", + "curseforge": "fzzy-config" + }, + "name": { + "modrinth": "Fzzy Config", + "curseforge": "Fzzy Config" + }, + "id": { + "modrinth": "hYykXjDp", + "curseforge": "1005914" + }, + "files": [ + { + "type": "modrinth", + "file_name": "fzzy_config-0.7.6+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/hYykXjDp/versions/EQSFgLYw/fzzy_config-0.7.6+26.2.jar", + "id": "EQSFgLYw", + "parent_id": "hYykXjDp", + "hashes": { + "sha512": "cc6ed535a8ea78dd255351e12e0a0ebcd4feb645f03402f7de4666378466e3b8a9562ff9a4e01e772eb25fb9d04554571c19f7c27eaec7bb4e3f115036c0492f", + "sha1": "7ac79a06b302ea72ac029b2f2df1e3930714b256" + }, + "required_dependencies": [ + "Ha28R6CL", + "P7dR8mSH" + ], + "size": 2373321, + "date_published": "2026-06-16T22:50:12.582734Z" + }, + { + "type": "curseforge", + "file_name": "fzzy_config-0.7.6+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8261/915/fzzy_config-0.7.6+26.2.jar", + "id": "8261915", + "parent_id": "1005914", + "hashes": { + "sha1": "7ac79a06b302ea72ac029b2f2df1e3930714b256", + "md5": "976cddb3df10c7a55874aac5ef5cddda" + }, + "required_dependencies": [ + "308769", + "306612" + ], + "size": 2373321, + "date_published": "2026-06-16T22:50:04.903Z" + } + ] + }, + { + "pakku_id": "zZKfTUbZWHgRmIcs", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "immediatelyfast", + "curseforge": "immediatelyfast" + }, + "name": { + "modrinth": "ImmediatelyFast", + "curseforge": "ImmediatelyFast" + }, + "id": { + "modrinth": "5ZwdcRci", + "curseforge": "686911" + }, + "files": [ + { + "type": "modrinth", + "file_name": "ImmediatelyFast-Fabric-1.16.2+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/5ZwdcRci/versions/uJHxuQxy/ImmediatelyFast-Fabric-1.16.2+26.2.jar", + "id": "uJHxuQxy", + "parent_id": "5ZwdcRci", + "hashes": { + "sha512": "5f7c9d7993bfe3654b4f384c23afd83c1adcc359b1fa669b20f29ffa41e4e3135a161c1fdf97c66c5fc513ec5fe63e757a46b6e183b7b93148a28412496c5a0b", + "sha1": "2d1cd27b0b570f908b665c02a35b49381b4c5ec1" + }, + "required_dependencies": [], + "size": 91422, + "date_published": "2026-07-11T22:29:11.646027Z" + }, + { + "type": "curseforge", + "file_name": "ImmediatelyFast-Fabric-1.16.2+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8415/228/ImmediatelyFast-Fabric-1.16.2+26.2.jar", + "id": "8415228", + "parent_id": "686911", + "hashes": { + "sha1": "2d1cd27b0b570f908b665c02a35b49381b4c5ec1", + "md5": "d7a174061600c61077e4270136de2153" + }, + "required_dependencies": [], + "size": 91422, + "date_published": "2026-07-11T22:29:10.173Z" + } + ] + }, + { + "pakku_id": "T5GAI3FSeuwp6Hjj", + "pakku_links": [ + "E4X7jZTsUCPy4w22" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "iris" + }, + "name": { + "modrinth": "Iris Shaders" + }, + "id": { + "modrinth": "YL57xq9U" + }, + "files": [ + { + "type": "modrinth", + "file_name": "iris-fabric-1.11.2+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/YL57xq9U/versions/oaD6KQls/iris-fabric-1.11.2+mc26.2.jar", + "id": "oaD6KQls", + "parent_id": "YL57xq9U", + "hashes": { + "sha512": "c1b46bcd1a0068deab3ae364a7229d31e27b7d45aea960e47503b8514354426badf83f354529db35d83e6b55727a53895fb9f13085e51d8148ee6765affac924", + "sha1": "f7d526b1062c4bfe2567113cf933d1de26eddd3f" + }, + "required_dependencies": [ + "AANobbMI" + ], + "size": 2820763, + "date_published": "2026-07-08T21:11:56.737884Z" + } + ] + }, + { + "pakku_id": "DDqG6SWJ6cG8poVM", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "jade", + "curseforge": "jade" + }, + "name": { + "modrinth": "Jade 🔍", + "curseforge": "Jade 🔍" + }, + "id": { + "modrinth": "nvQzSEkH", + "curseforge": "324717" + }, + "files": [ + { + "type": "modrinth", + "file_name": "Jade-mc26.2-Fabric-26.2.10.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/nvQzSEkH/versions/JB4B8a9g/Jade-mc26.2-Fabric-26.2.10.jar", + "id": "JB4B8a9g", + "parent_id": "nvQzSEkH", + "hashes": { + "sha512": "5964e943cd56a4ba9fdf6be4ed351e3b57811ce3026714348590270087f6d198c64d06b5efea7968752cbb2a3a7fba8974e014ca7573608930c87365422215ec", + "sha1": "9ff6d8c9041251c453a25152c302ef51b918509e" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 1043666, + "date_published": "2026-07-28T21:54:56.249901Z" + }, + { + "type": "curseforge", + "file_name": "Jade-mc26.2-Fabric-26.2.10.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8529/944/Jade-mc26.2-Fabric-26.2.10.jar", + "id": "8529944", + "parent_id": "324717", + "hashes": { + "sha1": "9ff6d8c9041251c453a25152c302ef51b918509e", + "md5": "6a429ae774ab0da2033a5d79ef364d84" + }, + "required_dependencies": [ + "306612" + ], + "size": 1043666, + "date_published": "2026-07-28T21:54:54.430Z" + } + ] + }, + { + "pakku_id": "XHM3lLXuKftHTNh6", + "pakku_links": [ + "grJMlvDFyPy3lYAr" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "konkrete", + "curseforge": "konkrete" + }, + "name": { + "modrinth": "Konkrete", + "curseforge": "Konkrete" + }, + "id": { + "modrinth": "J81TRJWm", + "curseforge": "410295" + }, + "files": [ + { + "type": "modrinth", + "file_name": "konkrete_fabric_1.11.1_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/J81TRJWm/versions/Ra1AWDOa/konkrete_fabric_1.11.1_MC_26.2.jar", + "id": "Ra1AWDOa", + "parent_id": "J81TRJWm", + "hashes": { + "sha512": "9679b1512ec7fd64a5ac49c2de24daabc6308956d7c5144e5c6d6f8ed5f6d40c3fa903ec329adf315a8ea806b841a49b6f5521edeec3ea114a9d2abef5e06154", + "sha1": "5f7e89dc14016ae63a504780a1d2c2f50d1c0c7e" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 764987, + "date_published": "2026-06-26T04:03:54.898573Z" + }, + { + "type": "curseforge", + "file_name": "konkrete_fabric_1.11.1_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8321/891/konkrete_fabric_1.11.1_MC_26.2.jar", + "id": "8321891", + "parent_id": "410295", + "hashes": { + "sha1": "5f7e89dc14016ae63a504780a1d2c2f50d1c0c7e", + "md5": "554b9dcace4914a50d75f30476b94b9d" + }, + "required_dependencies": [ + "306612" + ], + "size": 764987, + "date_published": "2026-06-26T04:03:56.443Z" + } + ] + }, + { + "pakku_id": "GaXm5Fj8UntOflPg", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "lithium", + "curseforge": "lithium" + }, + "name": { + "modrinth": "Lithium", + "curseforge": "Lithium (Fabric/NeoForge)" + }, + "id": { + "modrinth": "gvQqBUqZ", + "curseforge": "360438" + }, + "files": [ + { + "type": "modrinth", + "file_name": "lithium-fabric-0.25.3+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/gvQqBUqZ/versions/f7vZ0VWU/lithium-fabric-0.25.3+mc26.2.jar", + "id": "f7vZ0VWU", + "parent_id": "gvQqBUqZ", + "hashes": { + "sha512": "148b638f3c6229fbaf487120a2344a0af5e411a5aa6533d5db9d75da0a8c0d8304f63eb4cca13f4d03b2c9b4c23d559dd74c1d832422ef8a3087bd005e62a8bd", + "sha1": "435ad0289209bb72195e7a423756a03f5dfa5a9a" + }, + "required_dependencies": [], + "size": 912850, + "date_published": "2026-07-29T12:19:55.348704Z" + }, + { + "type": "curseforge", + "file_name": "lithium-fabric-0.25.3+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8533/307/lithium-fabric-0.25.3+mc26.2.jar", + "id": "8533307", + "parent_id": "360438", + "hashes": { + "sha1": "435ad0289209bb72195e7a423756a03f5dfa5a9a", + "md5": "ee8279ea831c40de6ab0a5a8c52370c9" + }, + "required_dependencies": [], + "size": 912850, + "date_published": "2026-07-29T12:19:52Z" + } + ] + }, + { + "pakku_id": "xiXDanWYNymF2QKU", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "melody", + "curseforge": "melody" + }, + "name": { + "modrinth": "Melody", + "curseforge": "Melody" + }, + "id": { + "modrinth": "CVT4pFB2", + "curseforge": "938643" + }, + "files": [ + { + "type": "modrinth", + "file_name": "melody_fabric_1.0.17_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/CVT4pFB2/versions/ItVQn1cW/melody_fabric_1.0.17_MC_26.2.jar", + "id": "ItVQn1cW", + "parent_id": "CVT4pFB2", + "hashes": { + "sha512": "4f1b414688c546c62ba66d362454778c060c82f6556bb55af5f3f624d37059bdbd7361051d0f2a958f1acc799a210fc7408a806f199ff69ba6bb27162b50bd47", + "sha1": "73a6216fcdae3928bd387a26a68318be9db83841" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 227497, + "date_published": "2026-06-25T04:29:31.022254Z" + }, + { + "type": "curseforge", + "file_name": "melody_fabric_1.0.17_MC_26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8316/114/melody_fabric_1.0.17_MC_26.2.jar", + "id": "8316114", + "parent_id": "938643", + "hashes": { + "sha1": "73a6216fcdae3928bd387a26a68318be9db83841", + "md5": "21c701fff3660dd40c086fc3f47f526d" + }, + "required_dependencies": [ + "306612" + ], + "size": 227497, + "date_published": "2026-06-25T04:29:32.167Z" + } + ] + }, + { + "pakku_id": "jFit37kUSluLNVMx", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "mixintrace", + "curseforge": "mixintrace" + }, + "name": { + "modrinth": "MixinTrace", + "curseforge": "MixinTrace" + }, + "id": { + "modrinth": "sGmHWmeL", + "curseforge": "433447" + }, + "files": [ + { + "type": "modrinth", + "file_name": "mixintrace-1.1.1+1.17.jar", + "mc_versions": [ + "1.17", + "1.17.1", + "1.18", + "1.18.1", + "1.18.2", + "1.19", + "1.19.1", + "1.19.2", + "1.19.3", + "1.19.4", + "1.20", + "1.20.1", + "1.20.2", + "1.20.3", + "1.20.4", + "1.20.5", + "1.20.6", + "1.21", + "1.21.1" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/sGmHWmeL/versions/1.1.1+1.17/mixintrace-1.1.1+1.17.jar", + "id": "LGYOH4RN", + "parent_id": "sGmHWmeL", + "hashes": { + "sha512": "ea9034b60bc1c64629a9bcad2e619907692fe6e7464026236c55cc5a4892a20d21dd6318ad0380ab2ec245f7077939b6717d2ed58e00708c17470be14f5e0b5f", + "sha1": "7fbb0130db0e427ee7180d304dfa65c46f0e3b69" + }, + "required_dependencies": [], + "size": 36039, + "date_published": "2022-06-13T19:40:27.890912Z" + } + ] + }, + { + "pakku_id": "l7fZTyhPGEQvw5on", + "pakku_links": [ + "grJMlvDFyPy3lYAr", + "ZP4WENHGALft7FMh", + "NL0XEDnMcH7bDyCy" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "modmenu", + "curseforge": "modmenu" + }, + "name": { + "modrinth": "Mod Menu", + "curseforge": "Mod Menu" + }, + "id": { + "modrinth": "mOgUt4GM", + "curseforge": "308702" + }, + "files": [ + { + "type": "modrinth", + "file_name": "modmenu-20.0.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/mOgUt4GM/versions/njXb639R/modmenu-20.0.1.jar", + "id": "njXb639R", + "parent_id": "mOgUt4GM", + "hashes": { + "sha512": "1aa297ab5e6fac71ad6af750fe6f8cd25281bd00c0340e5fe1c1e9d153d1198df03be1df55727a4a2116db97dcaad541d41754f3fc0063abfe4345b60f193fb4", + "sha1": "8562dee49eae1a6bdd14b026be1b300aedb5ce0f" + }, + "required_dependencies": [ + "P7dR8mSH", + "eXts2L7r" + ], + "size": 614002, + "date_published": "2026-07-09T21:54:21.377948Z" + }, + { + "type": "curseforge", + "file_name": "modmenu-20.0.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8402/669/modmenu-20.0.1.jar", + "id": "8402669", + "parent_id": "308702", + "hashes": { + "sha1": "8562dee49eae1a6bdd14b026be1b300aedb5ce0f", + "md5": "87749d37d34f7e3b9d41f93135474346" + }, + "required_dependencies": [ + "306612", + "1037459" + ], + "size": 614002, + "date_published": "2026-07-09T21:54:23.997Z" + } + ] + }, + { + "pakku_id": "GGHkivjSKlyYdYQW", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "moonrise", + "modrinth": "moonrise-opt" + }, + "name": { + "curseforge": "Moonrise", + "modrinth": "Moonrise" + }, + "id": { + "curseforge": "1096335", + "modrinth": "KOHu7RCS" + }, + "files": [ + { + "type": "modrinth", + "file_name": "Moonrise-Fabric-1.1.0+87549dd.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/KOHu7RCS/versions/W0HImEBl/Moonrise-Fabric-1.1.0+87549dd.jar", + "id": "W0HImEBl", + "parent_id": "KOHu7RCS", + "hashes": { + "sha512": "89f73b2ecc9cd3d7e08ee199cefb0eb3588eabbe4ec0ccb55de3c580cc1d562de441ae6371b3435e27dd6098819235c74bdcf8ac3a5dbd45ee829c09eb745f01", + "sha1": "6fd47c69d865f2d67812016ef8b505281b470fe4" + }, + "required_dependencies": [], + "size": 10666984, + "date_published": "2026-06-26T14:55:16.566601Z" + }, + { + "type": "curseforge", + "file_name": "Moonrise-Fabric-1.1.0+87549dd.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8324/170/Moonrise-Fabric-1.1.0+87549dd.jar", + "id": "8324170", + "parent_id": "1096335", + "hashes": { + "sha1": "6fd47c69d865f2d67812016ef8b505281b470fe4", + "md5": "c55769fa765ff2e235e235ff5aa707ed" + }, + "required_dependencies": [], + "size": 10666984, + "date_published": "2026-06-26T14:55:15.067Z" + } + ] + }, + { + "pakku_id": "y7u4GHn1r2GksvCs", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "moreculling", + "curseforge": "moreculling" + }, + "name": { + "modrinth": "More Culling", + "curseforge": "MoreCulling" + }, + "id": { + "modrinth": "51shyZVL", + "curseforge": "630104" + }, + "files": [ + { + "type": "modrinth", + "file_name": "moreculling-fabric-26.2-1.8.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/51shyZVL/versions/D5oVCouK/moreculling-fabric-26.2-1.8.1.jar", + "id": "D5oVCouK", + "parent_id": "51shyZVL", + "hashes": { + "sha512": "9c331ba5f2ce9c322c41aa577f1029f3420d5507d0d942aadbb43fb9bd82e7da6f72e3a0b26c4ad96394669a99a7feb512b5119b3095fde2e0a437bf68c08b40", + "sha1": "189d90ef598883df8197ea18b510dba21e69bac4" + }, + "required_dependencies": [ + "9s6osm5g" + ], + "size": 363646, + "date_published": "2026-08-02T18:57:49.995348Z" + }, + { + "type": "curseforge", + "file_name": "moreculling-fabric-26.2-1.8.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8563/691/moreculling-fabric-26.2-1.8.1.jar", + "id": "8563691", + "parent_id": "630104", + "hashes": { + "sha1": "189d90ef598883df8197ea18b510dba21e69bac4", + "md5": "cd76bd0380842252b1fec47c2ae8eadc" + }, + "required_dependencies": [ + "348521" + ], + "size": 363646, + "date_published": "2026-08-02T18:57:48.653Z" + } + ] + }, + { + "pakku_id": "poUdYoCDzPFFhCuz", + "type": "MOD", + "side": "SERVER", + "slug": { + "modrinth": "noisiumforked", + "curseforge": "noisiumforked" + }, + "name": { + "modrinth": "NoisiumForked", + "curseforge": "NoisiumForked" + }, + "id": { + "modrinth": "hasdd01q", + "curseforge": "1357563" + }, + "files": [ + { + "type": "modrinth", + "file_name": "noisium-fabric-2.8.5+mc26.2-pre-2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/hasdd01q/versions/rWMnuBfv/noisium-fabric-2.8.5+mc26.2-pre-2.jar", + "id": "rWMnuBfv", + "parent_id": "hasdd01q", + "hashes": { + "sha512": "c7ae72c6b3c5e30f767270a2930fe60dfe4cb7e656c612627eb477ff4225a43bbf71882fd837ece43e6ab2d8706933f701007b2fe534d330182786877b50fb79", + "sha1": "c90f03eedd49b1906bf74e0412fc23500936c00b" + }, + "required_dependencies": [], + "size": 68959, + "date_published": "2026-05-30T17:53:39.527609Z" + }, + { + "type": "curseforge", + "file_name": "noisium-fabric-2.8.5+mc26.2-pre-2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8264/767/noisium-fabric-2.8.5+mc26.2-pre-2.jar", + "id": "8264767", + "parent_id": "1357563", + "hashes": { + "sha1": "c90f03eedd49b1906bf74e0412fc23500936c00b", + "md5": "5041cdf9353d1921a964e7f12c453633" + }, + "required_dependencies": [], + "size": 68959, + "date_published": "2026-06-17T09:11:10.310Z" + } + ] + }, + { + "pakku_id": "VLGqovFTutkHsizu", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "optigui", + "curseforge": "optigui" + }, + "name": { + "modrinth": "OptiGUI", + "curseforge": "OptiGUI" + }, + "id": { + "modrinth": "JuksLGBQ", + "curseforge": "619986" + }, + "files": [ + { + "type": "modrinth", + "file_name": "optigui-2.3.0-beta.10+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "beta", + "url": "https://cdn.modrinth.com/data/JuksLGBQ/versions/FC0X8ap5/optigui-2.3.0-beta.10+26.2.jar", + "id": "FC0X8ap5", + "parent_id": "JuksLGBQ", + "hashes": { + "sha512": "42910eb6bbae735df370418c38f007a075cea79cdceb5c0d95a30c8be49d06938466ff10ae354e5107555540c1c498736da074c028080c44656e02ac286a262b", + "sha1": "5f83a64181e374222e28815dd95a5cedc902667d" + }, + "required_dependencies": [ + "Ha28R6CL", + "P7dR8mSH" + ], + "size": 610116, + "date_published": "2026-06-29T20:22:08.298138Z" + }, + { + "type": "curseforge", + "file_name": "optigui-2.3.0-beta.10+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "beta", + "url": "https://edge.forgecdn.net/files/8342/668/optigui-2.3.0-beta.10+26.2.jar", + "id": "8342668", + "parent_id": "619986", + "hashes": { + "sha1": "5f83a64181e374222e28815dd95a5cedc902667d", + "md5": "78000a7f941bbb995a0aaa05a8e38edf" + }, + "required_dependencies": [ + "306612", + "308769" + ], + "size": 610116, + "date_published": "2026-06-29T20:22:05.137Z" + } + ] + }, + { + "pakku_id": "0MYPRaz5Uhq77M36", + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "packet-fixer", + "curseforge": "packet-fixer" + }, + "name": { + "modrinth": "Packet Fixer", + "curseforge": "Packet Fixer" + }, + "id": { + "modrinth": "c7m1mi73", + "curseforge": "689467" + }, + "files": [ + { + "type": "modrinth", + "file_name": "PacketFixer-fabric-3.3.6.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/c7m1mi73/versions/V1pYl7hL/PacketFixer-fabric-3.3.6.jar", + "id": "V1pYl7hL", + "parent_id": "c7m1mi73", + "hashes": { + "sha512": "4d518d2c9f36a890caca55cc201b871b8f1b356064116e3e812c7d179f9554e9f2017f6bbd2db2e0fb61e3c1d410ab643f9e3ceecc0831ed171c67830795067a", + "sha1": "f127ee3839b315d496ea605fe9e427325f0745e8" + }, + "required_dependencies": [], + "size": 31156, + "date_published": "2026-07-16T13:52:55.350725Z" + }, + { + "type": "curseforge", + "file_name": "PacketFixer-fabric-3.3.6.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8444/410/PacketFixer-fabric-3.3.6.jar", + "id": "8444410", + "parent_id": "689467", + "hashes": { + "sha1": "f127ee3839b315d496ea605fe9e427325f0745e8", + "md5": "d74247c04af2d17e43a19683978800d6" + }, + "required_dependencies": [], + "size": 31156, + "date_published": "2026-07-16T13:54:39.623Z" + } + ] + }, + { + "pakku_id": "85LwFjNNBAwNgcba", + "pakku_links": [ + "grJMlvDFyPy3lYAr", + "YC6lqXuk5z3wr1qL", + "xtLpKYNR7bnDylHD" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "particle-core", + "curseforge": "particle-core" + }, + "name": { + "modrinth": "Particle Core", + "curseforge": "Particle Core" + }, + "id": { + "modrinth": "RSeLon5O", + "curseforge": "985426" + }, + "files": [ + { + "type": "modrinth", + "file_name": "particle_core-0.3.3+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/RSeLon5O/versions/VFv6uQKM/particle_core-0.3.3+26.2.jar", + "id": "VFv6uQKM", + "parent_id": "RSeLon5O", + "hashes": { + "sha512": "75467791b669b8cb0450b31766afd0ebfb734c0cdff020c0f1f9e95491440260823fa507d3515f347cb913143e4600feb88400174fc3d84b098ee3126fb91f48", + "sha1": "47c472f02c4f9eebc22e1590c02549b6be921292" + }, + "required_dependencies": [ + "Ha28R6CL", + "hYykXjDp", + "P7dR8mSH" + ], + "size": 141246, + "date_published": "2026-07-08T00:39:26.924860Z" + }, + { + "type": "curseforge", + "file_name": "particle_core-0.3.3+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8390/340/particle_core-0.3.3+26.2.jar", + "id": "8390340", + "parent_id": "985426", + "hashes": { + "sha1": "47c472f02c4f9eebc22e1590c02549b6be921292", + "md5": "8469593dfac0d742b094ada9d2dceed0" + }, + "required_dependencies": [ + "1005914", + "308769", + "306612" + ], + "size": 141246, + "date_published": "2026-07-08T00:39:20.817Z" + } + ] + }, + { + "pakku_id": "6e0dQEngFK7t0gfE", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "puzzle", + "curseforge": "puzzle" + }, + "name": { + "modrinth": "Puzzle", + "curseforge": "Puzzle" + }, + "id": { + "modrinth": "3IuO68q1", + "curseforge": "563977" + }, + "files": [ + { + "type": "modrinth", + "file_name": "puzzle-fabric-2.3.1+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/3IuO68q1/versions/O8oBjnDH/puzzle-fabric-2.3.1+26.2.jar", + "id": "O8oBjnDH", + "parent_id": "3IuO68q1", + "hashes": { + "sha512": "1bc9ba65f41e5c59755b78ec8c933945ac031f3306c8270dcab68b016fe92079617e00c86a8310b07cb9e24477260dfa7c908854354dcc7db53876fc48884abc", + "sha1": "17888efe8c7f9f930f91696cfb25b1317fc4910f" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 97609, + "date_published": "2026-06-17T14:47:31.437962Z" + }, + { + "type": "curseforge", + "file_name": "puzzle-fabric-2.3.1+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8266/598/puzzle-fabric-2.3.1+26.2.jar", + "id": "8266598", + "parent_id": "563977", + "hashes": { + "sha1": "17888efe8c7f9f930f91696cfb25b1317fc4910f", + "md5": "54db093ae8a72fb85f3fcdeff40d2c51" + }, + "required_dependencies": [ + "306612" + ], + "size": 97609, + "date_published": "2026-06-17T14:47:31.390Z" + } + ] + }, + { + "pakku_id": "hrtVLIo8sYASh7pm", + "pakku_links": [ + "E4X7jZTsUCPy4w22" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "reeses-sodium-options", + "curseforge": "reeses-sodium-options" + }, + "name": { + "modrinth": "Reese's Sodium Options", + "curseforge": "Reese's Sodium Options" + }, + "id": { + "modrinth": "Bh37bMuy", + "curseforge": "511319" + }, + "files": [ + { + "type": "modrinth", + "file_name": "reeses-sodium-options-fabric-2.2.3+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Bh37bMuy/versions/PH4SPorH/reeses-sodium-options-fabric-2.2.3+mc26.2.jar", + "id": "PH4SPorH", + "parent_id": "Bh37bMuy", + "hashes": { + "sha512": "2dbd97ca7013c6e88a475a55b828c50234c6060cc7a20843c9aadecdd561e1a690d7d0ba0ddb9dce30f8ebfdc02e113ffce7c9067ab63cf5c780a2e1d4139aa7", + "sha1": "111c74b99d265d0b378ad842dfafdd7c4d6d5445" + }, + "required_dependencies": [ + "AANobbMI" + ], + "size": 259465, + "date_published": "2026-07-11T07:29:51.495619Z" + }, + { + "type": "curseforge", + "file_name": "reeses-sodium-options-fabric-2.2.3+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8410/907/reeses-sodium-options-fabric-2.2.3+mc26.2.jar", + "id": "8410907", + "parent_id": "511319", + "hashes": { + "sha1": "111c74b99d265d0b378ad842dfafdd7c4d6d5445", + "md5": "2e6d430cd9052ada02bdb032dd659ecd" + }, + "required_dependencies": [ + "394468" + ], + "size": 259465, + "date_published": "2026-07-11T07:29:47.300Z" + } + ] + }, + { + "pakku_id": "iFBdF9kOBKRSSIEN", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "replaymod" + }, + "name": { + "modrinth": "ReplayMod" + }, + "id": { + "modrinth": "Nv2fQJo5" + }, + "files": [ + { + "type": "modrinth", + "file_name": "replaymod-26.2-2.6.27.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/Nv2fQJo5/versions/5YS1OgDP/replaymod-26.2-2.6.27.jar", + "id": "5YS1OgDP", + "parent_id": "Nv2fQJo5", + "hashes": { + "sha512": "5e81e8b29be94d21f8512dbcb8b91943d1e09e042821843199298df7fa61503a1e3162c8ab2dde8a3953339c525cd4f9a25874971bf53486459c720ee8544472", + "sha1": "2845cc50f31f78e0e07a50ecb7b8603c6d1a52e5" + }, + "required_dependencies": [], + "size": 15716381, + "date_published": "2026-07-12T07:26:39.137663Z" + } + ] + }, + { + "pakku_id": "F6fVcAdXcSVvPI9i", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "serverpingerfixer", + "curseforge": "serverpingerfixer" + }, + "name": { + "modrinth": "Server Pinger Fixer", + "curseforge": "Server Pinger Fixer" + }, + "id": { + "modrinth": "iqK5uv72", + "curseforge": "968681" + }, + "files": [ + { + "type": "modrinth", + "file_name": "serverpingerfixer+26.1-1.1.0.jar", + "mc_versions": [ + "26.1", + "26.1.1", + "26.1.2", + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/iqK5uv72/versions/5xfjHyo4/serverpingerfixer+26.1-1.1.0.jar", + "id": "5xfjHyo4", + "parent_id": "iqK5uv72", + "hashes": { + "sha512": "3f313b0918e3b8dbb46ded7445c11ffaa650e52852c0389adbc2eb464706cd09f9add63743492bd60c3d6968243f36074e4cd50c249fe049f220290476092154", + "sha1": "9524c8b2a62794a861c80a477d311ab04826a4de" + }, + "required_dependencies": [], + "size": 6724, + "date_published": "2026-03-28T11:15:50.962979Z" + }, + { + "type": "curseforge", + "file_name": "serverpingerfixer+26.1-1.1.0.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/7828/329/serverpingerfixer+26.1-1.1.0.jar", + "id": "7828329", + "parent_id": "968681", + "hashes": { + "sha1": "9524c8b2a62794a861c80a477d311ab04826a4de", + "md5": "c162bebf652092568cbd88b57cba15a3" + }, + "required_dependencies": [], + "size": 6724, + "date_published": "2026-03-28T11:15:31.740Z" + } + ] + }, + { + "pakku_id": "E4X7jZTsUCPy4w22", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "sodium", + "curseforge": "sodium" + }, + "name": { + "modrinth": "Sodium", + "curseforge": "Sodium" + }, + "id": { + "modrinth": "AANobbMI", + "curseforge": "394468" + }, + "files": [ + { + "type": "modrinth", + "file_name": "sodium-fabric-0.9.1+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/AANobbMI/versions/2Yom1N68/sodium-fabric-0.9.1+mc26.2.jar", + "id": "2Yom1N68", + "parent_id": "AANobbMI", + "hashes": { + "sha512": "627fbf9625a4b94693c789c84a0686ffe558c0b1ecbeccf2602a903caafa9e126548b644282aa9c391dc798930d378724a383bea6b4397c5294d59ba5c0a6936", + "sha1": "14f3388694fa77f870d28262f74562de67eabcbe" + }, + "required_dependencies": [], + "size": 1834384, + "date_published": "2026-07-08T20:58:18.553231Z" + }, + { + "type": "curseforge", + "file_name": "sodium-fabric-0.9.1+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8396/428/sodium-fabric-0.9.1+mc26.2.jar", + "id": "8396428", + "parent_id": "394468", + "hashes": { + "sha1": "14f3388694fa77f870d28262f74562de67eabcbe", + "md5": "12238397e6e067c00369e72999e8d163" + }, + "required_dependencies": [], + "size": 1834384, + "date_published": "2026-07-08T20:58:11.693Z" + } + ] + }, + { + "pakku_id": "oyoYBgWK0FUCke7x", + "pakku_links": [ + "E4X7jZTsUCPy4w22" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "sodium-extra", + "curseforge": "sodium-extra" + }, + "name": { + "modrinth": "Sodium Extra", + "curseforge": "Sodium Extra" + }, + "id": { + "modrinth": "PtjYWJkn", + "curseforge": "447673" + }, + "files": [ + { + "type": "modrinth", + "file_name": "sodium-extra-fabric-0.9.3+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/PtjYWJkn/versions/Fu02wj4x/sodium-extra-fabric-0.9.3+mc26.2.jar", + "id": "Fu02wj4x", + "parent_id": "PtjYWJkn", + "hashes": { + "sha512": "d8caeb19c0439f06c5e885582b19980019c347a9685a8a41e5a94b9afd390a6b82b21c44541cc58b88a8ae1430f4410dff2e488833c900f7ea4705ae171321d7", + "sha1": "e939d4e9760169d83763e373de6d668b1b303321" + }, + "required_dependencies": [ + "AANobbMI" + ], + "size": 482602, + "date_published": "2026-07-10T05:48:22.219199Z" + }, + { + "type": "curseforge", + "file_name": "sodium-extra-fabric-0.9.3+mc26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8404/391/sodium-extra-fabric-0.9.3+mc26.2.jar", + "id": "8404391", + "parent_id": "447673", + "hashes": { + "sha1": "e939d4e9760169d83763e373de6d668b1b303321", + "md5": "3e7a3b6bba94daca629627651ac524e5" + }, + "required_dependencies": [ + "394468" + ], + "size": 482602, + "date_published": "2026-07-10T05:48:19.687Z" + } + ] + }, + { + "pakku_id": "NL0XEDnMcH7bDyCy", + "type": "MOD", + "side": "BOTH", + "slug": { + "curseforge": "text-placeholder-api", + "modrinth": "placeholder-api" + }, + "name": { + "curseforge": "Text Placeholder API", + "modrinth": "Text Placeholder API" + }, + "id": { + "curseforge": "1037459", + "modrinth": "eXts2L7r" + }, + "files": [ + { + "type": "curseforge", + "file_name": "placeholder-api-3.1.0-beta.1+26.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8271/471/placeholder-api-3.1.0-beta.1+26.2.jar", + "id": "8271471", + "parent_id": "1037459", + "hashes": { + "sha1": "99b57ccc1d4323c4ef71887828dac25ce4ce2103", + "md5": "2acee95d87c4e626781880017e3ee03d" + }, + "required_dependencies": [], + "size": 254973, + "date_published": "2026-06-18T08:29:11.280Z" + }, + { + "type": "modrinth", + "file_name": "placeholder-api-3.1.0-beta.1+26.2.jar", + "mc_versions": [ + "26.2-pre-1", + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/eXts2L7r/versions/NDqH16LT/placeholder-api-3.1.0-beta.1+26.2.jar", + "id": "NDqH16LT", + "parent_id": "eXts2L7r", + "hashes": { + "sha512": "07b6fc802559d54ec6577f6e2788926ef391d755206c2bfb0528280977885cae4bc0c517d8a53eb6f34092015ebe6c41210627d255aa6504662daefa8fb76397", + "sha1": "99b57ccc1d4323c4ef71887828dac25ce4ce2103" + }, + "required_dependencies": [], + "size": 254973, + "date_published": "2026-05-27T20:57:38.795530Z" + } + ] + }, + { + "pakku_id": "WRoZyGLtXcidpis9", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "unilib", + "curseforge": "unilib" + }, + "name": { + "modrinth": "UniLib", + "curseforge": "UniLib" + }, + "id": { + "modrinth": "nT86WUER", + "curseforge": "1056812" + }, + "files": [ + { + "type": "modrinth", + "file_name": "UniLib-1.2.1+26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/nT86WUER/versions/jmug71pF/UniLib-1.2.1+26.2-fabric.jar", + "id": "jmug71pF", + "parent_id": "nT86WUER", + "hashes": { + "sha512": "090d0a162cc413cac9849682cf2b6bdb9a8b4e511e5363e33e85f85d13f06082b19d3816e078351636f1b11d9d3e3e09c9e19a81c24e6822d86e99f53d58da40", + "sha1": "ee3e1bc9a403368414a35e81b5334fffabb11bcb" + }, + "required_dependencies": [], + "size": 1728279, + "date_published": "2026-06-18T20:23:40.896543Z" + }, + { + "type": "curseforge", + "file_name": "UniLib-1.2.1+26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8275/359/UniLib-1.2.1+26.2-fabric.jar", + "id": "8275359", + "parent_id": "1056812", + "hashes": { + "sha1": "ee3e1bc9a403368414a35e81b5334fffabb11bcb", + "md5": "2b262108d49ec5072d04e5e086d94fb2" + }, + "required_dependencies": [], + "size": 1728279, + "date_published": "2026-06-18T20:23:22.520Z" + } + ] + }, + { + "pakku_id": "2849ivnVSEmFB45M", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "viafabricplus", + "curseforge": "viafabricplus" + }, + "name": { + "modrinth": "ViaFabricPlus", + "curseforge": "ViaFabricPlus" + }, + "id": { + "modrinth": "rIC2XJV4", + "curseforge": "830604" + }, + "files": [ + { + "type": "modrinth", + "file_name": "ViaFabricPlus-4.6.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/rIC2XJV4/versions/NVFW4VRx/ViaFabricPlus-4.6.1.jar", + "id": "NVFW4VRx", + "parent_id": "rIC2XJV4", + "hashes": { + "sha512": "41add6788f1df8b64f1c606f71e8ebeef2e4435a2a85c026eee5bfcaf6fc0f4ee28a30a4481e757a88007c62b32b8e8aec0d968dede0a51be95e72f6ddaa85e8", + "sha1": "8c3aa8a41557b5b96d78bd6d8ee2203fcf2db106" + }, + "required_dependencies": [], + "size": 27093118, + "date_published": "2026-06-29T10:49:57.843222Z" + }, + { + "type": "curseforge", + "file_name": "ViaFabricPlus-4.6.1.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8339/991/ViaFabricPlus-4.6.1.jar", + "id": "8339991", + "parent_id": "830604", + "hashes": { + "sha1": "8c3aa8a41557b5b96d78bd6d8ee2203fcf2db106", + "md5": "c1fe8964705ff5191c2cdb1270fbb92b" + }, + "required_dependencies": [], + "size": 27093118, + "date_published": "2026-06-29T10:50:30.737Z" + } + ] + }, + { + "pakku_id": "NgvPNq4l6knc7Yo3", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "worldeditcui-fabric", + "modrinth": "worldedit-cui" + }, + "name": { + "curseforge": "WorldEdit CUI (Fabric)", + "modrinth": "WorldEdit CUI" + }, + "id": { + "curseforge": "402098", + "modrinth": "NSLJJooQ" + }, + "files": [ + { + "type": "curseforge", + "file_name": "WorldEditCUI-26.2+02.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8533/228/WorldEditCUI-26.2+02.jar", + "id": "8533228", + "parent_id": "402098", + "hashes": { + "sha1": "2bd0e35d25f0841a785199d9c30561fa216f3af1", + "md5": "5610f8786844fbcbe5aed709c0bcca0c" + }, + "required_dependencies": [], + "size": 702500, + "date_published": "2026-07-29T12:02:35.527Z" + }, + { + "type": "modrinth", + "file_name": "WorldEditCUI-26.2+02.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/NSLJJooQ/versions/DXW8m2gO/WorldEditCUI-26.2+02.jar", + "id": "DXW8m2gO", + "parent_id": "NSLJJooQ", + "hashes": { + "sha512": "9f682e0170da8b56ff4753ea71bbf5b339e8a52b43e078851f86427097853c208c91fc94e3db5801c552b989efd73f9f7994b6ee6c9b8bcc13e98abc797b2f93", + "sha1": "2bd0e35d25f0841a785199d9c30561fa216f3af1" + }, + "required_dependencies": [], + "size": 702500, + "date_published": "2026-07-29T11:50:42.182689Z" + } + ] + }, + { + "pakku_id": "VQSmynoC1jIZauuk", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "xaeros-minimap", + "curseforge": "xaeros-minimap" + }, + "name": { + "modrinth": "Xaero's Minimap", + "curseforge": "Xaero's Minimap" + }, + "id": { + "modrinth": "1bokaNcj", + "curseforge": "263420" + }, + "files": [ + { + "type": "modrinth", + "file_name": "xaerominimap-fabric-26.2-26.4.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1bokaNcj/versions/W7vHFz3T/xaerominimap-fabric-26.2-26.4.2.jar", + "id": "W7vHFz3T", + "parent_id": "1bokaNcj", + "hashes": { + "sha512": "dba00f85308524d9d65c559bc48456c8b65cef58eb54891e069cbaacb6e2f633d279b0d65325f510e3d9e590b67e6f5bdb7c816ada484a0d018850267fbc9131", + "sha1": "2c1f7688658101cc7e76b8469016bbebcf176a58" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 2221925, + "date_published": "2026-07-17T08:58:12.713664Z" + }, + { + "type": "curseforge", + "file_name": "xaerominimap-fabric-26.2-26.4.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8449/861/xaerominimap-fabric-26.2-26.4.2.jar", + "id": "8449861", + "parent_id": "263420", + "hashes": { + "sha1": "2c1f7688658101cc7e76b8469016bbebcf176a58", + "md5": "ef7051b616d26eb3c355705fc7a8c1fd" + }, + "required_dependencies": [ + "306612" + ], + "size": 2221925, + "date_published": "2026-07-17T08:16:23.220Z" + } + ] + }, + { + "pakku_id": "mhEkotJsb7yaKwFA", + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "xaeros-world-map", + "curseforge": "xaeros-world-map" + }, + "name": { + "modrinth": "Xaero's World Map", + "curseforge": "Xaero's World Map" + }, + "id": { + "modrinth": "NcUtCpym", + "curseforge": "317780" + }, + "files": [ + { + "type": "modrinth", + "file_name": "xaeroworldmap-fabric-26.2-1.44.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/NcUtCpym/versions/NzjI8AbM/xaeroworldmap-fabric-26.2-1.44.2.jar", + "id": "NzjI8AbM", + "parent_id": "NcUtCpym", + "hashes": { + "sha512": "f159f3393d84e00c6f31bb0ea3e1bd41a51315fc2905f9e87d796fc075f8be1722fa207d3e07bc965aca5fb596fc19782cd58ce4952c9259f9241fc06bdae8b0", + "sha1": "c003a5a6bcad9b876bf356d99fbaee664d72d1a4" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 1473719, + "date_published": "2026-07-17T08:46:08.761033Z" + }, + { + "type": "curseforge", + "file_name": "xaeroworldmap-fabric-26.2-1.44.2.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8449/956/xaeroworldmap-fabric-26.2-1.44.2.jar", + "id": "8449956", + "parent_id": "317780", + "hashes": { + "sha1": "c003a5a6bcad9b876bf356d99fbaee664d72d1a4", + "md5": "c73b18274a0470b49ba8503cb13a12db" + }, + "required_dependencies": [ + "306612" + ], + "size": 1473719, + "date_published": "2026-07-17T08:30:31.373Z" + } + ] + }, + { + "pakku_id": "jhx4VAUINwqfT0MB", + "pakku_links": [ + "grJMlvDFyPy3lYAr" + ], + "type": "MOD", + "side": "BOTH", + "slug": { + "modrinth": "yacl", + "curseforge": "yacl" + }, + "name": { + "modrinth": "YetAnotherConfigLib (YACL)", + "curseforge": "YetAnotherConfigLib" + }, + "id": { + "modrinth": "1eAoo2KR", + "curseforge": "667299" + }, + "files": [ + { + "type": "modrinth", + "file_name": "yet_another_config_lib_v3-3.9.6+26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/1eAoo2KR/versions/cnfPzuFU/yet_another_config_lib_v3-3.9.6+26.2-fabric.jar", + "id": "cnfPzuFU", + "parent_id": "1eAoo2KR", + "hashes": { + "sha512": "b3a58e4a5ef54647569282b8b2e9630389b3568f0abecb9c168daaa815477cbf961e79de28081cac551b69b810f561f043d669d1034aec80f12153a53dff53ef", + "sha1": "40887775504751acd752545e6370a76ca3b5bda9" + }, + "required_dependencies": [ + "P7dR8mSH" + ], + "size": 1121529, + "date_published": "2026-07-19T12:41:24.603956Z" + }, + { + "type": "curseforge", + "file_name": "yet_another_config_lib_v3-3.9.5+26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8307/149/yet_another_config_lib_v3-3.9.5+26.2-fabric.jar", + "id": "8307149", + "parent_id": "667299", + "hashes": { + "sha1": "6d20eb99432557f8c58e4025a8f003d5037125b7", + "md5": "21d75fe301260cda71b317273a55a1ff" + }, + "required_dependencies": [ + "306612" + ], + "size": 1121528, + "date_published": "2026-06-23T16:04:35.937Z" + } + ] + }, + { + "pakku_id": "fGy7cr84eEYrn57T", + "pakku_links": [ + "n7hXqVUbp2OdW5Pe" + ], + "type": "MOD", + "side": "CLIENT", + "slug": { + "modrinth": "entity-model-features", + "curseforge": "entity-model-features" + }, + "name": { + "modrinth": "[EMF] Entity Model Features", + "curseforge": "[EMF] Entity Model Features [Fabric & Forge]" + }, + "id": { + "modrinth": "4I1XuqiY", + "curseforge": "844662" + }, + "files": [ + { + "type": "modrinth", + "file_name": "entity_model_features-3.2.6-26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/4I1XuqiY/versions/xQeW3qQB/entity_model_features-3.2.6-26.2-fabric.jar", + "id": "xQeW3qQB", + "parent_id": "4I1XuqiY", + "hashes": { + "sha512": "9296b5755839062067c9e5e561b8248709c5f9aade53a9eb0c87e0d0dc743f83f1a6b5776dbe1c33c85b0b1a3355544b0da53b0bcdcee5dccc02d6576cb9ef31", + "sha1": "47862c653e419aa6741338b795db841f1086a643" + }, + "required_dependencies": [], + "size": 587342, + "date_published": "2026-06-24T00:00:04.231746Z" + }, + { + "type": "curseforge", + "file_name": "entity_model_features-3.2.6-26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8309/557/entity_model_features-3.2.6-26.2-fabric.jar", + "id": "8309557", + "parent_id": "844662", + "hashes": { + "sha1": "47862c653e419aa6741338b795db841f1086a643", + "md5": "768d74969215c21b9582cd400fca5439" + }, + "required_dependencies": [ + "568563" + ], + "size": 587342, + "date_published": "2026-06-23T23:58:10.410Z" + } + ] + }, + { + "pakku_id": "n7hXqVUbp2OdW5Pe", + "type": "MOD", + "side": "CLIENT", + "slug": { + "curseforge": "entity-texture-features-fabric", + "modrinth": "entitytexturefeatures" + }, + "name": { + "curseforge": "[ETF] Entity Texture Features - [Fabric & Forge]", + "modrinth": "[ETF] Entity Texture Features" + }, + "id": { + "curseforge": "568563", + "modrinth": "BVzZfTc1" + }, + "files": [ + { + "type": "curseforge", + "file_name": "entity_texture_features-7.1.1-26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://edge.forgecdn.net/files/8266/310/entity_texture_features-7.1.1-26.2-fabric.jar", + "id": "8266310", + "parent_id": "568563", + "hashes": { + "sha1": "2d09a60630e8f25a25d9c06d87684c74a843caac", + "md5": "e2ebc8e63d9f6b7116662f02954813c5" + }, + "required_dependencies": [], + "size": 762131, + "date_published": "2026-06-17T14:09:32.410Z" + }, + { + "type": "modrinth", + "file_name": "entity_texture_features-7.1.1-26.2-fabric.jar", + "mc_versions": [ + "26.2" + ], + "loaders": [ + "fabric", + "quilt" + ], + "release_type": "release", + "url": "https://cdn.modrinth.com/data/BVzZfTc1/versions/HLCBKYFD/entity_texture_features-7.1.1-26.2-fabric.jar", + "id": "HLCBKYFD", + "parent_id": "BVzZfTc1", + "hashes": { + "sha512": "4acd478923fac5300fb43cbcc3b6a7501fee473491ee416b5d5a1203bdb8ceeaed04ff34bd1730a9cbff7bc4497265ab129f9eee2ca1d37a70c463203b1a8c20", + "sha1": "2d09a60630e8f25a25d9c06d87684c74a843caac" + }, + "required_dependencies": [], + "size": 762131, + "date_published": "2026-06-17T14:07:08.189034Z" + } + ] + } + ], + "lockfile_version": 2 +} \ No newline at end of file diff --git a/pakku.json b/pakku.json new file mode 100644 index 0000000..1980c43 --- /dev/null +++ b/pakku.json @@ -0,0 +1,7 @@ +{ + "name": "BuildTheEarth Official Modpack", + "version": "0.2.0", + "overrides": [ + "config" + ] +} \ No newline at end of file