change to zcmd
#5

Quote:
Originally Posted by Adityz
Посмотреть сообщение
You just need to change te first line to this - CMD:kickall(playerid, params[])

pawn Код:
CMD:kickall(playerid, params[])
{
    for(new i = 0; i < MAX_PLAYERS; i++))
    {
        if(!IsPlayerAdmin(i))
        {
            if(IsPlayerConnected(i))
            {
                SendClientMessageToAll(-1,"All Players Have Been Kicked From The Server By An Admin.");
                Kick(i);              
                return 1;
            }
            else return SendClientMessage(playerid,-1,"There Are No Players Connected.");
        }
    }
   return 1;
}
Edit - wow Namer's fast..
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'.
Reply


Messages In This Thread
change to zcmd - by Shazwan - 27.05.2014, 08:47
Re: change to zcmd - by JeaSon - 27.05.2014, 08:49
Re: change to zcmd - by Adityz - 27.05.2014, 08:51
Re: change to zcmd - by Shazwan - 27.05.2014, 09:01
Re: change to zcmd - by Threshold - 27.05.2014, 09:05
Re: change to zcmd - by Adityz - 27.05.2014, 09:57

Forum Jump:


Users browsing this thread: 1 Guest(s)