PHP- Kodu:
  #include <colorchat> 
  
  Bu kısmı sildikten sonra eklentinin en altına bu stock'u yazıyoruz
 
  PHP- Kodu:
  stock ColorChat(const id, const string[], {Float, Sql, Resul,_}:...) { 
    new msg[191], players[32], count = 1; 
    
    static len; 
    len = formatex(msg, charsmax(msg), "^x01" ); 
    vformat(msg[len], charsmax(msg) - len, string, 3); 
    
    if(id)players[0] = id; 
    else get_players(players,count,"ch"); 
    
    for (new i = 0; i < count; i++){ 
        
        if(is_user_connected(players[i])){ 
            
            message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"),_, players[i]); 
            write_byte(players[i]); 
            write_string(msg); 
            message_end(); 
        } 
    } 
    return; 
} 
  
  Daha sonra ctrl+f yapıp arama kısmına "ColorChat" yazıyoruz her "enter" yaptığımızda karşımıza çıkan ColorChat'lerin 2. parametresinde ki renk kodlarını siliyoruz (RED,GREEN,GRAY,NORMAL)
 
ÖRNEK:
 
  PHP- Kodu:
  ColorChat(id,RED,"^3[ JaiLbReak ]^4 Marketten^3 [ Kanli Balta ]^4 Caldin,Pis Herif.") 
  
  ->
 
  PHP- Kodu:
  ColorChat(id,"^3[ JaiLbReak ]^1 Marketten ^4[ Kanli Balta ]^1 Caldin,Pis Herif.") 
  
  olarak değiştiriyoruz...