02.05.2014, 12:33
Quote:
You have tryd to put a loop on yours stocks functions ?
Anyway you don't open no one INI:file in your stock function.. try to declare, the function INI_Open(); |
I'm using INI_Open and INI_Close I'll add it to the Thread for others to note.
pawn Код:
#define F1PATH "/Factions/LSPD.ini"
forward SaveF1();
public SaveF1()
{
new INI:File = INI_Open(F1PATH);
INI_WriteString(File, "Rank1", FacInfo[1][fRank1]);
INI_Close(File);
}
Plus, the loading isn't the problem, i mention it in the thread incase it causes the saving to make problems.