[AYUDA]Crash en linux y no en windows
#6

pawn Код:
public GuardarEn(filename[],text[])
{
    new File:Lfile;
    new filepath[256];
    new string[256];
    new year, month, day;
    new hour, minute, second;

    getdate(year, month, day);
    gettime(hour, minute, second);
    format(filepath,sizeof(filepath),"/Logs/%s.txt", filename);
    Lfile = fopen(filepath,io_append);
    if(Lfile)
    {
    format(string,sizeof(string),"[%02d/%02d/%02d | %02d:%02d:%02d] %s\r\n",day,month,year,hour,minute,second, text);
    fwrite(Lfile,string);
    fclose(Lfile);
    }
    return 1;
}
Reply


Messages In This Thread
[AYUDA]Crash en linux y no en windows - by Fluid016 - 12.05.2012, 23:51
Respuesta: [AYUDA]Crash en linux y no en windows - by TheChaoz - 14.05.2012, 00:06
Respuesta: [AYUDA]Crash en linux y no en windows - by Fluid016 - 14.05.2012, 00:35
Respuesta: [AYUDA]Crash en linux y no en windows - by TheChaoz - 14.05.2012, 00:49
Respuesta: [AYUDA]Crash en linux y no en windows - by Fluid016 - 14.05.2012, 21:24
Respuesta: [AYUDA]Crash en linux y no en windows - by Jovanny - 14.05.2012, 21:55

Forum Jump:


Users browsing this thread: 1 Guest(s)