Please check the config file and configurate the things.
Copy CREATE TABLE ` brutal_hunting ` (
`identifier` varchar ( 128 ) NOT NULL ,
`licence` varchar ( 128 ) NOT NULL ,
`type` varchar ( 128 ) NOT NULL ,
`date` varchar ( 128 ) NOT NULL ,
`hunterid` varchar ( 128 ) NOT NULL ,
`level` int ( 128 ) NOT NULL ,
`xp` int ( 128 ) NOT NULL );
Copy INSERT INTO `items` ( `name` , `label` , `weight` , `rare` , `can_remove` ) VALUES
( 'leather' , 'Leather' , 1 , 0 , 1 ),
( 'meat' , 'Meat' , 1 , 0 , 1 ),
( 'feather' , 'Feather' , 1 , 0 , 1 ),
( 'coyote_leather' , 'Coyote Leather' , 1 , 0 , 1 ),
( 'panther_leather' , 'Panther Leather' , 1 , 0 , 1 ),
( 'antler' , 'Antler' , 1 , 0 , 1 );
Copy ['leather'] = {['name'] = 'leather', ['label'] = 'Leather', ['weight'] = 1, ['type'] = 'item', ['image'] = 'leather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Leather'},
['meat'] = {['name'] = 'meat', ['label'] = 'Meat', ['weight'] = 1, ['type'] = 'item', ['image'] = 'meat.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Meat'},
['feather'] = {['name'] = 'feather', ['label'] = 'Feather', ['weight'] = 1, ['type'] = 'item', ['image'] = 'feather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Feather'},
['coyote_leather'] = {['name'] = 'coyote-leather', ['label'] = 'Coyote Leather', ['weight'] = 1, ['type'] = 'item', ['image'] = 'coyote_leather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Coyote Leather'},
['panther_leather'] = {['name'] = 'panther-leather', ['label'] = 'Panther Leather', ['weight'] = 1, ['type'] = 'item', ['image'] = 'panther_leather.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Panther Leather'},
['antler'] = {['name'] = 'antler', ['label'] = 'Antler', ['weight'] = 1, ['type'] = 'item', ['image'] = 'antler.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Antler'},