diff --git a/changeLog.txt b/changeLog.txt new file mode 100644 index 0000000..712b3f6 --- /dev/null +++ b/changeLog.txt @@ -0,0 +1,17 @@ +================================================================================= +V28-V31 (27-04-2016) +================================================================================= +Altereed a few eventhandlers + +Fixed multiple static spawns so they are independent of each other + +================================================================================= +V27 (26-04-2016) +================================================================================= +Added the option fully control the gear assigned to bandit and survivor units + +Added the option for helicopters as public transport, the heli travels between traders and lands for about 60 seconds. Setting SC_occupyTransportClass to a helicopter classname will switch it over to using a helicopter, if you want to continue using the land vehicle set SC_occupyTransportClass to a land vehicle. + +Added the option to set the maximum crew (crew count will be a random number between the max and min). The applies for all AI vehicles. + +Added a separate SC_VehicleClassToUseRare list of vehicles which spawn 10% of the time in place of the standard SC_VehicleClassToUse list. \ No newline at end of file diff --git a/initServer.sqf b/initServer.sqf index d4d0b49..6179cff 100644 --- a/initServer.sqf +++ b/initServer.sqf @@ -24,7 +24,7 @@ SC_occupationVersion = "v31 (27-04-2016)"; { diag_log format ["[OCCUPATION]:: Occupation %2 Giving the server time to start before starting [OCCUPATION] (%1)",time,SC_occupationVersion]; waitUntil { !(isNil "DMS_MinMax_Y_Coords") }; - + sleep 10; diag_log format ["[OCCUPATION MOD]:: Occupation %2 Loading Config at %1",time,SC_occupationVersion]; diff --git a/scripts/occupationLog.sqf b/scripts/occupationLog.sqf index 40c5f7e..f7aadab 100644 --- a/scripts/occupationLog.sqf +++ b/scripts/occupationLog.sqf @@ -2,11 +2,16 @@ _logDetail = _this select 0; -if(SC_infiSTAR_log && !isNil "INFISTARVERSION") then +infiSTARinstalled = true; +if(isNil "INFISTARVERSION") then { SC_infiSTAR_log = false; }; + +if(SC_infiSTAR_log) then { ['A3_EXILE_OCCUPATION',_logDetail] call FNC_A3_CUSTOMLOG; } else { diag_log _logDetail; -}; \ No newline at end of file +}; + +infiSTAR \ No newline at end of file