Medical fees
#7

Well, My mistake i forgot to do -= medfee. But i added it now and tested.

It works like this.

It works good when i have less than 50k in bank and more than 50k on player's hand. it works good. here.

But when i have more than 50k in bank so it takes money from player's hand and bank also. it Should takes money from bank only.

PHP код:
if(pInfo[playerid][pBankMoney] < 50000)
    {
          new 
string2[256];
          new 
wealth GetPlayerCash(playerid) + pInfo[playerid][pBankMoney];
          new 
medfee = (12*wealth)/100;
          
GivePlayerCashEx(playerid,-medfee);
          
format(stringsizeof(string), "%s (%d) has paid $%d in medical fees.",GetName(playerid),playeridmedfee);
          
SendClientMessageToAll(COLOR_CYAN,string);
          
format(string2sizeof(string2), "You have died. The hospital has charged you $%d in medical fees.",medfee);
          
SendClientMessage(playeridCOLOR_CYANstring2);
    }
    else if(
pInfo[playerid][pBankMoney] >= 50000)
    {
          new 
string2[256], string3[256];
          new 
wealth GetPlayerCash(playerid) + pInfo[playerid][pBankMoney];
          new 
medfee = (12*wealth)/100;
          
pInfo[playerid][pBankMoney] -= medfee;
          
format(stringsizeof(string), "%s (%d) has paid $%d in medical fees.",GetName(playerid),playeridmedfee);
          
SendClientMessageToAll(COLOR_CYAN,string);
          
format(string2sizeof(string2), "You have died. The hospital has charged you $%d in medical fees. You have used your bank account to paid your medical fees.",medfee);
          
SendClientMessage(playeridCOLOR_CYANstring2);
          
format(string3sizeof(string3), "Now, your total balance is: $%d",pInfo[playerid][pBankMoney]);
          
SendClientMessage(playeridCOLOR_CYANstring3);
    } 
new wealth = GetPlayerCash(playerid) + pInfo[playerid][pBankMoney];

I'm using this because i want it count hands and bank money and take medical fees from it. But i want it should remove money from bank if bank has more than 50k.
Reply


Messages In This Thread
Medical fees - by STONEGOLD - 21.06.2015, 01:07
Re: Medical fees - by STONEGOLD - 21.06.2015, 01:38
Re: Medical fees - by Banana_Ghost - 21.06.2015, 05:06
Re: Medical fees - by Dusan01 - 21.06.2015, 08:28
Re: Medical fees - by STONEGOLD - 21.06.2015, 09:19
Re: Medical fees - by Dusan01 - 21.06.2015, 09:25
Re: Medical fees - by STONEGOLD - 21.06.2015, 10:04
Re: Medical fees - by Dusan01 - 21.06.2015, 10:17

Forum Jump:


Users browsing this thread: 1 Guest(s)