Jump to content
nagyszebi07

Base and Vehicle decay time how to settings?

Recommended Posts

Hello

 

How to settings base and Vehicles decay time? 

Example:14 days 

 

Big Thanks! 

Share this post


Link to post
Share on other sites

exile_server_config/config.ccp

 

Spoiler

class Database 
        {
            // Remove all deleted items from the database after X days
            permanentlyDeleteTime = 3;
            
            // Remove all territories (and contructions + containers in it) that were not paid after X days
            territoryLifeTime = 30;

            // Remove all containers outside of territories that have not been used for X days
            // Example: Tents
            containerLifeTime = 10;

            // Remove all constructions outside of territories that are older than X days or not moved for X days 
            // Example: Work Benches
            constructionLifeTime = 2;

            // Remove all vehicles that were not moved/used for X days
            vehicleLifeTime = 30;
            
            // Set safe as abandoned
            abandonedTime = 7;
            
            // Deletes a base X days after the flag is stolen if the ransom money isn't paid
            stolenFlagLifeTime = 3;
            
            // Sets door & safe pins to 0000 and marks safes to abandoned X days after the flag is stolen if the ransom money isn't paid
            unlockLifeTime = 2;
        };
    };

 

  • Thanks 1

Share this post


Link to post
Share on other sites

×