mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 17:28:56 +00:00
be4f57410b
-Replaces old notification system but is also backwards compatible so no changes necessary - Now allows for the use of sending a table with text and caption - Can add as many types of notifications as wanted/needed - Configure position and icons in app,js (google icons or fontawesome)
41 lines
532 B
Lua
41 lines
532 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'
|
|
}
|
|
|
|
server_scripts {
|
|
'server/main.lua',
|
|
'server/functions.lua',
|
|
'server/player.lua',
|
|
'server/events.lua',
|
|
'server/commands.lua',
|
|
'server/debug.lua'
|
|
}
|
|
|
|
ui_page 'html/index.html'
|
|
|
|
files {
|
|
'html/index.html',
|
|
'html/app.js'
|
|
}
|
|
|
|
dependencies {
|
|
'progressbar',
|
|
'connectqueue'
|
|
}
|
|
|
|
lua54 'yes' |