Integration

This is an entire page on what you can integrate with


Minigames

By default we use ox_lib for the minigame however in the DHS-PettyCrime/client/editable_functions_cl.lua you can edit this to match whatever you want

function RemoveRadioMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function RemoveSeatBeltMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function RemoveAirBagMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function RemoveBatteryMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function RemoveCatalyticConverterMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function ACUnitStealingMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function LockpickRegisterMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function HackAlarmSystemMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function LockpickDoorMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

function AlternatePickpocketMinigame()
    local success = lib.skillCheck({'easy',"easy",'easy'},{"w","a","s","d"})
    return success
end

Dispatch Functions

By default we use the qbcore built in system however we have support for all systems if you want to integrate it! in the DHS-PettyCrime/client/functions.lua


Fuel System

We support a wide variety of fuel scripts out the box however if you dont find yours you may add it.


Last updated