/deposit and /withdraw not doing anything
#2

That code is a bit messed up, I tried to clean it up, check if it works:

pawn Code:
CMD:deposit(playerid,params[])
{
    new string[92];
    new type;
    if(sscanf(params, "d", type)) return SendClientMessage(playerid, -1, "[USAGE]: /deposit [amount]");
    if(type <= 0) return SendClientMessage(playerid, -1, "ERROR: Amount must be greater than zero.");
    if(GetPlayerMoney(playerid) >= type)
    {
        GivePlayerMoney(playerid, -type);
        BankInfo[playerid][pBankAccount] += type;
        format(string, sizeof(string), "INFO: You have successfully deposited $%d to your bank account.", type);
        SendClientMessage(playerid, 0xFFFFFFFF, string);
    }
    else SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: You do not have that much amount in your hand");

    return 1;
}

CMD:withdraw(playerid,params[])
{
    new string[92];
    new type;
    if(sscanf(params, "d", type)) return SendClientMessage(playerid, -1, "[USAGE]: /withdraw [amount]");
    if(type <= 0) return SendClientMessage(playerid, -1, "ERROR: Amount must be greater than zero.");
    if(BankInfo[playerid][pBankAccount] >= type)
    {
        BankInfo[playerid][pBankAccount] -= type;
        GivePlayerMoney(playerid, type);
        format(string, sizeof(string), "INFO: You have successfully withdrawn $%d from your bank account.", type);
        SendClientMessage(playerid, 0xFFFFFFFF, string);
    }
    else SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: You do not have that much amount in your account");
   
    return 1;
}
Reply


Messages In This Thread
/deposit and /withdraw not doing anything - by RLGaming - 15.09.2012, 00:25
Re: /deposit and /withdraw not doing anything - by KoczkaHUN - 15.09.2012, 00:38
Re: /deposit and /withdraw not doing anything - by RLGaming - 15.09.2012, 00:43
Re: /deposit and /withdraw not doing anything - by arvifilter - 15.09.2012, 00:50
Re: /deposit and /withdraw not doing anything - by KoczkaHUN - 15.09.2012, 00:58

Forum Jump:


Users browsing this thread: 1 Guest(s)