Installation guide
Script download: Click here
Download the script and unpack the folder.
Put the script folder to your server.
Start the script in the server.cfg. (ensure brutal_hunting)
Check the config file.
Please check the config file and configurate the things.
Core = 'QBCORE', -- ESX / QBCORE
Target = 'qb-target', -- 'default' / 'oxtarget' / 'qtarget' / 'qb-target'
IdentifierType = 'core', -- 'core' / 'steam' / 'license' / 'discord' | 'core' = default core identifier
BrutalNotify = true, -- You can set up your own notify >> cl_utils.lua
ETC...
Upload the SQL.
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);
Create the items.
ESX
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);
QBCORE
['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'},
Items images
Last updated
Was this helpful?