Spawn infectious waterholes locally on each machine

Vanilla commits:

2d47c7250c

94a0bac524

44b7114129
This commit is contained in:
ebaydayz
2016-10-17 16:49:24 -04:00
parent 228ac99eb1
commit fffcf43bbb
46 changed files with 1576 additions and 1536 deletions

View File

@@ -0,0 +1,13 @@
private ["_ar","_rand_array","_rand"];
_ar = _this;
_rand_array = [];
while {count _ar > 0} do {
_rand = (count _ar);
_rand = floor (random _rand);
_rand_array set [count _rand_array, _ar select _rand];
_ar set [_rand, "randarray_del"];
_ar = _ar - ["randarray_del"];
sleep 0.001;
};
_rand_array