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