ive made a plugin for my server and it prints to chat " welcome to the server Sonnymack" How would i make it in colour? i don't know that much about code also.
namespace Oxide.Plugins
{
[Info("welcome", "Sonnymack", "1.0")]
[Description("A helpful comand that welcomes you to the Server")]
public class welcome : RustPlugin
{
void Init()
{
Puts("Init!");
}
void OnPlayerConnected(BasePlayer player)
{
PrintToChat("Welcome to the server" + player.displayName);
PrintToChat("We Hope you enjoy your stay");
}
}
}