Jump to content

No zombie magazine drops?


Recommended Posts

Has a mod been made( could one be made) to remove all magazine/skill books from the zombies? I like playing with increased zombie drop chance, but with it comes way to many skill books, especially on horde night, usually by day 14 almost all skills are maxed out. I tried setting them to very low in the config files, but still get way to many for my liking.

Link to comment
Share on other sites

<remove xpath="//lootgroup[@name='groupZpackReg']/item[@group='groupZpackReg02']"/>

<remove xpath="//lootgroup[@name='groupZpackStrong']/item[@group='groupZpackStrong02']"/>

<remove xpath="//lootgroup[@name='groupZpackBoss']/item[@group='groupZpackBoss02']"/>

 

Link to comment
Share on other sites

On 9/7/2024 at 8:42 PM, BFT2020 said:
<remove xpath="//lootgroup[@name='groupZpackReg']/item[@group='groupZpackReg02']"/>

<remove xpath="//lootgroup[@name='groupZpackStrong']/item[@group='groupZpackStrong02']"/>

<remove xpath="//lootgroup[@name='groupZpackBoss']/item[@group='groupZpackBoss02']"/>

 

these lines, with the items i am looking to remove inserted, would stop them from dropping?

Link to comment
Share on other sites

On 9/8/2024 at 11:42 AM, BFT2020 said:
<remove xpath="//lootgroup[@name='groupZpackReg']/item[@group='groupZpackReg02']"/>

<remove xpath="//lootgroup[@name='groupZpackStrong']/item[@group='groupZpackStrong02']"/>

<remove xpath="//lootgroup[@name='groupZpackBoss']/item[@group='groupZpackBoss02']"/>

 

Aren't you missing the item group allbooksscaled .

 

Wouldn't this remove the other line as well or am I miss reading it

Oh I see just replace the item group with the booksscaled  in each remove 

Link to comment
Share on other sites

3 hours ago, stallionsden said:

Aren't you missing the item group allbooksscaled .

 

Wouldn't this remove the other line as well or am I miss reading it

Oh I see just replace the item group with the booksscaled  in each remove 

 

That is simply removing the lootgroup with any books.   If they want to keep the perk books but remove magazines, then they would need to remove modify it some more to remove magazines but not perk books.  So when the bags are dropped, group 2 in each of the bags (which has the books / magazines) does not exist anymore.


 

<!-- *** Zpack_Reg -->
<lootgroup name="groupZpackReg01">
    <item group="groupScrapUncommon" loot_prob_template="high"/>
    <item name="resourceCobblestones" count="10,50" loot_prob_template="high"/>
    <item name="resourceGlue" count="1,2" loot_prob_template="high"/>
    <item group="groupMedicalUncommon" loot_prob_template="high"/>
    <item group="groupDrinksUncommon" loot_prob_template="high"/>
    <item group="groupFoodUncommon" loot_prob_template="high"/>
    <item name="resourceDuctTape" count="1,2" loot_prob_template="med"/>
    <item name="resourceMechanicalParts" count="1,2" loot_prob_template="veryLow"/>
    <item name="resourceAcid" count="1" loot_prob_template="veryLow"/>
</lootgroup>

<lootgroup name="groupZpackReg02">
    <item group="booksAllScaled" loot_prob_template="medHigh"/>
    <item group="groupChallengeRewardSkillMagazinesAll" loot_prob_template="high"/>
</lootgroup>

<lootgroup name="groupZpackReg03">
    <item group="groupArmorParts" loot_prob_template="med"/>
    <item group="groupCraftingRare" loot_prob_template="med"/>
    <item group="groupArmorPartsChests" loot_prob_template="low"/>
    <item group="groupArmorScaled" loot_prob_template="medHigh"/>
    <item group="groupToolsTiered" loot_prob_template="medHigh"/>
</lootgroup>

<lootgroup name="groupZpackReg04">
    <item group="groupRareToolsTiered" loot_prob_template="high"/>
    <item group="groupWeaponsAllScaled" loot_prob_template="high"/>
    <item group="groupModAllScaled" loot_prob_template="med"/>
    <item name="casinoCoin" count="200,400" loot_prob_template="med"/>
    <item name="oldCash" count="200,400" loot_prob_template="med"/>
    <item group="groupMedicalRare" loot_prob_template="medHigh"/>
    <item group="groupTreasureMaps" loot_prob_template="low"/>
    <item name="modArmorNightVision" loot_prob_template="veryLow"/>
    <item name="modArmorHelmetLight" loot_prob_template="veryLow"/>
