This mod has been deprecated. Please upgrade to:

DayZ Life V2 Client (RP Framework)

DayZ Life V2 Server (RP Framework)

Paycheck:


{
    "version": "2",
    "cop": {}, // deprecated, will removed in version 3 
    "medic": {}, // deprecated, will removed in version 3
    "civil": {}, // deprecated, will removed in version 3
    "cops": [ // Start of rank config, you can add so many you want per job
        {  // first rank
            "jobName": "Cop", // Never touch this value. It is needed internally
            "amount": 100, // paycheck
            "onlineMinutesForPay": 10,  
            "rank": "Rekrut", // Display name
            "isFallbackRank": 1 // you MUST have only one with value 1, all other ranks must have here the value 0. This rank MUST be the lowest rank
        }
    ],
    "medics": [
        {
            "jobName": "Medic", // Never touch this value. It is needed internally
            "amount": 10, // paycheck
            "onlineMinutesForPay": 10,
            "rank": "Rekrut", // Display name
            "isFallbackRank": 1 // you MUST have only one with value 1, all other ranks must have here the value 0. This rank MUST be the lowest rank
        }
    ],
    "civils": [
        {
            "jobName": "Civil", // Never touch this value. It is needed internally
            "amount": 10, // paycheck
            "onlineMinutesForPay": 10,
            "rank": "Rekrut", // Display name
            "isFallbackRank": 1 // you MUST have only one with value 1, all other ranks must have here the value 0. This rank MUSTbe the lowest rank
        }
    ],
    "armies": [
        {
            "jobName": "Army", // Never touch this value. It is needed internally
            "amount": 10, // paycheck
            "onlineMinutesForPay": 10,
            "rank": "Rekrut", // Display name
            "isFallbackRank": 1 // you MUST have only one with value 1, all other ranks must have here the value 0. This rank MUSTbe the lowest rank
        }
    ]
}