đ ī¸Installation
['snowboard'] = {
['name'] = 'snowboard',
['label'] = 'Snowboard',
['weight'] = 300,
['type'] = 'item',
['image'] = 'snowboard.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
['present'] = {
['name'] = 'present',
['label'] = 'Present',
['weight'] = 300,
['type'] = 'item',
['image'] = 'present.png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = ''
},
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