Dev Tools
Vscode Extensions

How to Use

ℹ️

This repository provides a wide range of opinionated code snippets to streamline your development process with the FiveM QBCore framework.

Key Features

Tab Completion available for all required fields!

Client-side Snippets: Includes snippets for creating client-side events, registering commands, and more.

Server-side Snippets: Offers snippets for server-side events, database interactions, and other server-related functionality.

Shared Snippets: Provides snippets for shared code that can be used on both the client and server sides.

Utility Snippets: Includes snippets for common utility functions, such as vector math, string manipulation, and more.

Localization Snippets: Offers snippets for handling localization and multi-language support.

Customizable: You can easily modify and extend the snippets to suit your specific project requirements.

By using these code snippets, you can save time and increase your productivity while working with the FiveM QBCore framework.

Simple

local Player = QBCore.Functions.GetPlayer(source)

Medium

QBCore.Functions.Progressbar('name', 'Text that shows in bar', 5000, false, true, { -- Name | Label | Time | useWhileDead | canCancel
    disableMovement = true,
    disableCarMovement = true,
    disableMouse = false,
    disableCombat = true,
}, {
    animDict = 'anim@gangops@facility@servers@',
    anim = 'hotwire',
    flags = 16,
}, {}, {}, function() -- Play When Done
    --Stuff goes here
end, function() -- Play When Cancel
    --Stuff goes here
end)

Or for a quick starter on a fresh script

local QBCore = exports['qb-core']:GetCoreObject()
local PlayerData = QBCore.Functions.GetPlayerData()
local isLoggedIn = LocalPlayer.state.isLoggedIn
ℹ️

If you are using the okokTextUI library, you can use the following code to easily replace your qb-core/client/drawtext.lua file with the below code and use the drawText function but get a okok textUI instead.

local isOpen = false
local function hideText()
    if isOpen then
        exports['okokTextUI']:Close()
        isOpen = false
    else
        return
    end
end
 
local function drawText(text, position)
    if type(position) ~= "string" then position = "left" end
    if not isOpen then
        exports['okokTextUI']:Open(text, 'darkblue', 'left')
        isOpen = true
    else
        return
    end
end
 
local function changeText(text, position)
    if type(position) ~= "string" then position = "left" end
    if isOpen then
        exports['okokTextUI']:Close()
        exports['okokTextUI']:Open(text, 'darkblue', 'left')
    else
        return
    end
end
 
local function keyPressed()
    CreateThread(function()
        SendNUIMessage({
            action = 'KEY_PRESSED',
        })
        Wait(500)
        hideText()
    end)
end
 
RegisterNetEvent('qb-core:client:DrawText', function(text, position)
    if not isOpen then
        exports['okokTextUI']:Open(text, 'darkblue', 'left')
        isOpen = true
    else
        return
    end
end)
 
RegisterNetEvent('qb-core:client:ChangeText', function(text, position)
    if isOpen then
        exports['okokTextUI']:Close()
        exports['okokTextUI']:Open(text, 'darkblue', 'left')
    else
        return
    end
end)
 
RegisterNetEvent('qb-core:client:HideText', function()
    if isOpen then
        exports['okokTextUI']:Close()
        isOpen = false
    else
        return
    end
end)
 
RegisterNetEvent('qb-core:client:KeyPressed', function()
    keyPressed()
end)
 
exports('DrawText', drawText)
exports('ChangeText', changeText)
exports('HideText', hideText)
exports('KeyPressed', keyPressed)