10.01.2013, 16:41
Hi,How to make a banned logs? like dis
IngameName:
Banned By:
Banned On:
Reason:
IngameName:
Banned By:
Banned On:
Reason:
forward BanLog(string[]);
public BanLog(string[])
{
new entry[256];
format(entry, sizeof(entry), "%s\r\n",string);
new File:hFile;
hFile = fopen("Ban.log", io_append);
if (hFile)
{
fwrite(hFile, entry);
fclose(hFile);
}
}
...//your cmd
format(string,sizeof(string),"IngameName:%s\n,Banned By:%s\nBanned ON:%s"...
BanLog(string)
pawn Код:
|