how to make /ban command with this variable
#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


Messages In This Thread
how to make /ban command with this variable - by xFirex - 06.06.2013, 14:50
Re: how to make /ban command with this variable - by MA_proking - 06.06.2013, 14:59
Re: how to make /ban command with this variable - by xFirex - 06.06.2013, 15:06
Re: how to make /ban command with this variable - by MA_proking - 06.06.2013, 15:14

Forum Jump:


Users browsing this thread: 1 Guest(s)