summaryrefslogtreecommitdiffstats
path: root/Client/PVFunctions/VoteForCommander.sqf
blob: 7bbb18e5382286d2a793fec4a1871c50f6f08d16 (plain)
1
2
3
4
5
6
7
8
9

private ["_voteTime"];
if (votePopUp) then {
	Private ["_voteTime"];
	_voteTime = 0;
	waitUntil {_voteTime = WF_Logic getVariable Format ["%1CommanderVoteTime",sideJoinedText];!isNil "_voteTime"};
	if (_voteTime > 0 && !voted) then {CreateDialog "RscMenu_Voting"};
	if (voted) then {voted = false};
};