how to make /ban command with this variable
#1

hello, can you show the code how to make /ban command for this variable,tnx

pawn Код:
public OnPlayerConnect(playerid)
{
    if(PlayerInfo[playerid][GuVipBanned] == 1)
    {
    Kick(playerid);
    }
Reply
#2

Quote:
Originally Posted by xFirex
Посмотреть сообщение
hello, can you show the code how to make /ban command for this variable,tnx

pawn Код:
public OnPlayerConnect(playerid)
{
    if(PlayerInfo[playerid][GuVipBanned] == 1)
    {
    Kick(playerid);
    }
pawn Код:
CMD:ban(playerid,params[])
{
    new id;
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,"You are not Admin");
    if(sscanf(params, "u", id)) return SendClientMessage(playerid, -1, "USAGE: /ban [id]");
    PlayerInfo[id][GuVipBanned] = 1;
    new str[128];
    new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
    GetPlayerName(playerid, name, sizeof(name));
    format(str,sizeof(str),"You have been banned by %s [%d]", name, playerid);
    SendClientMessage(id, -1, str);
    Kick(id);
    return 1;
}
Reply
#3

how to make with reason ?
Reply
#4

Quote:
Originally Posted by xFirex
Посмотреть сообщение
how to make with reason ?
pawn Код:
CMD:ban(playerid,params[])
{
    new id,reason[30];
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid,-1,"You are not Admin");
    if(sscanf(params, "us[30]", id,reason)) return SendClientMessage(playerid, -1, "USAGE: /ban [id] [reason]");
    PlayerInfo[id][GuVipBanned] = 1;
    new str[128];
    new name[MAX_PLAYER_NAME+1], string[24+MAX_PLAYER_NAME+1];
    GetPlayerName(playerid, name, sizeof(name));
    format(str,sizeof(str),"You have been banned by %s [%d] Reason: %s", name, playerid, reason);
    SendClientMessage(id, -1, str);
    Kick(id);
    return 1;
}
I think this will work...
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)