[Ajuda] inputtext em dof2 file exists. - 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] inputtext em dof2 file exists. (
/showthread.php?tid=648606)
inputtext em dof2 file exists. -
GuiKommander - 25.01.2018
Eu sabia dessa funзгo tipo, Se o arquivo ja tava criado retornava falando que jб tava criado, Mais eu nгo lembrei dessa funзгo ai do dof2 file exists com o inputtext? '-'
PHP код:
#define PASTA_CODIGOS "Codigos/%s.ini"
if(DOF2_FileExists(PASTA_CODIGOS(inputtext)))
Re: inputtext em dof2 file exists. -
F1N4L - 25.01.2018
Dependendo a finalidade, por que nгo?
Re: inputtext em dof2 file exists. -
GuiKommander - 25.01.2018
Quote:
Originally Posted by F1N4L
Dependendo a finalidade, por que nгo?
|
Como que verifica dof2 file exists com input man? comenta atoa nгo.
Re: inputtext em dof2 file exists. -
F1N4L - 25.01.2018
Quote:
Originally Posted by GuiKommander
Como que verifica dof2 file exists com input man? comenta atoa nгo.
|
Ok...
Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
if(dialogid == DIALOG_CODIGOS)
{
if(response)
{
if(DOF2_FileExists(inputtext))
{
//
}
}
}
return true;
}
Re: inputtext em dof2 file exists. -
AdrianoStk - 25.01.2018
Uma das maneiras й...
PHP код:
new Str[128];
format(Str, sizeof(Str),"Codigos/%s.ini", inputtext);
if(DOF2_FileExists(Str))
{
}
Re: inputtext em dof2 file exists. -
F1N4L - 25.01.2018
Nossa, desculpa mesmo.
O cуdigo й tгo merda que nem reparei na cagada!
Sim, com certeza isso nem existe. Seja lб quem escreveu isso, deveria parar com pawn.
Re: inputtext em dof2 file exists. -
GuiKommander - 25.01.2018
Quote:
Originally Posted by AdrianoStk
Uma das maneiras й...
PHP код:
new Str[128];
format(Str, sizeof(Str),"Codigos/%s.ini", inputtext);
if(DOF2_FileExists(Str))
{
}
|
Era isso msm, vlw.