Hello all. I have some issues which I don`t understand. So take a look:
pawn Код:
InsertLog("Administrator %s has given "#mTEAM1" money! [ Amount: %d $ ]", pName[playerid]);
stock InsertLog(Text2[])
{
new Text[150];
getdate(Year, Month, Day);
gettime(Hour, Minute, Second);
format(Text,150,"[%02d/%02d/%d][%02d:%02d:%02d] %s", Day, Month, Year, Hour, Minute, Second, Text2);
dini_Set("AdminLog",Text);
return 1;
}
PHP код:
new str[128];
format(str,sizeof(str),"Administrator %s has given "#mTEAM1" money! [ Amount: %d $ ]", pName[playerid]);
InsertLog(str);