diff --git a/mpmissions/Exile.Altis/config.cpp b/mpmissions/Exile.Altis/config.cpp index 72820b8..9212b40 100644 --- a/mpmissions/Exile.Altis/config.cpp +++ b/mpmissions/Exile.Altis/config.cpp @@ -2299,4 +2299,31 @@ class CfgXM8 onLoad = "ExAdClient\XM8\Apps\BRAmaRecipes\onLoad.sqf"; onOpen = "ExAdClient\XM8\Apps\BRAmaRecipes\onOpen.sqf"; }; -}; \ No newline at end of file +}; + +class SpawnVehicleItems{ + /** + * Vehicles in the world + */ + class WorldVehicles{ + /* + * Allow(1) or disable(0) Items in Spawned vehicles + * kinda self explanitory + */ + vehicleItemsAllowed = 1; + /* + * Set the maximum Items per Vehicle to + * kinda self explanitory + */ + maximumItemsPerVehicle = 5; + /* + * Array of allowedItems + * kinda self explanitory + */ + allowedItems[] = { + "Exile_Item_ToiletPaper", + "Exile_Item_PlasticBottleEmpty", + "Exile_Item_Can_Empty" + }; + }; +}; \ No newline at end of file