Installation
Installation of mBaby Resource
Last updated
Installation of mBaby Resource
Last updated
Put mBaby in resources folder.
Insert SQL file to database.
DROP TABLE IF EXISTS `codem_baby`;
CREATE TABLE IF NOT EXISTS `codem_baby` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`identifier` varchar(90) DEFAULT NULL,
`data` longtext DEFAULT NULL,
KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('babystroller', 'Baby Stroller', 1, 0, 1),
('babytoys', 'Baby Toys', 1, 0, 1),
('babyvitamin', 'Baby Vitamin', 1, 0, 1),
('comfortdiaper', 'Comfort Diaper', 1, 0, 1),
('healthybabyfood', 'Healthy Baby Food', 1, 0, 1),
('healthybabymineral', 'Healthy Baby Mineral', 1, 0, 1);
['healthybabyfood'] = {['name'] = 'healthybabyfood', ['label'] = 'Healthy Baby Food', ['weight'] = 0, ['type'] = 'item', ['image'] = 'healthybabyfood.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Healthy Baby Food'},
['comfortdiaper'] = {['name'] = 'comfortdiaper', ['label'] = 'Comfort Diaper', ['weight'] = 0, ['type'] = 'item', ['image'] = 'comfortdiaper.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Comfort Diaper'},
['healthybabymineral'] = {['name'] = 'healthybabymineral', ['label'] = 'Healthy Baby Mineral', ['weight'] = 0, ['type'] = 'item', ['image'] = 'healthybabymineral.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Healthy Baby Mineral'},
['babyvitamin'] = {['name'] = 'babyvitamin', ['label'] = 'Baby Vitamin', ['weight'] = 0, ['type'] = 'item', ['image'] = 'babyvitamin.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Baby Vitamin'},
['babystroller'] = {['name'] = 'babystroller', ['label'] = 'Baby Stroller', ['weight'] = 0, ['type'] = 'item', ['image'] = 'babystroller.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Baby Stroller'},
['babytoys'] = {['name'] = 'babytoys', ['label'] = 'Baby Toys', ['weight'] = 0, ['type'] = 'item', ['image'] = 'babytoys.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Baby Toys'},
Start in server.cfg ensure mBaby.