mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 21:29:59 +03:00
16 lines
465 B
Plaintext
16 lines
465 B
Plaintext
private ["_buy","_number"];
|
|
|
|
// combine previous selections with next
|
|
dayz_combination = format["%1%2",dayz_combination,(_this select 3)];
|
|
_number = 0;
|
|
|
|
{player removeAction _x} forEach s_player_combi;s_player_combi = [];
|
|
|
|
for "_x" from 1 to 10 do {
|
|
_buy = player addAction [str(_number), "\z\addons\dayz_code\actions\vault_combination_final.sqf",str(_number), 99, true, false, "",""];
|
|
s_player_combi set [count s_player_combi,_buy];
|
|
_number = _number + 1;
|
|
};
|
|
|
|
|