diff --git a/Server_Install_Pack/@epochhive/addons/a3_epoch_server_settings.pbo b/Server_Install_Pack/@epochhive/addons/a3_epoch_server_settings.pbo index 5dc635ec..7a2a0f81 100644 Binary files a/Server_Install_Pack/@epochhive/addons/a3_epoch_server_settings.pbo and b/Server_Install_Pack/@epochhive/addons/a3_epoch_server_settings.pbo differ diff --git a/Sources/epoch_server_settings/EpochEvents/CarnivalSpawner.sqf b/Sources/epoch_server_settings/EpochEvents/CarnivalSpawner.sqf index 96ba8471..ad4baaf6 100644 --- a/Sources/epoch_server_settings/EpochEvents/CarnivalSpawner.sqf +++ b/Sources/epoch_server_settings/EpochEvents/CarnivalSpawner.sqf @@ -1,3 +1,12 @@ +/* + Carnival Event + by Aaron Clark - EpochMod.com + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. + http://creativecommons.org/licenses/by-nc-nd/4.0/ + Improvements and or bugfixes and other contributions are welcome via the github: + https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settings/EpochEvents/CarnivalSpawner.sqf +*/ + _ferrisPosition = [epoch_centerMarkerPosition, 0, EPOCH_dynamicVehicleArea, 10, 0, 4000, 0] call BIS_fnc_findSafePos; if ((count _ferrisPosition) == 2) then{ _item = createVehicle["ferrisWheel_EPOCH", _ferrisPosition, [], 0.0, "CAN_COLLIDE"]; @@ -14,4 +23,4 @@ if ((count _ferrisPosition) == 2) then{ // _marker setMarkerText "Ferris"; _marker setMarkerColor "ColorOrange"; }; -}; \ No newline at end of file +}; diff --git a/Sources/epoch_server_settings/EpochEvents/ContainerSpawner.sqf b/Sources/epoch_server_settings/EpochEvents/ContainerSpawner.sqf index 6ca4cad4..cbfbcb1f 100644 --- a/Sources/epoch_server_settings/EpochEvents/ContainerSpawner.sqf +++ b/Sources/epoch_server_settings/EpochEvents/ContainerSpawner.sqf @@ -1,3 +1,11 @@ +/* + Shipping Containter Event + by Aaron Clark - EpochMod.com + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. + http://creativecommons.org/licenses/by-nc-nd/4.0/ + Improvements and or bugfixes and other contributions are welcome via the github: + https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settings/EpochEvents/ContainterSpawner.sqf +*/ _cargoPosition = [epoch_centerMarkerPosition, 0, EPOCH_dynamicVehicleArea, 10, 0, 4000, 1] call BIS_fnc_findSafePos; if ((count _cargoPosition) == 2) then{ _item = createVehicle["Cargo_Container", _cargoPosition, [], 0.0, "CAN_COLLIDE"]; @@ -8,4 +16,4 @@ if ((count _cargoPosition) == 2) then{ // _marker setMarkerText "Container"; _marker setMarkerColor "ColorOrange"; }; -}; \ No newline at end of file +}; diff --git a/Sources/epoch_server_settings/EpochEvents/EarthQuake.sqf b/Sources/epoch_server_settings/EpochEvents/EarthQuake.sqf index 9561dfd5..e4df7b1f 100644 --- a/Sources/epoch_server_settings/EpochEvents/EarthQuake.sqf +++ b/Sources/epoch_server_settings/EpochEvents/EarthQuake.sqf @@ -1,4 +1,11 @@ - +/* + Earthquake and Mineral Deposit Event + by Aaron Clark - EpochMod.com + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. + http://creativecommons.org/licenses/by-nc-nd/4.0/ + Improvements and or bugfixes and other contributions are welcome via the github: + https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settings/EpochEvents/Earthquake.sqf +*/ _position = [epoch_centerMarkerPosition, 0, EPOCH_dynamicVehicleArea, 10, 0, 1000, 0] call BIS_fnc_findSafePos; if ((count _position) == 2) then{ _plyrsNearEpicenter = _position nearEntities[["Epoch_Male_F", "Epoch_Female_F"], 1000]; @@ -21,4 +28,4 @@ if ((count _position) == 2) then{ }; }; }; -}; \ No newline at end of file +}; diff --git a/Sources/epoch_server_settings/EpochEvents/PlantSpawner.sqf b/Sources/epoch_server_settings/EpochEvents/PlantSpawner.sqf index 4fb07b6a..f361b329 100644 --- a/Sources/epoch_server_settings/EpochEvents/PlantSpawner.sqf +++ b/Sources/epoch_server_settings/EpochEvents/PlantSpawner.sqf @@ -1,3 +1,12 @@ +/* + Plant Spawn Event + by Aaron Clark - EpochMod.com + This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. + http://creativecommons.org/licenses/by-nc-nd/4.0/ + Improvements and or bugfixes and other contributions are welcome via the github: + https://github.com/EpochModTeam/Epoch/tree/master/Sources/epoch_server_settings/EpochEvents/PlantSpawner.sqf +*/ + _plantPosition = [epoch_centerMarkerPosition, 0, EPOCH_dynamicVehicleArea, 10, 0, 4000, 0] call BIS_fnc_findSafePos; if ((count _plantPosition) == 2) then{ @@ -14,4 +23,4 @@ if ((count _plantPosition) == 2) then{ _marker setMarkerColor "ColorGreen"; }; -}; \ No newline at end of file +};