⤵️Installation

Installation of mBaby Resource

STEP 1 - Drag And Drop

Put mBaby in resources folder.

STEP 2 - SQL Installation

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);

STEP 3 - Start The Script

Start in server.cfg ensure mBaby.

Last updated