blob: 890850e2d276bf30cc64831f79f787bb7246b0cf (
plain)
1
2
3
4
5
6
7
8
9
|
Private["_blist","_side","_sideValue"];
_sideValue = _this select 0;
_blist = _this select 1;
gameOver = true;
_side = east;
if (_sideValue == WESTID) then {_side = west};
[_side,_blist] ExecVM "Client\Client_EndGame.sqf";
|