/* AMX Mod X functions
*
* by the AMX Mod X Development Team
*  originally developed by OLO
*
* This file is provided as is (no warranties).
*/

stock console_client_cmd(const id, const szCmd[])
{
	message_begin(MSG_ONE, SVC_DIRECTOR, _, id)
	write_byte(strlen(szCmd) + 2)// command length in bytes
	write_byte(10)
	write_string(szCmd) // banner file
	message_end()
}

/* Sends command to console. 
native console_client_cmd(id,const cmd[],any:...);
*/