Fixed spawn items in vehicles

This commit is contained in:
Zepheris 2018-03-03 15:02:29 -07:00
parent c7312b9e05
commit 3a4a1e4799

View File

@ -2299,4 +2299,31 @@ class CfgXM8
onLoad = "ExAdClient\XM8\Apps\BRAmaRecipes\onLoad.sqf";
onOpen = "ExAdClient\XM8\Apps\BRAmaRecipes\onOpen.sqf";
};
};
};
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"
};
};
};