Applications

File Path: shared/config.apps.lua

Example Application

["hq"] = {
    appid = 4,
    appname = "HQ",
    appiconid = "hq",
    description = "Manage the HQ and unlock new features",
    price = 20,
    requiresConnection = true,
    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)

Last updated