01.06.2010, 03:07
Fuck, kay, I fixed it but now I have a new problem.
When I enter any number, It takes the money from me and instantly closes the dialog box. Help please?
When I enter any number, It takes the money from me and instantly closes the dialog box. Help please?
pawn Код:
if(dialogid==6)
{
if(!response)return 0;
if(strval(inputtext) > PlayerInfo[playerid][pCash]) {
SendClientMessage(playerid, COLOR_RED, "You cannot deposit more money that you atcually have!");
}
PlayerInfo[playerid][pCash] = PlayerInfo[playerid][pCash] - strval(inputtext);
AntiHack(playerid, -strval(inputtext));
PlayerInfo[playerid][pAccount] = PlayerInfo[playerid][pAccount] + strval(inputtext);
}