💻Installation

Dependencies
Installing the resource
Make sure you have the dependencies listed above installed.
Extract the contents of the archive to your resources folder.
Add item to ox_inventory/data/items.lua.
['pacificard'] = { label = 'Pacific Security Card', stack = false, weight = 10, client = { image = 'pacificard.png' } }, ['pacifichackdevice'] = { label = 'Pacific Hack Device', stack = false, weight = 10, client = { image = 'pacifichackdevice.png' } }, ['pacificofficekeys'] = { label = 'Keys', stack = false, weight = 10, client = { image = 'keys.png' } }, ['cd'] = { label = 'cd', stack = false, weight = 10, client = { image = 'cd.png' } }, ['pacificdowncard'] = { label = 'Security Card', stack = false, weight = 10, client = { image = 'pacificdowncard.png' } }, ['nightvision'] = { label = 'Night Vision', stack = false, weight = 10, client = { image = 'nightvision.png' } }, ['arm'] = { label = 'Security Arm', stack = false, weight = 10, client = { image = 'arm.png' } }, ['trolley'] = { label = 'Trolley Arm', stack = false, weight = 10, client = { image = 'trolley.png' } }, ['diamond'] = { label = 'Diamond', stack = false, weight = 10, client = { image = 'diamond.png' } }, ['cashcase'] = { label = 'Cash Case', stack = false, weight = 10, client = { image = 'cashcase.png' } }, ['drill'] = { label = 'Drill', stack = false, weight = 10, client = { image = 'drill.png' } },
Also Add these into ox_inventory\modules\items\client.lua:
Item('nightvision', function(data, slot)
TriggerEvent("zat-pacificrobbery:client:ToggleNV")
end)
Item('trolley', function(data, slot)
local model = "hei_prop_hei_warehousetrolly"
TriggerEvent("zat-pacificrobbery:client:PlaceTrolley", model)
end)
If you want the alarm sound and sound effects :
Download interact-sound from Github.
Addthe .ogg files inside [sounds] into interact-sound\client\html\sounds.
Add the images inside your inventory/html/images.
Doorlocks :
QB : add the zat-pacificrobbery.lua into qb-doorlock\configs
OX : add the SQL into ox_doorlock TABLE
IMPORTANT : Change the IDs to avoid duplicated door IDS
Ensure zat-pacificrobbery.
Last updated