05.01.2010, 21:59
He wants an announce command for admins
Simple
pawn Код:
if( !strcmp(cmdtext, "/announce", true ))
{
if( strlen( cmdtext ) < 11 )
return false;
new
gText[ 128 ];
format( gText, sizeof( gText ), "%s", cmdtext[ 10 ] );
GameTextForAll( gText, 3, 5000 );
return true;
}