Inventory Items
Use these configurations to prepare your inventory for the Sky Police Job script.
['cctvcam'] = {
label = 'CCTV Camera',
weight = 2500,
stack = true,
close = true,
description = 'Portable CCTV camera for surveillance'
},
['speedcam'] = {
label = 'Speed Camera',
weight = 2500,
stack = true,
close = true,
description = 'Deployable speed camera'
},
['gps_tracker'] = {
label = 'GPS Tracker',
weight = 200,
stack = true,
close = true,
description = 'Tracker for monitoring vehicle location'
},
['ankle_monitor'] = {
label = 'Ankle Monitor',
weight = 300,
stack = true,
close = true,
description = 'Electronic ankle monitor'
},
['wheelclamp'] = {
label = 'Wheel Clamp',
weight = 4000,
stack = false,
close = true,
description = 'Clamp to immobilize a vehicle'
},
['welder'] = {
label = 'Welder',
weight = 1800,
stack = false,
close = true,
description = 'Tool used for repair work'
},
['fixtool'] = {
label = 'Fix Tool',
weight = 1200,
stack = false,
close = true,
description = 'Repair kit for damaged equipment'
},
['cleaning_alcohol'] = {
label = 'Cleaning Alcohol',
weight = 250,
stack = true,
close = true,
description = 'Alcohol solution used for cleaning'
},
['code_list'] = {
label = 'Code List',
weight = 50,
stack = true,
close = true,
description = 'Reference list of operation codes'
},
['wire_cutter'] = {
label = 'Wire Cutter',
weight = 800,
stack = true,
close = true,
description = 'Tool used to cut wires'
},
['cigarette'] = {
label = 'Cigarette',
weight = 20,
stack = true,
close = true,
description = 'Prison trade item'
},
['cctvcam'] = {
['name'] = 'cctvcam',
['label'] = 'CCTV Camera',
['weight'] = 5,
['type'] = 'item',
['image'] = 'cctvcam.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Portable CCTV camera'
},
['speedcam'] = {
['name'] = 'speedcam',
['label'] = 'Speed Camera',
['weight'] = 5,
['type'] = 'item',
['image'] = 'speedcam.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Deployable speed camera'
},
['gps_tracker'] = {
['name'] = 'gps_tracker',
['label'] = 'GPS Tracker',
['weight'] = 1,
['type'] = 'item',
['image'] = 'gps_tracker.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'GPS tracker'
},
['ankle_monitor'] = {
['name'] = 'ankle_monitor',
['label'] = 'Ankle Monitor',
['weight'] = 1,
['type'] = 'item',
['image'] = 'ankle_monitor.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Electronic ankle monitor'
},
['wheelclamp'] = {
['name'] = 'wheelclamp',
['label'] = 'Wheel Clamp',
['weight'] = 20,
['type'] = 'item',
['image'] = 'wheelclamp.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Wheel clamp'
},
['welder'] = {
['name'] = 'welder',
['label'] = 'Welder',
['weight'] = 10,
['type'] = 'item',
['image'] = 'welder.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Welder'
},
['fixtool'] = {
['name'] = 'fixtool',
['label'] = 'Fix Tool',
['weight'] = 7,
['type'] = 'item',
['image'] = 'fixtool.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Repair tool'
},
['cleaning_alcohol'] = {
['name'] = 'cleaning_alcohol',
['label'] = 'Cleaning Alcohol',
['weight'] = 1,
['type'] = 'item',
['image'] = 'cleaning_alcohol.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Cleaning alcohol'
},
['code_list'] = {
['name'] = 'code_list',
['label'] = 'Code List',
['weight'] = 1,
['type'] = 'item',
['image'] = 'code_list.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Code list'
},
['wire_cutter'] = {
['name'] = 'wire_cutter',
['label'] = 'Wire Cutter',
['weight'] = 3,
['type'] = 'item',
['image'] = 'wire_cutter.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = true,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Wire cutter'
},
['cigarette'] = {
['name'] = 'cigarette',
['label'] = 'Cigarette',
['weight'] = 1,
['type'] = 'item',
['image'] = 'cigarette.png',
['unique'] = false,
['rare'] = 'common', -- common, epic, legendary
['useable'] = false,
['shouldClose'] = true,
['combinable'] = true,
['description'] = 'Prison trade item'
},
Support
Need help? Our support team is always ready to assist
Join DiscordExports
Reference for the ambulance job exports and radial menu actions.
Introduction
sky_base is a crucial component for all Sky-Systems scripts, designed to enhance performance, streamline configuration, and provide a unified framework for easier management. This guide will introduce you to sky_base and walk you through its configuration and use.
