24.10.2011, 21:14
pawn Код:
CMD:kick(playerid, params[])
{
if(MasterAccount[playerid][mSuperAdmin] || Character[playerid][cAdminLevel] >= 1)
{
new
id,
n[MAX_PLAYER_NAME],
on[MAX_PLAYER_NAME],
string[128],
reason[64]
;
if(sscanf(params, "uz", id, reason)) return SendClientMessage(playerid, COLOR_LIGHTBLUE, "[SYNTAX]: /kick [PlayerID/PartOfName] [Reason]");
if(id == INVALID_PLAYER_ID) SendClientMessage(playerid, COLOR_RED,"[ERROR]: Player not found");
GetPlayerName(playerid, n, sizeof(n));
GetPlayerName(id, on, sizeof(on));
format(string, sizeof(string), "You have been kicked by Admin: %s for %s", n, reason);
SendClientMessage(id,COLOR_GOLD,string);
format(string, sizeof(string), "[INFO]: Admin Action: %s has kicked %s because: %s", n, on, reason);
SendClientMessageToAll(COLOR_GOLD, string);
Kick(id);
return 1;
} else return SendClientMessage(playerid, COLOR_RED, "[ERROR]: You are not a Admin");
}