10.02.2011, 15:12
how can i print the coommands, i want to see them in server log
public OnPlayerCommandText( playerid, cmdtext[ ] )
{
new string[ 128 ];
new pName[ 24 ];
GetPlayerName( playerid, pName, sizeof pName );
format( string, sizeof string, "Player %s typed a command: %s", pName, cmdtext );
print( string );
return 0;
}