Little help with Bank withdraw please
#3

Try this code:

pawn Код:
if(dialogid == DIALOG_WITHDRAW)
    {
    if(response)
    {
    switch(listitem)
    {
    case 0:
    {
    if(!isnumeric(inputtext)) return SendClientMessage(playerid, -1, "Please only type numbers only");
    if(strval(inputtext) > pInfo[playerid][BMoney]) return SendClientMessage(playerid, -1, "You do not have enough money in your bank account");
    pInfo[playerid][BMoney] = (pInfo[playerid][BMoney] - strval(inputtext));
    GivePlayerMoney(playerid, strval(inputtext));
    format(ustr, sizeof ustr, "You have token out $%i", strval(inputtext));
    SendClientMessage(playerid, -1, ustr);
    }
    }
    }
    return 1;
    }
Reply


Messages In This Thread
Little help with Bank withdraw please - by LeXuZ - 01.01.2015, 18:49
Re: Little help with Bank withdraw please - by ball - 01.01.2015, 21:29
Re: Little help with Bank withdraw please - by Boot - 01.01.2015, 21:38
Re: Little help with Bank withdraw please - by LeXuZ - 01.01.2015, 23:41
Re: Little help with Bank withdraw please - by LeXuZ - 03.01.2015, 18:50

Forum Jump:


Users browsing this thread: 1 Guest(s)