Hel submitted a new mod: Hel's Custom Chat Colours - Houston, We need some colour! Read more about this mod...
Hel updated Hel's Custom Chat Colours with a new update entry: Button and Chatbox recolour Read the rest of this update entry...
Hey, you released a mod! Yay! Minor things to consider for the future: - Pack the mod as a zip instead of a rar. Every computer can open a zip file, but you need a special program to open rar files. - You should patch the chat.config, not replace it. This will avoid potential conflicts with any other mod that might change the chat.config as well.
I'm kinda new to all of this. I have no idea how to patch things. I'll keep the zip in mind for the next update
Here are two very useful sites. 1. This one is a "comment stripper". You may find some configs with some text explaning what things do in it. They are always prefixed with a double slash, and are typically used for making notes in the code, but obviously the game won't know what to do with the text so you "comment it out". This site removes those comments http://trinithis.awardspace.com/commentStripper/stripper.html Example: Runing the following through the comment stripper will return the latter bit. Code: { // I am a comment! "frameGrid" : { "size" : [41, 8], "dimensions" : [1, 2], // Look at me, I am another comment! "names" : [ ["inactive"], ["active"] ] } } Becomes... Code: { "frameGrid" : { "size" : [41, 8], "dimensions" : [1, 2], "names" : [ ["inactive"], ["active"] ] } } This leads into the second site. 2. This site will help you generate the patch files. http://chbrown.github.io/rfc6902/ - In the yellow text box, paste in the config. You can't include comments so that is why you need the stripper from above. - Then, copy the config into a clean notepad, or whatever you use for editing the configs, then make the changes you wish to have. Paste THAT in the green text box. - Automagically, in the purple/blue section, it will generate the code for the patch. Copy this text to your own config and name it with an extension of ."patch" at the end. IE: In your case, it will be "chat.config.patch" Code: Code: [ { "op": "replace", "path": "/config/visTime", "value": 30 }, { "op": "replace", "path": "/config/font/defaultColor/0", "value": 153 }, { "op": "replace", "path": "/config/font/defaultColor/1", "value": 0 }, { "op": "replace", "path": "/config/font/defaultColor/2", "value": 202 }, { "op": "replace", "path": "/config/colors/local", "value": "^shadow,#bf00ff;" }, { "op": "replace", "path": "/config/colors/party", "value": "^shadow,#0066ff;" }, { "op": "replace", "path": "/config/colors/broadcast", "value": "^shadow,#ff80b3;" }, { "op": "replace", "path": "/config/colors/commandResult", "value": "^shadow,#ff0000;" }, { "op": "replace", "path": "/gui/textBox/maxWidth", "value": 201 }, { "op": "replace", "path": "/gui/textBox/position/0", "value": 70 }, { "op": "replace", "path": "/gui/say/value", "value": "Talk To Me:" }, { "op": "replace", "path": "/gui/say/color", "value": "#9900cc" }, { "op": "replace", "path": "/gui/filterGroup/buttons/0/fontColor", "value": "green" }, { "op": "replace", "path": "/gui/filterGroup/buttons/0/fontColorChecked", "value": "green" }, { "op": "replace", "path": "/gui/filterGroup/buttons/1/fontColor", "value": "#ff0066" }, { "op": "replace", "path": "/gui/filterGroup/buttons/1/fontColorChecked", "value": "#ff4f95" }, { "op": "replace", "path": "/gui/filterGroup/buttons/2/fontColor", "value": "#ffff00" }, { "op": "replace", "path": "/gui/filterGroup/buttons/2/fontColorChecked", "value": "#ffff80" }, { "op": "replace", "path": "/gui/filterGroup/buttons/3/fontColor", "value": "#0066ff" }, { "op": "replace", "path": "/gui/filterGroup/buttons/3/fontColorDisabled/0", "value": 128 }, { "op": "replace", "path": "/gui/filterGroup/buttons/3/fontColorDisabled/1", "value": 128 }, { "op": "replace", "path": "/gui/filterGroup/buttons/3/fontColorDisabled/2", "value": 128 }, { "op": "replace", "path": "/gui/filterGroup/buttons/3/fontColorChecked", "value": "#80b3ff" }, { "op": "replace", "path": "/gui/filterGroup/buttons/4/fontColor", "value": "#bf00ff" }, { "op": "replace", "path": "/gui/filterGroup/buttons/4/fontColorChecked", "value": "#df80ff" } ] Hope that makes sense.
Oh? I didn't see the grey version, only the pink one. Did you change the grey one from private to public?