🛠ī¸Installation

Run the follow SQL:

You have an option in config.lua called Config.AutoDatabase if you are not familiar with databases.

CREATE TABLE IF NOT EXISTS `m_afksystem_players` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `char_id` varchar(50) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `char_id` (`char_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;

Last updated