18.08.2012, 20:49
Deu seguintes erros e avisos ...
Code onde esta o erro ...
pawn Код:
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(70) : error 035: argument type mismatch (argument 1)
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(70) : error 035: argument type mismatch (argument 1)
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(73) : warning 213: tag mismatch
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(76) : warning 213: tag mismatch
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(78) : warning 213: tag mismatch
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(80) : warning 213: tag mismatch
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(82) : warning 213: tag mismatch
C:\Users\Mauricio\Desktop\SAMPSERVER\gamemodes\Inactived.pwn(84) : warning 213: tag mismatch
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
pawn Код:
forward SalveHours(playerid);
public SalveHours(playerid)
{
new ano,month,dia,horas,minutos,segundos,LineForFile[50],PFile;
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;
}