1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
private ["_i","_index","_index2","_name","_time","_upgrades"];
_time = _this select 0;
_index = _this select 1;
_index2 = _this select 2;
_name = _this select 3;
isUpgrading = true;
hint Format [localize "STR_WF_Upgrade_Start",_name];
WFBE_RequestChangeScore = ['SRVFNCREQUESTCHANGESCORE',[player,score player + ('WFBE_COMMANDERUPGRADESCORE' Call GetNamespace)]];
publicVariable 'WFBE_RequestChangeScore';
if (!isMultiplayer || (isServer && local player)) then {['SRVFNCREQUESTCHANGESCORE',[player,score player + ('WFBE_COMMANDERUPGRADESCORE' Call GetNamespace)]] Spawn HandleSPVF};
_i = _time;
while {_i > 0} do {
_i = _i - 1;
upgradingTime = _i;
sleep 1;
};
_upgrades = (sideJoinedText) Call GetSideUpgrades;
_upgrades Set [_index,_index2 + 1];
Call Compile Format ["%1Upgrades = _upgrades; publicVariable '%1Upgrades';",sideJoinedText];
upgradingTime = -1;
isUpgrading = false;
hint Format [localize "STR_WF_Upgrade_Complete",_name,_index2 + 1];
WFBE_LocalizeMessage = [sideJoined,'CLTFNCLOCALIZEMESSAGE',['UpgradeComplete',_index,(_index2 + 1)]];
publicVariable 'WFBE_LocalizeMessage';
if (!isMultiplayer || (isServer && local player) || local player) then {[sideJoined,'CLTFNCLOCALIZEMESSAGE',['UpgradeComplete',_index,(_index2 + 1)]] Spawn HandlePVF};
sleep 0.3;
WFBE_RequestSpecial = ['SRVFNCREQUESTSPECIAL',['upgrade',sideJoined]];
publicVariable 'WFBE_RequestSpecial';
if (!isMultiplayer || (isServer && local player)) then {['SRVFNCREQUESTSPECIAL',['upgrade',sideJoined]] Spawn HandleSPVF};
|