Currently Disabled features:

Dependencies

❌ Onesync Legacy will not work!

Installation

  1. Download and Install LuxuModules
  2. Download and Install LuxuCM in your resources folder
  3. Create Items
  4. Execute the SQL code inside the SQL folder
  5. Finished!

Items Setup

🖼️ Item Images

Database

CREATE TABLE IF NOT EXISTS `luxucm_warehouses` (
      `warehouse` int(11) NOT NULL,
      `owner` varchar(255) NOT NULL,
      `workers` longtext NOT NULL,
      `jobapplications` longtext NOT NULL,
      `guests` longtext NOT NULL,
      `miners` longtext NOT NULL,
      `statistics` longtext NOT NULL,
      `orders` longtext NOT NULL,
      `logs` longtext NOT NULL,
      PRIMARY KEY (`warehouse`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb3 COLLATE = utf8mb3_general_ci;

CREATE TABLE IF NOT EXISTS `luxucex_accounts` (
      `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
      `char_id` varchar(255) NOT NULL,
      `balance` bigint(20) NOT NULL DEFAULT 0,
      `crypto` longtext NOT NULL,
      `address` varchar(255) NOT NULL,
      PRIMARY KEY (`id`),
      UNIQUE KEY `player` (`char_id`) USING BTREE,
      KEY `char_id` (`char_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;