Lux admin help
#1

Hello, can anyone told me how to creat vip kick for lux admin system so i mean
dcmd_vkick
but i fail any answers plz?
Reply
#2

Hey Boom.
He mean, we want create a cmd for vip players in LuxAdmin. Cmd is /vkick. That cmd is for vip level 1.
so vip use /vkick [id] [reason] and player get kicked.
Reply
#3

Yeah Thanks
Reply
#4

Check the LuxAdmin topic... it says all
Reply
#5

I check but only cmd VIPList ! , i need help
Reply
#6

If you want this command to be for all VIP members, then you want to use this:
Kick(playerid); (I think)
Reply
#7

lmfao, you need to add parameters, else that will kick the player who uses it.

pawn Код:
dcmd_kick(playerid, params[])
{
    new
        pID,
        reason[24],
        string[128]
    ;

    #if !defined ADMIN_REJECT_MSG
    if(GetPVarInt(playerid, "Admin") < 3) return 0;
    #else
    if(GetPVarInt(playerid, "Admin") < 3) return SendError(playerid, ADMIN_REJECT_MSG);
    #endif

    else if(sscanf(params, "us", pID, reason)) SendUsage(playerid, "/kick [playerid] [reason]");
    else if(pID == INVALID_PLAYER_ID) return SendError(playerid, "Invalid playerid.");
    else if(pID == playerid) return SendError(playerid, "You cant kick yourself.");
    else if(GetPVarInt(pID, "Admin") > 1) return SendError(playerid, "You cannot use this command on admins");
    else
    {
        format(string, sizeof(string), "%s has been kicked by %s. (REASON: %s)", ReturnPlayerName(pID), ReturnPlayerName(playerid), reason);
        SendClientMessageToAll(COLOR_YELLOW, string);
        Kick(pID);
    }
    return 1;
}
Thats my kick command, change it around see what you can do with it.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)