02.03.2015, 10:11
I am trying to make kick command that kicks all online players with .... ip.
Код:
CMD:kip(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] == 6) { new ip[32], inputip; 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)) <==== Argument type mistmach 1 { 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; }