change to zcmd
#6

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.
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: 2 Guest(s)