[Ajuda]Verificar arquivos existentes/с existentes - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda]Verificar arquivos existentes/с existentes (
/showthread.php?tid=312889)
[Ajuda]Verificar arquivos existentes/с existentes -
DrTHE - 23.01.2012
topo do gm:
pawn Код:
new aname[MAX_PLAYER_NAME];
em OnPlayerConnect
pawn Код:
if(Logado[playerid] == 0)
{
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(fexist(file))
{
//funзoes existir o "file"
}
if(!fexist(file))
{
//funзoes se nao existir o "file"
}
}
O problema й que sу exibe as funcoes do if(fexist(file))
e nao do if(!fexist(file))
tem algo errado ai?
Re: [Ajuda]Verificar arquivos existentes/с existentes -
paulor - 23.01.2012
Tente assim.
pawn Код:
if(Logado[playerid] == 0)
{
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
if(!fexist(file))
{
//funзoes se nao existir o "file
}
else
{
//funзoes existir o "file"
}
}
Re: [Ajuda]Verificar arquivos existentes/с existentes -
DrTHE - 23.01.2012
valeu era um problema no Onplayerconnect que envolvia abrir/fechar arquivos '-'
Re: [Ajuda]Verificar arquivos existentes/с existentes -
paulor - 23.01.2012
hum.