29.01.2018, 11:20
i had created an stats system its not showing me dates help please
code here
code here
PHP код:
if (dialogid == DIALOG_BANKSTATES)
{
if (response)
{
new str[1080], str2[1080];
format(string, 50, "B_%s", playername);
new UYear, UMonth, UDay; getdate(UYear, UMonth, UDay);
new date[256];
format(date, sizeof(date), "%d-%d-%d", UYear, UMonth, UDay);
new tmmp[256], tem1[270], tem2[270], tmp3[270], tmp4[270];
new maxdep = dini_Int(AddDirFile(dir_bankfiles, string), "maxdep");
format(tem1, 10, "dstat_%d", maxdep);
format(tem2, 10, "wstat_%d", maxdep);
format(tmmp, 10, "sstat_%d", maxdep);
format(tmp2, sizeof(tmp2), "%s", dini_Int(AddDirFile(dir_bankfiles, string), tem1));
format(tmp3, sizeof(tmp3), "%s", dini_Int(AddDirFile(dir_bankfiles, string), tem2));
format(tmp4, sizeof(tmp4), "%s", dini_Int(AddDirFile(dir_bankfiles, string), tmmp));
format(str2, sizeof(str2), "%d\t%d\t%s\t%d", tmp2, tmp3, tmp4, date);
format(str, sizeof(str), "In\tOut\tRecipite\tDate\n%s", str2);
}
return 1;
}