[Ajuda] Sistema salvamento
#12

Quote:
Originally Posted by paulor
Посмотреть сообщение
pawn Код:
forward SalveHours(playerid);
public SalveHours(playerid)
{
    new ano,month,dia,horas,minutos,segundos,LineForFile[50],PFile[128];
    getdate(ano, month, dia);
    gettime(horas,minutos,segundos);

    GetPlayerName(playerid,DName,sizeof(DName));
    format(PFile, sizeof(PFile), "/ServerData/Players/%s", DName);//comeзa aqui linha 70
   
    format(LineForFile, sizeof(LineForFile), "%02d", ano);
    fwrite(PFile, LineForFile);
   
    format(LineForFile, sizeof(LineForFile), "%02d", month);
    fwrite(PFile, LineForFile);
    format(LineForFile, sizeof(LineForFile), "%02d", dia);
    fwrite(PFile, LineForFile);
    format(LineForFile, sizeof(LineForFile), "%02d", horas);
    fwrite(PFile, LineForFile);
    format(LineForFile, sizeof(LineForFile), "%02d", minutos);
    fwrite(PFile, LineForFile);
    format(LineForFile, sizeof(LineForFile), "%02d", segundos);
    fwrite(PFile, LineForFile);
    return true;

}
Vou dar um alerta, isso ae pra ler dps nгo vai ser possнvel, pois as funзхes do samp vc tem que quebrar linhas..
Ex:

pawn Код:
format(LineForFile, sizeof(LineForFile), "%02d", month);
fwrite(PFile, LineForFile);
format(LineForFile, sizeof(LineForFile), "%02d", dia);
fwrite(PFile, LineForFile);
Supondo que o valor de month seja 05 e de dia seja 02, ficarб assim no arquivo: 0502
Eu so esqueci de algumas coisa nele

Porem arrumei 2 erro surgiu 6 das linhas
pawn Код:
C:\Documents and Settings\Maurilio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(73) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Maurilio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(76) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Maurilio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(78) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Maurilio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(80) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Maurilio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(82) : error 035: argument type mismatch (argument 1)
C:\Documents and Settings\Maurilio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(84) : error 035: argument type mismatch (argument 1)
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


6 Errors.
Linhas
pawn Код:
forward SalveHours(playerid);
public SalveHours(playerid)
{
    new ano,month,dia,horas,minutos,segundos,Don[50],PFile[50];
    getdate(ano, month, dia);
    gettime(horas,minutos,segundos);

    GetPlayerName(playerid,DName,sizeof(DName));
    format(PFile, sizeof(PFile), "/ServerData/Players/%s", DName);
   
    format(Don, sizeof(Don), "%02d", ano);
    fwrite(PFile, Don);//erro aqui
   
    format(Don, sizeof(Don), "%02d\r\n", month);
    fwrite(PFile, Don);//erro aqui
    format(Don, sizeof(Don), "%02d\r\n", dia);
    fwrite(PFile, Don);//erro aqui
    format(Don, sizeof(Don), "%02d\r\n", horas);
    fwrite(PFile, Don);//erro aqui
    format(Don, sizeof(Don), "%02d\r\n", minutos);
    fwrite(PFile, Don);//erro aqui
    format(Don, sizeof(Don), "%02d\r\n", segundos);
    fwrite(PFile, Don);//erro aqui
    return true;

}
Reply


Messages In This Thread
Sistema salvamento - by Don_Speed - 18.08.2012, 13:02
Re: Sistema salvamento - by paulor - 18.08.2012, 14:21
Re: Sistema salvamento - by darkxdll - 18.08.2012, 15:08
Re: Sistema salvamento - by Jason` - 18.08.2012, 15:19
Re: Sistema salvamento - by darkxdll - 18.08.2012, 15:59
Re: Sistema salvamento - by caoraivoso3 - 18.08.2012, 16:47
Re: Sistema salvamento - by Don_Speed - 18.08.2012, 20:35
Re: Sistema salvamento - by Maklister - 18.08.2012, 20:39
Re: Sistema salvamento - by Don_Speed - 18.08.2012, 20:49
Re: Sistema salvamento - by leonardo1434 - 18.08.2012, 20:57
Re: Sistema salvamento - by paulor - 18.08.2012, 21:18
Re: Sistema salvamento - by Don_Speed - 19.08.2012, 13:23
Re: Sistema salvamento - by Don_Speed - 19.08.2012, 14:53

Forum Jump:


Users browsing this thread: 2 Guest(s)