Files
qb-core-qbcore-fivem/fxmanifest.lua
T
Taso c900b99f86 chore(lua54): utilize Lua version 5.4 runtime
This version includes improved changes to GC, better pseudo-randomness with `math.random()` (no longer requiring a seed to display even an ounce of randomness), and `const` keyword for all the immutable fellas out there.
2021-07-27 11:09:41 -04:00

48 lines
617 B
Lua

fx_version 'cerulean'
game 'gta5'
description 'QB-Core'
version '1.0.0'
shared_scripts {
'import.lua',
'config.lua',
'shared.lua'
}
client_scripts {
'client/main.lua',
'client/functions.lua',
'client/loops.lua',
'client/events.lua',
'client/debug.lua'
}
server_scripts {
'server/main.lua',
'server/functions.lua',
'server/loops.lua',
'server/player.lua',
'server/events.lua',
'server/commands.lua',
'server/debug.lua'
}
ui_page {
'html/ui.html'
}
lua54 'yes'
files {
'html/ui.html',
'html/css/main.css',
'html/js/app.js'
}
dependencies {
'progressbar',
'connectqueue',
'ghmattimysql'
}