Server crashes on player text
#8

Quote:
Originally Posted by Jefff
Посмотреть сообщение
I dont want logs but function
look here how it should be correct without crashing https://sampwiki.blast.hk/wiki/Fwrite
Код:
stock ChatLog(playerid, text[])
{
	 new
	 File:lFile = fopen("FreeRoam/Logs/Chat Log.txt", io_append),
	 logData[178],
	 fyear, fmonth, fday,
	 fhour, fminute, fsecond;

 	 getdate(fyear, fmonth, fday);
	 gettime(fhour, fminute, fsecond);

	 format(logData, sizeof(logData),"[%02d/%02d/%04d %02d:%02d:%02d] %s(%d): %s \r\n", fday, fmonth, fyear, fhour, fminute, fsecond, GetName(playerid), playerid, text);
	 fwrite(lFile, logData);

	 fclose(lFile);
	 return 1;
}

stock VipChatLog(playerid, text[])
{
	 new
	 File:lFile = fopen("FreeRoam/Logs/VIP Chat Log.txt", io_append),
	 logData[178],
	 fyear, fmonth, fday,
	 fhour, fminute, fsecond;

 	 getdate(fyear, fmonth, fday);
	 gettime(fhour, fminute, fsecond);

	 format(logData, sizeof(logData),"[%02d/%02d/%04d %02d:%02d:%02d] %s(%d): %s \r\n", fday, fmonth, fyear, fhour, fminute, fsecond, GetName(playerid), playerid, text);
	 fwrite(lFile, logData);

	 fclose(lFile);
	 return 1;
}

stock AdminChatLog(playerid, text[])
{
	 new
	 File:lFile = fopen("FreeRoam/Logs/Admin Chat Log.txt", io_append),
	 logData[178],
	 fyear, fmonth, fday,
	 fhour, fminute, fsecond;

 	 getdate(fyear, fmonth, fday);
	 gettime(fhour, fminute, fsecond);

	 format(logData, sizeof(logData),"[%02d/%02d/%04d %02d:%02d:%02d] (Admin Level: %d) %s(%d): %s \r\n", fday, fmonth, fyear, fhour, fminute, fsecond, PlayerInfo[playerid][pAdmin], GetName(playerid), playerid, text);
	 fwrite(lFile, logData);

	 fclose(lFile);
	 return 1;
}
Reply


Messages In This Thread
Server crashes on player text - by Fancy - 21.08.2015, 16:03
Re: Server crashes on player text - by Bingo - 21.08.2015, 16:04
Re: Server crashes on player text - by Fancy - 21.08.2015, 16:06
Re: Server crashes on player text - by Fancy - 21.08.2015, 16:22
Re: Server crashes on player text - by Jefff - 21.08.2015, 16:40
Re: Server crashes on player text - by Fancy - 21.08.2015, 16:42
Re: Server crashes on player text - by Jefff - 21.08.2015, 16:45
Re: Server crashes on player text - by Fancy - 21.08.2015, 18:08
Re: Server crashes on player text - by ThePhenix - 21.08.2015, 18:31
Re: Server crashes on player text - by Fancy - 21.08.2015, 19:22

Forum Jump:


Users browsing this thread: 3 Guest(s)