ESX • QBCore • Qbox compatible
Instant download
Updates included
Discord support
Secure checkout
Installation Instructions for gs_tape
Follow these steps to properly install and configure your new resource:
-
Download the Resource
- Go to portal.cfx.re
-
Navigate to Assets > Granted Assets >
gs_tape - Download the resource
-
Extract the Files
-
Open the downloaded
.zipfile -
Inside, you'll find a folder named
gs_tape -
Move the entire
gs_tapefolder into your desired server resources folder (e.g.,/resources/[scripts])
-
Open the downloaded
-
Add to Server Configuration
- Open your
server.cfg -
Add the following line:
ensure gs_tape
- Open your
-
Restart the Server
- Restart your FiveM server (Important!)
-
Configure the Script (Optional)
- Navigate to
gs_tape/config.lua - Edit the configuration options to fit your server's needs
- Navigate to
Inventory Items
Installation Instructions
Add the following items to your ox_inventory/data/items.lua
file:
['Police Tape (USA)'] = {
label = 'tape_usa',
weight = 100,
server = {
export = 'gs_tape.Police Tape (USA)',
},
},
['Police Tape (UK)'] = {
label = 'tape_uk',
weight = 100,
server = {
export = 'gs_tape.Police Tape (UK)',
},
},
['Police Tape (Germany)'] = {
label = 'tape_de',
weight = 100,
server = {
export = 'gs_tape.Police Tape (Germany)',
},
},
['Police Tape (France)'] = {
label = 'tape_fr',
weight = 100,
server = {
export = 'gs_tape.Police Tape (France)',
},
},
['Police Tape (Netherlands)'] = {
label = 'tape_nl',
weight = 100,
server = {
export = 'gs_tape.Police Tape (Netherlands)',
},
},
['Police Tape (Australia)'] = {
label = 'tape_aus',
weight = 100,
server = {
export = 'gs_tape.Police Tape (Australia)',
},
},
['Police Tape (Poland)'] = {
label = 'tape_pol',
weight = 100,
server = {
export = 'gs_tape.Police Tape (Poland)',
},
},
['Police Tape (Spain)'] = {
label = 'tape_sp',
weight = 100,
server = {
export = 'gs_tape.Police Tape (Spain)',
},
},
['Police Tape (General)'] = {
label = 'tape_general',
weight = 100,
server = {
export = 'gs_tape.Police Tape (General)',
},
},
Execute the following SQL query to add the items to the database:
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (USA)', 'tape_usa', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (UK)', 'tape_uk', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (Germany)', 'tape_de', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (France)', 'tape_fr', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (Netherlands)', 'tape_nl', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (Australia)', 'tape_aus', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (Poland)', 'tape_pol', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (Spain)', 'tape_sp', 0, 0, 1);
INSERT INTO
`items` (`name`, `label`, `weight`, `rare`, `can_remove`)
VALUES
('Police Tape (General)', 'tape_general', 0, 0, 1);
Add the following items to your qb-core/shared/items.lua
file:
['Police Tape (USA)'] = {
['name'] = 'Police Tape (USA)',
['label'] = 'tape_usa',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (USA).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (UK)'] = {
['name'] = 'Police Tape (UK)',
['label'] = 'tape_uk',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (UK).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (Germany)'] = {
['name'] = 'Police Tape (Germany)',
['label'] = 'tape_de',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (Germany).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (France)'] = {
['name'] = 'Police Tape (France)',
['label'] = 'tape_fr',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (France).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (Netherlands)'] = {
['name'] = 'Police Tape (Netherlands)',
['label'] = 'tape_nl',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (Netherlands).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (Australia)'] = {
['name'] = 'Police Tape (Australia)',
['label'] = 'tape_aus',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (Australia).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (Poland)'] = {
['name'] = 'Police Tape (Poland)',
['label'] = 'tape_pol',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (Poland).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (Spain)'] = {
['name'] = 'Police Tape (Spain)',
['label'] = 'tape_sp',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (Spain).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},
['Police Tape (General)'] = {
['name'] = 'Police Tape (General)',
['label'] = 'tape_general',
['weight'] = 100,
['type'] = 'item',
['image'] = 'Police Tape (General).png',
['unique'] = false,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
},