Lorraxs
2b8448e1be
deleted: main.obf.lua new file: server/utils.lua modified: web/public/assets/bg.png modified: web/src/types/redux.type.ts modified: web/src/utils/fetchNui.ts modified: web/src/utils/misc.ts
47 lines
625 B
Lua
47 lines
625 B
Lua
fx_version "cerulean"
|
|
|
|
description "Small script for FiveM"
|
|
author "Lorraxs"
|
|
version '1.0.0'
|
|
repository 'https://github.com/Lorraxs/lr_addon'
|
|
|
|
dependencies {
|
|
'/server:6116',
|
|
'/onesync',
|
|
'oxmysql',
|
|
'ox_lib',
|
|
}
|
|
|
|
lua54 'yes'
|
|
|
|
games {
|
|
"gta5",
|
|
"rdr3"
|
|
}
|
|
|
|
files {
|
|
'web/build/index.html',
|
|
'web/build/**/*',
|
|
}
|
|
ui_page 'web/build/index.html'
|
|
|
|
shared_scripts {
|
|
'@ox_lib/init.lua',
|
|
"config.lua",
|
|
"main.lua",
|
|
"impl.lua",
|
|
}
|
|
|
|
|
|
client_scripts {
|
|
"client/utils.lua",
|
|
"client/classes/*",
|
|
"client/impl/*"
|
|
}
|
|
server_script {
|
|
"server/utils.lua",
|
|
'@oxmysql/lib/MySQL.lua',
|
|
"server/classes/*",
|
|
"server/impl/*"
|
|
}
|