28.12.2014, 09:35
[IMG]
[/IMG]
See the chat above.....
where is the rest of the name ??
Here is the code
[/IMG]See the chat above.....
where is the rest of the name ??
Here is the code
PHP код:
CMD:ban(playerid, params[])
{
new targetid;
if(PlayerInfo[playerid][pAdmin] < 1) return SendClientMessage(playerid, COLOR_RED, "You can't use this command");
if(targetid == INVALID_PLAYER_ID) return SendClientMessage(playerid, COLOR_RED, "This player is not connected");
if(sscanf(params,"u", targetid)) return SendClientMessage(playerid, COLOR_WHITE, "Usage: /ban [id]");
{
new name[MAX_PLAYER_NAME], string[24+MAX_PLAYER_NAME];
new admin[MAX_PLAYER_NAME], string1[24+MAX_PLAYER_NAME];
GetPlayerName(playerid, admin, sizeof(admin));
GetPlayerName(targetid, name, sizeof(name));
format(string, sizeof(string), "%s has been banned by an admin %s", name, admin);
SendClientMessageToAll(COLOR_RED, string);
PlayerInfo[targetid][pBan] = 1;
SetTimerEx("KickDelay", 2000, false, "i", playerid);
}
return true;
}



