From 1c3069150fb1faa0cf455737f5854fe290cb5c82 Mon Sep 17 00:00:00 2001 From: 7cc5c4f330d47060 Date: Sun, 3 Nov 2024 14:23:02 -0500 Subject: [PATCH] Make the reference format cuter :3 If you don't like the colors, you can always change it... This is based on an old format from chayapak. --- src/main/resources/default_config.json | 40 ++++++++++++++++++++++++-- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/src/main/resources/default_config.json b/src/main/resources/default_config.json index 42052ad..9f7bbda 100644 --- a/src/main/resources/default_config.json +++ b/src/main/resources/default_config.json @@ -22,13 +22,47 @@ "customChat": { "format": { - "translate": "chat.type.text", + "translate": "[%s] %s › %s", + "color": "#ff99dd", "with": [ { - "selector": "USERNAME" + "text": "ChipmunkMod", + "color": "#ffccee", + "hoverEvent": { + "action": "show_text", + "contents": [ + { + "text": "Click here to open the ChipmunkMod source code (Madeline's fork :3)", + "color": "white" + } + ] + }, + "clickEvent": { + "action": "open_url", + "value": "https://code.chipmunk.land/7cc5c4f330d47060/chipmunkmod" + } }, { - "text": "MESSAGE" + "selector": "USERNAME", + "color": "#ffccee" + }, + { + "text": "", + "extra": ["MESSAGE"], + "color": "white", + "hoverEvent": { + "action": "show_text", + "contents": [ + { + "text": "Click here to copy the message :3", + "color": "white" + } + ] + }, + "clickEvent": { + "action": "copy_to_clipboard", + "value": "MESSAGE" + } } ] }