Offline ban
#1

pawn Код:
CMD:oban(playerid,params[])
{
    new string[124],string1[124];
    if(isnull(params)) return ShowUsageMessage(playerid,"/oban [playername]");
    format(string,sizeof(string),"Users/%s.ini",params);
    if(fexist(string))
    {
        new INI:file = INI_Open(string);
        INI_WriteInt(file,"Banned",1);
        INI_Close(file);
        format(string1,sizeof(string1),"You have banned %s.",params);
        SendClientMessage(playerid,-1,string1);
    }
    else SendClientMessage(playerid,-1,"Account not found");
    return 1;
}
How can i make this ban the ip saved in the file?

pInfo[playerid][IP]

Thanks
Reply


Messages In This Thread
Offline ban - by tyler12 - 31.08.2012, 12:22
Re: Offline ban - by Riddick94 - 31.08.2012, 12:47
Re: Offline ban - by tyler12 - 31.08.2012, 12:55
Re: Offline ban - by Kirollos - 31.08.2012, 14:41
Re: Offline ban - by tyler12 - 31.08.2012, 14:44
Re: Offline ban - by Kirollos - 31.08.2012, 14:58

Forum Jump:


Users browsing this thread: 1 Guest(s)