Other

config.other.lua
Config["Noid"] = {
    ResetTime = {    -- Server must be online and running at this time as it uses cron job
        Hour = 21,   -- 0-23
        Minute = 31, -- 0-59
    },
 
    SecurityTiers = {
        [1] = {
            name = "Security #1",
            description = {
                "Instant malware protection.",
                "Advanced firewall protection.",
                "Your PC will be 1x more difficult to hack.",
            },
            price = 5,
        },
        [2] = {
            name = "Security",
            description = {
                "Instant malware protection.",
                "Advanced firewall protection.",
                "Your PC will be 2x more difficult to hack.",
            },
            price = 15,
        },
        [3] = {
            name = "Security",
            description = {
                "Instant malware protection.",
                "Advanced firewall protection.",
                "Your PC will be 3x more difficult to hack.",
            },
            price = 30,
        },
        [4] = {
            name = "Security",
            description = {
                "Instant malware protection.",
                "Advanced firewall protection.",
                "Your PC will be 4x more difficult to hack.",
            },
            price = 50,
        },
        [5] = {
            name = "Security",
            description = {
                "Instant malware protection.",
                "Advanced firewall protection.",
                "Your PC will be 5x more difficult to hack.",
            },
            price = 150,
        },
    }
}
 
Config["Sniff"] = {
    ScanCost = 5, -- Cost of scanning for availalbe computers to hack
    HackCost = 5, -- Cost of hacking a computer
 
    -- Chance of stealing crypto from a computer (in percentage)
    -- After successful hack, a random number between 0 and 100 will be generated and compared to this value to determine if the hack was successful or not
    StealChance = 100,
    MaxStealAmount = 5, -- Max amount of crypto that can be stolen from a computer (in percentage depending on the computer's crypto amount)
}