14.02.2010, 03:45
well this is for bans, but u can edit to work for almost all.
Add BanLog(String); in your /ban thingie.. w.e
forward BanLog(String[]);
public BanLog(String[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",String);
new File:hFile;
hFile = fopen("Logs/ban.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
return 1;
}
Add BanLog(String); in your /ban thingie.. w.e
forward BanLog(String[]);
public BanLog(String[])
{
new entry[256];
format(entry, sizeof(entry), "%s\n",String);
new File:hFile;
hFile = fopen("Logs/ban.log", io_append);
fwrite(hFile, entry);
fclose(hFile);
return 1;
}