09.03.2010, 12:56
I have this code:
It's a bank dialog system, when someone types /withdraw will appear this, but I have this errors, too:
pawn Код:
if(response)
{
if(dialogid == 90000)
{
if(strlen(inputtext))
{
if(inputtext > PlayerInfo[playerid][pAccount])
{
SendClientMessage(playerid, COLOR_WHITE, "You don't have that money in your account!");
return 1;
}
ConsumingMoney[playerid] = 1;
GivePlayerCash(playerid,inputtext);
PlayerInfo[playerid][pAccount]=PlayerInfo[playerid][pAccount]-inputtext;
}
}
}
pawn Код:
error 033: array must be indexed (variable "inputtext") x2
error 035: argument type mismatch (argument 2)