Quote:
Originally Posted by BenzoAMG
Actually, returning inside a loop would break it, so it would only kick ID 0, or the first player connected. And a SendClientMessageToAll inside a loop? They're being kicked, so they might not see it anyway, but that is just setting you up for spam.
pawn Код:
CMD:kickall(playerid, params[]) { //if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "Only RCON admins can use this command."); SendClientMessageToAll(-1,"All Players Have Been Kicked From The Server By An Admin."); for(new i = 0; i < MAX_PLAYERS; i++)) { if(!IsPlayerConnected(i)) continue; if(IsPlayerAdmin(i)) continue; Kick(i); } return 1; }
And no, copying someone else's code and pretending you were 'too late' does not count as 'helping'.
|
Yeah, but his question was "how to change all this to zcmd?". I just gave him an example of where to add the following line - 'CMD:kickall(playerid, params[])'.
Honestly, I didn't even read his code assuming that it would be working properly as he was just asking 'how to convert it to zcmd'. Anyways, I know it's my mistake, i'll check out other people's code properly before posting a reply, the next time.