20.10.2011, 19:22
Quote:
Try using: if ( isnull ( params ) ) return SendClientMessage( playerid, GREY, "Command Useage: /me <text>" );
Or show us your whole command. |
Код:
CMD:me( playerid, params[] ) { new variable[ 128 ];, if( sscanf( params, "s", variable ) ) SendClientMessage( playerid, WHITE, "[ > ]{FF7E7E} Command USAGE: /me [text]" ); // s = string, variable = variable (example: text). else { // code. } return true; }