24.02.2013, 13:13
i added /balance cmd
but i want add Total: $123123
i want they +handmoney and +bankmoney +house and Total: $$$$ any idea?
PHP код:
CMD:balance(playerid, params[])
{
format(fstr, sizeof(fstr), "{6A5ACD}Hand: $%d - Bank: $%d - House: $%d", GetPlayerCash(playerid), BankInfo[playerid][Balance],MAX_HOUSE_STORAGE);
SendClientMessage(playerid, YELLOW, fstr);
return true;
}
i want they +handmoney and +bankmoney +house and Total: $$$$ any idea?
PHP код:
CMD:balance(playerid, params[])
{
format(fstr, sizeof(fstr), "{6A5ACD}Hand: $%d - Bank: $%d - House: $%d - Total: $%d", GetPlayerCash(playerid), BankInfo[playerid][Balance],MAX_HOUSE_STORAGE, //what i need to add here?);
SendClientMessage(playerid, YELLOW, fstr);
return true;
}