19.01.2011, 04:41
Ehm, try instead of '{key}={value}' this: '{value} {key}'.
Example:
instead of
I ever had an gamemode (frpg / slrpg) that had '%d pAdmin'. This system (script) looks the same as that login system (slrpg). So try that :P
And also,
For making that file, try using "io_append" , and not "io_write". Maybe that'll help too
Example:
Код:
format(var, 32, "%d pAdmin", PlayerInfo[playerid][pAdmin]);
Код:
format(var, 32, "pAdmin=%d", PlayerInfo[playerid][pAdmin]);
And also,
Код:
new File: hFile = fopen(string3, io_write);