👾 Paid🖥️ Computer⚙️ ConfigurationsApplications

Applications

config.apps.lua
Config["Apps"] = {
    ["binunce"] = {
        appid = 1,
        appname = "Binunce",
        appiconid = "binunce",
        description = "Crypto transactions, exchange and more",
        price = 0,
        requiresConnection = true,
        disabled = false,
    },
    ["crack"] = {
        appid = 2,
        appname = "Smoke Crack",
        appiconid = "crack",
        description = "Ipconfig simplified",
        price = 3,
        requiresConnection = false,
        disabled = false,
    },
    ["drone"] = {
        appid = 3,
        appname = "Drone",
        appiconid = "drone",
        description = "Fly a drone",
        price = 0,
        requiresConnection = false,
        disabled = false,
    },
    ["hq"] = {
        appid = 4,
        appname = "HQ",
        appiconid = "hq",
        description = "Manage the HQ and unlock new features",
        price = 20,
        requiresConnection = true,
        disabled = false,
    },
    ["miner"] = {
        appid = 5,
        appname = "Miner",
        appiconid = "miner",
        description = "Mine cryptocurrency. Upgrade GPU on the rack to mine faster",
        price = 0,
        requiresConnection = false,
        disabled = false,
    },
    ["minerext"] = {
        appid = 6,
        appname = "MinerEXT",
        appiconid = "minerext",
        description = "Monitor and control your mining rig",
        price = 10,
        requiresConnection = false,
        disabled = false,
    },
    ["notes"] = {
        appid = 7,
        appname = "Notes",
        appiconid = "notes",
        description = "All your thoughts and ideas in one place",
        price = 0,
        requiresConnection = false,
        disabled = false,
    },
    ["salty"] = {
        appid = 8,
        appname = "Salty",
        appiconid = "salty",
        description = "Scan for accessible networks",
        price = 5,
        requiresConnection = false,
        disabled = false,
    },
    ["wally"] = {
        appid = 9,
        appname = "Wally",
        appiconid = "wally",
        description = "Your crypto wallet",
        price = 5,
        requiresConnection = true,
        disabled = false,
    },
    ["noid"] = {
        appid = 10,
        appname = "Noid",
        appiconid = "noid",
        description = "Pay more for safer crypto security",
        price = 10,
        requiresConnection = true,
        disabled = false,
    },
    ["sniff"] = {
        appid = 11,
        appname = "Sniff",
        appiconid = "sniff",
        description = "Hack into other PCs and steal their crypto",
        price = 20,
        requiresConnection = true,
        disabled = false,
    },
    ["coinrush"] = {
        appid = 12,
        appname = "CoinRush",
        appiconid = "coinrush",
        description = "Buy and sell crypto for profit",
        price = 20,
        requiresConnection = false,
        disabled = false,
    },
}
  • appid (number): The ID of the application (Applications are ordered upwards by this id)

  • appname (string): The display name of the application

  • appiconid (string): The id of the used SVG icon. Future custom apps won’t support SVG’s, but just normal images.

  • description (string): The short text displayed as app description in the App Store.

  • price (number): The amount of BDCOIN the app will cost in order to be installed.

  • requiresConnection (boolean): Whether or not the app requires WiFi connection.

  • disabled (boolean): Whether or not the app is disabled (Will appear as ”??????” in the App Store)