INI_WriteString bugged
#1

When I try to write a string the value of the string stays blank, for example i tried to use this one:
PHP код:
new INI:file INI_Open(pFile(playerid));
INI_WriteString(file,"Password","Test");
INI_Close(file); 
and it's shows me at the file:
PHP код:
Password 
Reply
#2

Add a tag.

pawn Код:
new INI:file = INI_Open(pFile(playerid));
INI_SetTag(file, "My_Tag");
INI_WriteString(file, "Password", "Test");
INI_Close(file);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)