21.01.2013, 00:55
First of all indent your code. Second of all, if you'd read on the documentation on sscanf, you'd be able to easily do this yourself, however I will do it for you this time:
pawn Код:
COMMAND:jail(playerid, params[])
{
if(PlayerInfo[playerid][PlayerAdmin] <= JAIL_LEVEL) return SendClientMessage(playerid,COLOR_WHITE, "SERVER: Unknown command.");
new
ID,
reason[ 120 ]
;
if(sscanf(params,"uS[120]", ID, reason)) return SendClientMessage(playerid, COLOR_WHITE, ""WHITE"Usage: "GREEN"/jail "WHITE"[playerid] [reason(optional)]");
new string[128];
if(IsPlayerConnected(ID))
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
format(string,sizeof(string),"You have been Admin jailed by "SININE"%s%s%s",name, ( reason[0] ? (" Reason: ") : (""), reason );
SendClientMessage(ID,COLOR_SININE, string);
new rand = random(sizeof(RandomJail));
SetPlayerPos(ID, RandomJail[rand][0], RandomJail[rand][1], RandomJail[rand][2]);
ResetPlayerWeapons(ID);
SetPlayerInterior(ID, 3);
}
return 1;
}