Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
CheeseBridge
ModLGPL-3.0-only

CheeseBridge

A Minecraft mod that integrates Chzzk donations with the game in real-time.

39
Downloads
0
Followers
3 months ago
Updated
📦
5
Versions
utilityfabric
Download Latestv1.2.1View on Modrinth

📖About CheeseBridge

필수 모드(Dependencies)

https://modrinth.com/mod/pyke-lib

주의사항

로컬서버를 8080 포트를 이용해서 열기 때문에 다른 프로그램에서 8080 포트를 사용 중이면 문제가 발생할 수 있습니다.

명령어

/후원연동 <숲/치지직> | 플랫폼 로그인 창이 뜨며 약관 동의 시 연결이 됩니다. (방송 화면에 주소 노출 금지)
/연동해제 | 연결된 후원 연동을 해제합니다. /후원연동 입력시 재연결됩니다.

* 관리자 전용 -
/후원 <player> <숲/치지직> <amount>

kubejs 사용 방법

const BridgeAPI = Java.loadClass("kr.pyke.integration.BridgeIntegration");
const PykeLib = Java.loadClass("kr.pyke.PykeLib");
const COLOR = Java.loadClass("kr.pyke.util.constants.COLOR");
const ArrayList = Java.loadClass("java.util.ArrayList");

BridgeAPI.DONATION_HANDLER = (player, event) => {
    let server = player.server;

    server.executeIfPossible(() => {
        const name = player.displayName.getString(); // 받는 사람
        const sender = event.donor(); // 보낸사람
        const rawAmount = event.getAmount(); // 받은 개수 (치즈 수 or 별풍선 수)
        const type = event.donationMessage(); // 후원 메시지
        const platform = event.platform().toString(); // 플랫폼 (CHZZK, SOOP)

        const formattedAmount = rawAmount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
        let krwValue = rawAmount; // 로직 계산용 원화 가치
        let notificationMsg = ""; // 채팅창 출력 메시지

        // [메시지 설정]
        if (platform === "SOOP") {
            krwValue = rawAmount * 100;
            notificationMsg = `§7${name}§f님이 §e별풍선 ${formattedAmount}개§f를 후원 받으셨습니다.`;
        } 
        else { 
            notificationMsg = `§7${name}§f님이 §e${formattedAmount} 치즈§f를 후원 받으셨습니다.`; 
        }
        
        sendLibMessage(player, COLOR.LIME.getColor(), notificationMsg);

        // [조건부 보상 예시 1] 500,000원 상당 후원 시
        if (krwValue === 500000) {
            let cmd = `tell ${name} 50만원 후원 받음 lol`;
            player.server.runCommand(cmd);
        }

        // [조건부 보상 예시 2] 1,000원 상당 후원 시 다이아몬드 지급
        if (krwValue === 1000) {
            player.give('minecraft:diamond');
            player.tell(`1천원 받아서 다이아몬드 받음`);
        }
    });
};

function sendLibMessage(player, color, message) {
    if (!player) { return; }
    
    let nativePlayer;
    if (player.minecraftPlayer) { nativePlayer = player.minecraftPlayer; }
    else { nativePlayer = player; }

    try { 
        let playerList = new ArrayList();
        playerList.add(nativePlayer);
        PykeLib.sendSystemMessage(playerList, color, message); 
    }
    catch (e) { console.error("메시지 전송 실패: " + e); }
}

Config

{
  "chzzk": {
    "clientID": "YOUR_CLIENT_ID",
    "clientSecret": "YOUR_CLIENT_SECRET"
  },
  "soop": {
    "clientID": "YOUR_CLIENT_ID",
    "clientSecret": "YOUR_CLIENT_SECRET"
  }
}

API 애플리케이션 등록 방법

https://developers.chzzk.naver.com/

https://developers.sooplive.co.kr/

chzzk_app_auth

Required Modes (Dependencies)

https://modrinth.com/mod/pyke-lib

Precautions

Since the local server uses port 8080, issues may arise if another program is already using port 8080.

Commands

/후원연동 <SOOP/CHZZK> | Displays the login window; connection is established upon agreeing to the terms. (Do not expose the address on the broadcast screen)
/연동해제 | Disconnects the current connection. Re-entering /후원연동 will reconnect.

- Administrator Only -
/후원 <player> <SOOP/CHZZK> <amount>

How to Use kubejs

const BridgeAPI = Java.loadClass("kr.pyke.integration.BridgeIntegration");
const PykeLib = Java.loadClass("kr.pyke.PykeLib");
const COLOR = Java.loadClass("kr.pyke.util.constants.COLOR");
const ArrayList = Java.loadClass("java.util.ArrayList");

BridgeAPI.DONATION_HANDLER = (player, event) => {
    let server = player.server;

    server.executeIfPossible(() => {
        const name = player.displayName.getString(); // Recipient
        const sender = event.donor(); // Donor nickname
        const rawAmount = event.getAmount(); // Amount (Cheese or Balloons)
        const type = event.donationMessage(); // Donation type
        const platform = event.platform().toString(); // Platform (CHZZK, SOOP)

        const formattedAmount = rawAmount.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
        let krwValue = rawAmount; 

        if (platform === "SOOP") {
            krwValue = rawAmount * 100;
        }

        // Message logic
        let notificationMsg = "";
        if (platform === "SOOP") {
            notificationMsg = `§7${name}§f has received a donation of §e${formattedAmount}§f balloons on SOOP.`;
        } else {
             notificationMsg = `§7${name}§f has received a donation of §e${formattedAmount}§f cheese on CHZZK.`;
        }

        sendLibMessage(player, COLOR.LIME.getColor(), notificationMsg);
        
        // [Conditional Reward Example] When receiving 1,000 KRW value, give a diamond
        if (krwValue === 1000) {
            player.give('minecraft:diamond');
            player.tell(`Received 1,000 KRW value, so you get a diamond`);
        }
    });
};

function sendLibMessage(player, color, message) {
    if (!player) { return; }
    
    let nativePlayer;
    if (player.minecraftPlayer) { nativePlayer = player.minecraftPlayer; }
    else { nativePlayer = player; }

    try { 
        let playerList = new ArrayList();
        playerList.add(nativePlayer);
        PykeLib.sendSystemMessage(playerList, color, message); 
    }
    catch (e) { console.error("Message send failed: " + e); }
}

Config

{
  "chzzk": {
    "clientID": "YOUR_CLIENT_ID",
    "clientSecret": "YOUR_CLIENT_SECRET"
  },
  "soop": {
    "clientID": "YOUR_CLIENT_ID",
    "clientSecret": "YOUR_CLIENT_SECRET"
  }
}

How to Register a Cheese Bridge API Application

https://developers.chzzk.naver.com/

https://developers.sooplive.co.kr/

chzzk_app_auth

👥 Team & Contributors

pyke_lee
pyke_leeOwner

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
fabric
Minecraft Versions
1.21.1

🔗 Links

Modrinth Page