</lootgroup>

<lootgroup name="groupZpackReg" count="all">
    <item group="groupAmmoLarge" count="1"/>
    <item group="groupZpackReg01" count="1"/>
    <item group="groupZpackReg02" count="1"/>
    <item group="groupZpackReg03" loot_prob_template="med" force_prob="true"/>
    <item group="groupZpackReg04" loot_prob_template="low" force_prob="true"/>
</lootgroup>


 

8 hours ago, Jlane409 said:

these lines, with the items i am looking to remove inserted, would stop them from dropping?

 

This should remove any books or magazines from zombie loot bags if I wrote it up correctly.

Edited by BFT2020 (see edit history)
Link to comment
Share on other sites

Just now, BFT2020 said:

 

That is simply removing the lootgroup with any books.   If they want to keep the perk books but remove magazines, then they would need to remove modify it some more to remove magazines but not perk books.  So when the bags are dropped, group 2 in each of the bags (which has the books / magazines) does not exist anymore.

argh ok ty got ya

 

Link to comment
Share on other sites

16 hours ago, BFT2020 said:

 

That is simply removing the lootgroup with any books.   If they want to keep the perk books but remove magazines, then they would need to remove modify it some more to remove magazines but not perk books.  So when the bags are dropped, group 2 in each of the bags (which has the books / magazines) does not exist anymore.


 

<!-- *** Zpack_Reg -->
<lootgroup name="groupZpackReg01">
    <item group="groupScrapUncommon" loot_prob_template="high"/>
    <item name="resourceCobblestones" count="10,50" loot_prob_template="high"/>
    <item name="resourceGlue" count="1,2" loot_prob_template="high"/>
    <item group="groupMedicalUncommon" loot_prob_template="high"/>
    <item group="groupDrinksUncommon" loot_prob_template="high"/>
    <item group="groupFoodUncommon" loot_prob_template="high"/>
    <item name="resourceDuctTape" count="1,2" loot_prob_template="med"/>
    <item name="resourceMechanicalParts" count="1,2" loot_prob_template="veryLow"/>
    <item name="resourceAcid" count="1" loot_prob_template="veryLow"/>
</lootgroup>

<lootgroup name="groupZpackReg02">
    <item group="booksAllScaled" loot_prob_template="medHigh"/>
    <item group="groupChallengeRewardSkillMagazinesAll" loot_prob_template="high"/>
</lootgroup>

<lootgroup name="groupZpackReg03">
    <item group="groupArmorParts" loot_prob_template="med"/>
    <item group="groupCraftingRare" loot_prob_template="med"/>
    <item group="groupArmorPartsChests" loot_prob_template="low"/>
    <item group="groupArmorScaled" loot_prob_template="medHigh"/>
    <item group="groupToolsTiered" loot_prob_template="medHigh"/>
</lootgroup>

<lootgroup name="groupZpackReg04">
    <item group="groupRareToolsTiered" loot_prob_template="high"/>
    <item group="groupWeaponsAllScaled" loot_prob_template="high"/>
    <item group="groupModAllScaled" loot_prob_template="med"/>
    <item name="casinoCoin" count="200,400" loot_prob_template="med"/>
    <item name="oldCash" count="200,400" loot_prob_template="med"/>
    <item group="groupMedicalRare" loot_prob_template="medHigh"/>
    <item group="groupTreasureMaps" loot_prob_template="low"/>
    <item name="modArmorNightVision" loot_prob_template="veryLow"/>
    <item name="modArmorHelmetLight" loot_prob_template="veryLow"/>
</lootgroup>

<lootgroup name="groupZpackReg" count="all">
    <item group="groupAmmoLarge" count="1"/>
    <item group="groupZpackReg01" count="1"/>
    <item group="groupZpackReg02" count="1"/>
    <item group="groupZpackReg03" loot_prob_template="med" force_prob="true"/>
    <item group="groupZpackReg04" loot_prob_template="low" force_prob="true"/>
</lootgroup>


 

 

This should remove any books or magazines from zombie loot bags if I wrote it up correctly.

Okay, now I understand it. I will have to give it a shot, your the man!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...