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


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