11.03.2011, 22:32
I'd also like a genu command: / su (SPECT) playerid / name crimesdescription wantedlevel
CMD:suspect( playerid, params[] )
{
new tempname, tempreason[ 70 ], tempwanted;
if ( sscanf( params, "us[ 70 ]i", tempname, tempreason, tempwanted ) )
return SendClientMessage( playerid, -1, "Usage: /awanted <PlayerID> <Reason> [WantedLevel]");
if ( !IsPlayerConnected( tempname ) )
return SendClientMessage( playerid, -1, ""COL_RED"Player is not connected.");
SetPlayerWantedLevel( tempname, tempwanted );
return 1;
}
CMD:su( playerid, params[] ) return cmd_suspect( playerid, params );