summaryrefslogtreecommitdiffstats
path: root/Server/Config/Config_LargeTown2.sqf
blob: c9df7bc2a5c476009655200dfbb9d13ec64238b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Private ['_probability','_range','_teams','_town','_townName'];

_town = _this Select 0;
_townName = _this Select 1;

_range = 600;
if (Count _this > 3) then {_range = _this Select 3};

_teams = ['large2'] Call Compile preprocessFile "Server\Functions\Server_SelectResTeam.sqf";

_probability = 60;

[_town,_townName,20,80,_range,_teams,_probability] ExecVM "Common\Init\Init_Location.sqf";