☁️
filo studios
search
⌘Ctrlk
StoreDiscord
☁️
filo studios
  • cloudwelcome
  • circle-exclamationcommon escrow errors
  • ✦ paid releases
    • ✧ filo_vehiclekey
      • installation & configuration
        • dependencies & minigames
        • configuration
        • esx
        • qb & qbx
        • jg-advancedgarages
      • exports, commands, and events
    • ✧ filo_damage
  • ✦︎ free releases
gitbookPowered by GitBook
block-quoteOn this pagechevron-down
  1. ✦ paid releaseschevron-right
  2. ✧ filo_vehiclekeychevron-right
  3. installation & configuration

dependencies & minigames

hashtag
Dependencies

LogoGitHub - overextended/ox_lib: A FiveM resource and script library for Lua and JS.GitHubchevron-right
LogoGitHub - overextended/oxmysql: MySQL resource for FXServer.GitHubchevron-right

hashtag
MLO Used

Logo[FREE] Locksmith MLOCfx.re Communitychevron-right

hashtag
Minigames

LogoGitHub - T3development/t3_lockpickGitHubchevron-right
LogoGitHub - EZ-Scripts/ez_electricminigameGitHubchevron-right

If you wanna use a different set of minigames edit ./shared/functions.lua

Last updated 11 months ago

  • Dependencies
  • MLO Used
  • Minigames
filo_vehiclekey/shared/functions.lua
function Lockpick(isAdvanced)
    local lockpickStr = isAdvanced and 0.75 or 0.5

    if GetResourceState("filo_skills"):find("start") then
        local skills = exports.filo_skills
        if skills:HasLevel("Lockpicking", 2, 4) then
            lockpickStr = lockpickStr + 0.02
        elseif skills:HasLevel("Lockpicking", 4, 6) then
            lockpickStr = lockpickStr + 0.05
        elseif skills:HasLevel("Lockpicking", 6, 8) then
            lockpickStr = lockpickStr + 0.09
        elseif skills:HasLevel("Lockpicking", 8, 10) then
            lockpickStr = lockpickStr + 0.1
        end

    end
    return exports.t3_lockpick:startLockpick(lockpickStr)
end

function Hotwire()
    return exports.ez_electricminigame:WiringFix(30)
end