Little problem with kick
#1

Well im trying to get a SendCLientMessageToAll but I dont know sure how to configure it good with kick.

What im trying to do is:
/kick 2 Bye
(a message to all
"Playerid2 his name" has been kicked for: "reason" by administrator:"adminname"

We use ZCMD so please post a reply in ZCMD

Our current code:
pawn Код:
COMMAND:kick(playerid, params[])
{
    new PlayerToKick, Reason[128], ReasonMsg[128], Name[24];

    // Send the command to all admins so they can see it
    SendAdminText(playerid, "/kick", params);

    // Check if the player has logged in
    if (APlayerData[playerid][LoggedIn] == true)
    {
        // Check if the player's admin-level is at least 1
        if (APlayerData[playerid][PlayerLevel] >= 1)
        {
            if (sscanf(params, "us[128]", PlayerToKick, Reason)) SendClientMessage(playerid, 0xFF0000AA, "Usage: \"/kick <PlayerToKick> <Reason>\"");
            else
                if (IsPlayerConnected(PlayerToKick)) // If the player is a valid playerid (he's connected)
                {
                    // Get the name of the player who warned the player
                    GetPlayerName(playerid, Name, sizeof(Name));
                    // Send the warned player a message who kicked him and why he's been kicked
                    format(ReasonMsg, 128, "You have been kicked by %s %s", AdminLevelName[APlayerData[playerid][PlayerLevel]], Name);
                    SendClientMessage(PlayerToKick, 0xFF0000FF, ReasonMsg);
                    format(ReasonMsg, 128, "Reason: %s", Reason);
                    SendClientMessage(PlayerToKick, 0xFF0000FF, ReasonMsg);
                    // Kick the player
                    Kick(PlayerToKick);
                }
                else
                    SendClientMessage(playerid, 0xFF0000FF, "That player isn't online");
        }
        else
            return 0;
    }
    else
        return 0;

    // Let the server know that this was a valid command
    return 1;
}
Reply


Messages In This Thread
Little problem with kick - by SomebodyAndMe - 21.11.2011, 13:37
Re: Little problem with kick - by juraska - 21.11.2011, 13:50
Re: Little problem with kick - by SomebodyAndMe - 21.11.2011, 13:59
Re: Little problem with kick - by =WoR=G4M3Ov3r - 21.11.2011, 14:01
Re: Little problem with kick - by SomebodyAndMe - 21.11.2011, 14:03
Re: Little problem with kick - by juraska - 21.11.2011, 14:07

Forum Jump:


Users browsing this thread: 1 Guest(s)