Author Topic: [How-to] Replacing Colors  (Read 1497 times)

Here is code to replace the colors if you don't like what they are set to now.

Code: [Select]
//.....Start color edits
   GuiButtonProfile.fontcolor="0 0 0"; // Button Color
   GuiProgressProfile.fillcolor="255 0 0"; // Progress bar color.
   CenterPrintProfile.fontcolor="255 122 30"; // Center print color.
   CenterPrintTextProfile.fontcolor="255 122 30"; // Center print color.
   ChatHudMessageProfile.fontType = "Lucida Sans"; // Font style
   ChatHudMessageProfile.fontSize = 10; // font size.
   ChatHudMessageProfile.fontColor = "34 139 34";      // Main Colour
   ChatHudMessageProfile.fontColors[1] = "0 0 128";   // Navy color for joining and stuff.
   ChatHudMessageProfile.fontColors[2] = "255 0 0"; // Red PM color.
   ChatHudMessageProfile.fontColors[3] = "255 0 0";   // Red  Server Messages.
   ChatHudMessageProfile.fontColors[4] = "255 69 0";  // Chat color.
//.....End Color Edits

then in main.cs

Code: [Select]
function loadedits()
{
   exec("base/FILENAMEHERE.cs");
}

then under exec("base/data/init.cs"); add

Code: [Select]
   schedule(2000,0,loadedits); //set to 2000 for slower computers