SA-MP Forums Archive
y_ini not reading file. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: y_ini not reading file. (/showthread.php?tid=503160)



y_ini not reading file. - [WSF]ThA_Devil - 28.03.2014

pawn Код:
INI_ParseFile(string, "LoadFile_%s", true,  playerid);
string is valid file,
pawn Код:
forward LoadFile_data(playerid,name[],value[]);
public LoadFile_data(playerid,name[],value[])
{
    print("called");
    new mapPass[50];
    INI_String("Password",mapPass,50);
    printf("%s",mapPass);
    return 1;
}
and printf isn't being caled / printed to console at all.

thanks...