forked from Simnation/Main
13 lines
No EOL
488 B
SQL
13 lines
No EOL
488 B
SQL
/*
|
|
Only for ESX with "weight" for items
|
|
For QBCore check documentation
|
|
*/
|
|
INSERT IGNORE `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
|
|
('hacking_computer', 'Hacking computer', 1, 0, 1),
|
|
('thermal_charge', 'Thermal charge', 1, 0, 1),
|
|
('gas_mask', 'Gas mask', 1, 0, 1),
|
|
('drill', 'Drill', 1, 0, 1),
|
|
('gold_ingot', 'Gold ingot', 1, 0, 1),
|
|
('diamonds_box', 'Diamonds box', 1, 0, 1),
|
|
('painting', 'Painting', 1, 0, 1),
|
|
('lockpick', 'Lockpick', 1, 0, 1); |