mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
* Update Generic.hpp Adding some magazines * Update Police.hpp Adding Loot Group AmmoCivilian and removing magazines * Update Industrial.hpp Removing Sandbags, Wire and Tank Traps from normal Industrial spawn and moved them to Military Industrial- Lowering spawn chance of Planks, Consumable and Generic. Ive tested the new loot chances and they working fine. * Update Hangar.hpp Changing spawn chances of almost every item and adding PartEngine, PartGeneric, PartGlass to loot table. New hanger loot works good and feels much better than before. * Update Military.hpp Removing Loot Group Generic and Sandbags from Military and MilitarySpecial Loot. Adding Engine, Sandbags, Tank Traps, Wire and Loot Group Generic to MilitaryIndustrial. That works very well. If you looting baracks and finding most of the time sandbags and generic loot it is frustrating. Now it feels better and more balanced. * Update Military.hpp Updating loot chances
16 lines
341 B
C++
16 lines
341 B
C++
ZombiePolice[] =
|
|
{
|
|
{Loot_GROUP, 2, Consumable},
|
|
{Loot_GROUP, 3, AmmoCivilian},
|
|
{Loot_MAGAZINE, 2, ItemDocument},
|
|
{Loot_MAGAZINE, 1, ItemHotwireKit},
|
|
{Loot_MAGAZINE, 2, ItemComboLock},
|
|
{Loot_MAGAZINE, 3, HandRoadFlare}
|
|
};
|
|
|
|
ZombiePoliceViral[] =
|
|
{
|
|
{Loot_GROUP, 10, ZombiePolice},
|
|
{Loot_MAGAZINE, 1, ItemAntibiotic1}
|
|
};
|