public plugin_init( ) { register_clcmd( "say" , "CmdChat" ) } public CmdChat( iPlayer ) { if( !is_user_connected( iPlayer ) ) return PLUGIN_HANDLED; new Mesaj[ 192 ]; read_args( Mesaj , 191 ); remove_quotes( Mesaj ); trim( Mesaj ); for( new i = 0; i < 33; i++ ) { message_begin( MSG_ONE_UNRELIABLE , g_iSayText , _ , i ); write_byte( iPlayer ); write_string( Mesaj ); message_end( ); } return PLUGIN_CONTINUE; }