Files
AltisLifeFramework/Altis_Life.Altis/dialog/function/fn_gangBankResponse.sqf
Benjamin Kyd c8014ec81e initial commit
2019-06-05 00:45:50 +01:00

16 lines
435 B
Plaintext

#include "..\..\script_macros.hpp"
/*
File: fn_gankBankResponse.sqf
Author: DomT602
Description:
Receives response from the server.
*/
params [
["_value",-1,[0]]
];
if (remoteExecutedOwner != ([2,HC_Life] select life_HC_isActive)) exitWith {};
if (_value isEqualTo -1) exitWith {};
hint format [localize "STR_ATM_WithdrawSuccessG",[_value] call life_fnc_numberText];
CASH = CASH + _value;
[] call life_fnc_atmMenu;