02.03.2015, 10:23
PHP код:
CMD:kip(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] == 6)
{
new ip[32], inputip[32];
if(sscanf(params, "s[32]", inputip)) return SendClientMessage(playerid, WHITE, "USAGE:/kip [IP]");
for(new p=0; p<MAX_PLAYERS; p++)
{
if(IsPlayerConnected(p))
{
GetPlayerIp(p, ip, sizeof(ip));
if(strcmp(inputip, ip, true))
{
Kick(p);
}
}
}
new str[128], adname[MAX_PLAYER_NAME];
GetPlayerName(playerid, adname, sizeof(adname));
format(str, sizeof(str), "ADMIN %s kick all players with IP: %s", adname, inputip);
SendClientMessageToAll(RED, str);
}
else return SendClientMessage(playerid, RED, "You are not a admin!");
return 1;
}