đ ī¸Installation
['snowboard'] = { label = 'Snowboard', weight = 50, stack = false, allowArmed = false },
['present'] = { label = 'Present', weight = 50, stack = true, allowArmed = false },
CREATE TABLE IF NOT EXISTS `m_advent_calendar` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`char_id` varchar(50) NOT NULL,
`current_day` int(11) DEFAULT 1,
`last_claimed` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `char_id` (`char_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;
Last updated