04.02.2012, 09:05
Yes, you can
OR
pawn Код:
CMD:ooc( playerid, params[ ] )
{
if( isnull( params ) ) return SendClientMessage( ... )
// Code
return 1;
}
pawn Код:
CMD:ooc( playerid, params[ ] )
{
if( !isnull( params ) )
{
// Code
}
else SendClientMessage( .. );
return 1;
}