You can now access staff and report chats through: https://luxu.chat/

Added Blip menu, Entity controls and coordinates display.

Added more settings.

Improved some locales.

Improved duty toggling.

Fixed some clothing issues.

Fixed some bugs.

How to update:

Update your config.json and add the new properties.

Replace the files bellow.

Install the new database table

If you have problems with staff, please delete all entries from luxu_admin_group_members and luxu_admin_groups and restart the script

⚙️ config.json new options:

  "external_chat": {
    "enabled": true
  },

New SQL

CREATE TABLE IF NOT EXISTS `luxu_admin_blips` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `label` varchar(255) NOT NULL,
  `coords` longtext NOT NULL,
  `display` int(10) unsigned NOT NULL,
  `scale` float NOT NULL,
  `shortRange` tinyint(1) NOT NULL,
  `color` int(10) unsigned NOT NULL,
  `sprite` int(10) unsigned NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURTIME(),
  PRIMARY KEY (`id`)
) ENGINE=InnoDB;

📂 Files changed