Hello there, people. As some of you may be able to tell I'm rather new. I run a server on the registry, and I really like how the server is really easy to run and easy to customize, as well as the client. Recently, I've had a (small) problem and it involves changing chat colors. On the beta server, I saw a mod kick a user, and the text was boldfaced and colored red. I want to know how to implement that into my server. Right now, to kick a user I use this script: Code (text): if (command == "kick") { if (tar == undefined) { return; } sys.sendAll(sys.name(src) + " kicked " + commandData + "!"); sys.kick(tar); return; } (Yes, I'll be honest; I copied the codes from the Server Scripts area on the main site, then added a few more.) Also, I'd like to know how to change the color of the username for my "now playing" script (which is basically a clone of the /me script), because the standard sky blue is quite ugly. If it's at all possible, of course. Code (text): if (command == "np") { sys.sendAll("♪♫ " + sys.name(src) + " is now playing: " + commandData); return; } Thanks in advance!
Colours cannot be changed through script. The bold red is from using the built-in kick option. If you're set as a moderator or administrator, right click a user then select the kick option.
For the skyblue, the thing is you added some music tunes before the name. The colors of messages displayed are decided Client Side, so if the part before ":" doesn't match exactly someone's name, the color will be that of the bot color.
I see. Thanks for clarifying. I didn't even notice the right-click kick option. xD EDIT: Is there a way to force the client to display a color?