22.05.2010, 18:20
It is still bad.
EDIT: I solved the problem, I had to replace this:
With this:
EDIT: I solved the problem, I had to replace this:
pawn Code:
...
format(string, sizeof(string), "jatekosok/%s.ini", sendername);
new File: UserFile = fopen(string, io_read);
if (UserFile)
{
...
pawn Code:
...
format(string, sizeof(string), "jatekosok/%s.ini", sendername);
if (fexist(string))
{
...