[AJUDA]Erros inputtext.
#1

Olб galera do Forum SA-MP!

Estou aqui pedindo ajuda a vocкs para me ajudarem a resolver uns erros no sistema de banco que estou fazer para meu Servidor de Drift!

O Codigo:
pawn Код:
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
new string[256];

//bancocheckpoint
if(dialogid == DIALOGID+7)
{
if(response)
{
if(listitem == 0)
{
ShowPlayerDialog(playerid, DIALOGID+8, DIALOG_STYLE_INPUT, "Banco [GoD] - Sacar", "Digite a quantia do Saque abaixo:", "Sacar", "Cancelar");
}
if(listitem == 1)
{
ShowPlayerDialog(playerid, DIALOGID+9, DIALOG_STYLE_INPUT, "Banco [GoD] - Depositar", "Digite a quantia do deposito abaixo:", "Depositar", "Cancelar");
}
if(listitem == 2)
{
format(string,sizeof(string),"Vocк tem R$%s no banco!",DinheiroBanco[playerid]);
SendClientMessage(playerid, COR_CERTO, string);
}
}
}

//bancosacar
if(dialogid == DIALOGID+8)
{
if(inputtext > DinheiroBanco[playerid]) return SendClientMessage(playerid, COR_DINHEIRO,"Vocк nгo tem esse Dinheiro!");
{
DinheiroBanco[playerid] = -inputtext;
GivePlayerMoney(playerid, inputttext);
return true;
}}

//bancodepositar
if(dialogid == DIALOGID+9)
{
if(inputtext < 30) return SendClientMessage(playerid, COR_DINHEIRO, "Tem que Depositar no Minimo R$30");
{
if(inputtext > GetPlayerMoney(playerid)) return SendClientMessage(playerid, COR_DINHEIRO,"Voce nгo tem essa quantia para depositar");
{
DinheiroBanco[playerid] = +inputtext;
GivePlayerMoney(playerid, -inputtext);
return true;
}
}
}
return false;
}
Erros:
Код:
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(45) : error 033: array must be indexed (variable "inputtext")
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(47) : error 006: must be assigned to an array
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(48) : error 017: undefined symbol "inputttext"
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(55) : error 033: array must be indexed (variable "inputtext")
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(57) : error 033: array must be indexed (variable "inputtext")
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(59) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(59) : warning 215: expression has no effect
C:\Documents and Settings\Rafael\Desktop\caixagod.pwn(60) : error 035: argument type mismatch (argument 2)
Agradeзo desde jб!
Reply
#2

Extuda meu fs
http://forum.sa-mp.com/showthread.ph...177#post986177
tem umonte de inputts.
Reply
#3

onde tem os erros usa strval(inputtext)
Reply
#4

Obrigado DraKiNs deu certim aqui!

obrigado a vocк tambem garfield !
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)