eklediğin colorchati sil, burdan düzenle:
 
  PHP- Kodu:
  /* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "akcaliberkk"
public plugin_init() {
    register_plugin(PLUGIN, VERSION, AUTHOR)
    
    register_clcmd("say /ayar","cmdAyar")
}
public cmdAyar(id) {
    if(get_user_team(id) == 2) {
        client_cmd(id,"bind c +hook;bind x +rope;bind z +grab")
        ColorChat(id," **** Mesajin **** ")
    }
}  
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;
}