Jump to content

Black_Taipan

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by Black_Taipan

  1. 3 hours ago, arramus said:

    To delete all guards from loot, and they are only appearing on air supply drop containers, delete all of this in the loot.xml


     

        <insertBefore xpath="/lootcontainers/lootgroup[@name='groupApparelSuit']">
        <lootgroup name="petanimals">
            <item name="PetPig1"/>
            <item name="PetStag1"/>
            <item name="PetBoar1"/>
            <item name="PetBear1"/>
            <item name="PetWolf1"/>
            <item name="PetCoyote1"/>
            <item name="PetDoe1"/>
        </lootgroup>
        <lootgroup name="turretguards">
            <item name="TurretGuardSim1"/>
            <item name="GuardTurretDre1"/>
            <item name="GuardTurretFox1"/>
            <item name="GuardTurretLizzy1"/>
            <item name="GuardTurretBandit1"/>
            <item name="GuardTurretBanditFoxy1"/>
            <item name="TurretGuardLeader1"/>
            <item name="TurretGuardCompoundBowMan1"/>
            <item name="TurretGuardDarkstardragon1"/>
            <item name="TurretGuardJoJo1"/>
            <item name="TurretGuardLezabel1"/>
            <item name="TurretGuardOakraven1"/>    
            
        </lootgroup>    
        
        </insertBefore>
    
        <append xpath="/lootcontainers/lootcontainer[@name='airDrop']"> <!-- Supply Crate General, the normal airdrop -->
            <item group="petanimals" count="1,3" loot_prob_template="medLow"/>
            <item group="turretguards" count="1,3" loot_prob_template="medLow"/>        
        </append>

     

    To delete only the Human Guards but leave the Animal Guards, change it to look like this.
     

        <insertBefore xpath="/lootcontainers/lootgroup[@name='groupApparelSuit']">
        <lootgroup name="petanimals">
            <item name="PetPig1"/>
            <item name="PetStag1"/>
            <item name="PetBoar1"/>
            <item name="PetBear1"/>
            <item name="PetWolf1"/>
            <item name="PetCoyote1"/>
            <item name="PetDoe1"/>
        </lootgroup>   
        </insertBefore>
    
    
        <append xpath="/lootcontainers/lootcontainer[@name='airDrop']"> <!-- Supply Crate General, the normal airdrop -->
            <item group="petanimals" count="1,3" loot_prob_template="medLow"/>    
        </append>

     

    Since the Animal Guards are also appearing in the Trader loot...

    Change traders.xml to remove them.


     

        <insertBefore xpath="/traders/trader_item_groups/trader_item_group[@name='groupMeleeMods']">
        
            <trader_item_group name="petanimals">
                <item name="PetPig1"/>
                <item name="PetStag1"/>
                <item name="PetBoar1"/>
                <item name="PetBear1"/>
                <item name="PetWolf1"/>
                <item name="PetCoyote1"/>
                <item name="PetDoe1"/>            
            </trader_item_group>
            
        </insertBefore>
    
        <append xpath="/traders/trader_item_groups/trader_item_group[@name='traderAlways']">
            <item group="petanimals" count="1,5"/>        
        </append>

     

    That worked thank you very much!

  2. So I was trying to add this to my server for A21 but I wanted to remove the guards but no matter what I removed from the loot XML it would cause red log game breaking bugs if theres a very specific thing I need to do or if it doesn't work properly i would appreciate any form of help please and thank you. An example of how it needs to be removed would be greatly appreciated as idk if im dumb and dont know what im doing or if it cant be done without breaking the overall game.

  3. So i get the error when doing horde nights after gs150: Exception: item with the name ,meleeHandZombieAtrocity' not found!                To which it then NullReferenceException spams the log and makes it unplayable for me im just curious if this is a me issue and also i have not seen the screamer i just get this issue during some blood moons so ive been looking for a fix as im enjoying the mod greatly.

×
×
  • Create New...