Files
AltisLifeFramework/life_server/Functions/Systems/fn_federalUpdate.sqf
Benjamin Kyd c8014ec81e initial commit
2019-06-05 00:45:50 +01:00

14 lines
316 B
Plaintext

/*
File: fn_federalUpdate.sqf
Author: Bryan "Tonic" Boardwine
Description:
Uhhh, adds to it?
*/
private "_funds";
for "_i" from 0 to 1 step 0 do {
uiSleep (30 * 60);
_funds = fed_bank getVariable ["safe",0];
fed_bank setVariable ["safe",round(_funds+((count playableUnits)/2)),true];
};