Files
qb-core-qbcore-fivem/fxmanifest.lua
T
Kakarot be4f57410b feat(html): New Notify System
-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)
2021-09-28 23:39:11 -06:00

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'