mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-28 17:01:16 +00:00
47 lines
690 B
Lua
47 lines
690 B
Lua
fx_version 'cerulean'
|
|
game 'gta5'
|
|
|
|
description 'QB-Core'
|
|
version '1.1.0'
|
|
|
|
shared_scripts {
|
|
'shared/*.lua',
|
|
'config.lua',
|
|
'locale/en.lua' -- replace with desired language
|
|
}
|
|
|
|
client_scripts {
|
|
'client/main.lua',
|
|
'client/functions.lua',
|
|
'client/loops.lua',
|
|
'client/events.lua',
|
|
'client/drawtext.lua'
|
|
}
|
|
|
|
server_scripts {
|
|
'@oxmysql/lib/MySQL.lua',
|
|
'server/main.lua',
|
|
'server/functions.lua',
|
|
'server/player.lua',
|
|
'server/events.lua',
|
|
'server/commands.lua',
|
|
'server/exports.lua',
|
|
'server/debug.lua'
|
|
}
|
|
|
|
ui_page 'html/index.html'
|
|
|
|
files {
|
|
'html/index.html',
|
|
'html/css/style.css',
|
|
'html/css/drawtext.css',
|
|
'html/js/*.js'
|
|
}
|
|
|
|
dependencies {
|
|
'oxmysql',
|
|
'progressbar'
|
|
}
|
|
|
|
lua54 'yes'
|