Please note that this software file is protected by DMCA protection and its illegal sale or distribution is prohibited.
You can see the short installation here. There are all explanations in Config.
CREATE TABLE IF NOT EXISTS `bp_dronelist` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(50) DEFAULT NULL,
`data` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
CREATE TABLE IF NOT EXISTS `bp_tablet` (
`playerid` longtext NOT NULL,
`tabletdata` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`tabletdata`))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Each inventory or system has its own unique item addition feature.
You need to add 6 items. It should be with the item name you see as drones from the config.
------- drone --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
drone1 = { name = 'drone1', label = 'Police Drone', weight = 10, type = 'item', image = 'drone1.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'A Useable Drone' },
drone2 = { name = 'drone2', label = 'Blue Drone', weight = 10, type = 'item', image = 'drone2.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'A Useable Drone' },
drone3 = { name = 'drone3', label = 'M Red Drone', weight = 10, type = 'item', image = 'drone3.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'A Useable Drone' },
drone4 = { name = 'drone4', label = 'Yellow Drone', weight = 10, type = 'item', image = 'drone4.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'A Useable Drone' },
drone5 = { name = 'drone5', label = 'Orange Drone', weight = 10, type = 'item', image = 'drone5.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'A Useable Drone' },
drone6 = { name = 'drone6', label = 'M Black Drone', weight = 10, type = 'item', image = 'drone6.png', unique = true, useable = true, shouldClose = true, combinable = nil, description = 'A Useable Drone' },
ensure drones_stream
ensure bp_drone