11.02.2019, 01:03
(
Последний раз редактировалось wearLy; 11.02.2019 в 09:59.
)
PHP код:
#define MAX_COMBUSTIVEL 70
#define VALOR_COMBUSTIVEL 3
new quantCombustivel = strval(inputtext), string[64],
completarTanque = MAX_COMBUSTIVEL - Dados[playerid][pGasosa]
;
if (quantCombustivel >= completarTanque) quantCombustivel = completarTanque;
new quantia = quantCombustivel * VALOR_COMBUSTIVEL;
if (GetPlayerMoney(playerid) < quantia) return SendClientMessage(playerid, -1, "Vocк nгo tem dinheiro para colocar combustнvel.");
if (quantCombustivel > 70 || quantCombustivel < 1) return SendClientMessage(playerid, -1, "A quantidade de combustнvel deve ser de 1 б 70 litros.");
format(string, 64, "Vocк abasteceu %d litros de combustнvel por $%d", quantCombustivel, quantia);
SendClientMessage(playerid, -1, string);
Dados[playerid][pGasosa] += quantCombustivel;
if (Dados[playerid][pGasosa] > 70) return Dados[playerid][pGasosa] = 70, false;
Retirada[playerid] = 0, Avisado[playerid] = false;
Dados[playerid][pDinheiro] -= quantia;
TogglePlayerControllable(playerid, true);
return true;