29.07.2018, 23:02
alguem sabe me dizer o que esta de errado nesse codigo?
esta dando esse warning:
codigo:
esta dando esse warning:
PHP код:
C:\Users\igorm\Desktop\BPS.pwn(15708 -- 15710) : warning 202: number of arguments does not match definition
PHP код:
if(dialogid == menucash1)
{
if (response)
{
format(Fala,sizeof(Fala),"Codigos/%s.ini",inputtext);
format(Fala2,sizeof(Fala2),"Codigos2/%s.ini",inputtext);
if(dini_Exists(Fala))
{
new Total=dini_Int(Fala,"Quantidade")*1000;
ShowPlayerDialog(playerid, 0, DIALOG_STYLE_INPUT, "Ativaзгo do seu Cash", //warning nessa alinha
"{FFFFFF}Parabйns, Vocк acaba de receber %d em Cash!.\n\
Vocк pode estб usando ele para comprar varios beneficios no /menucash.", "", "Prosseguir",Total); // atй essa...
PlayerInfo[playerid][pCasher]+=Total;
format(string,sizeof(string),"%s recebeu %d Cash!",PlayerName(playerid),Total);
BPFLogs("RecebeuCash", string);
dini_Remove(Fala);
return 1;
}