hi every1, i'm from brazil, so sry for my bad english,
PHP Code:
[...]
new arquivo[62]; // arquivo = file (portuguese...)
new usrname[32];
get_user_name(id,usrname,31)
replace_all(usrname,31,":","_00");
replace_all(usrname,31,">","_01");
replace_all(usrname,31,"<","_02");
replace_all(usrname,31,"/","_03");
replace_all(usrname,31,"?","_04");
format(arquivo,sizeof(arquivo),"addons/amxmodx/data/users/%s.txt",usrname)
/*and here i wanna read the file, are 4 lines, i tried to do it:
new data[4][31];
new ln;
read_file(arquivo,0,data[0],30,ln);
read_file(arquivo,1,data[1],30,ln);
etc...
but "data[x]" hasn't the content of the line
*/
[...]
help me please

thx