lr_boilerplate/fxmanifest.lua

47 lines
628 B
Lua
Raw Normal View History

2023-12-05 13:55:38 +07:00
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"
}
2023-12-11 13:59:38 +07:00
files {
'web/build/index.html',
'web/build/**/*',
}
ui_page 'web/build/index.html'
2023-12-05 13:55:38 +07:00
shared_scripts {
'@ox_lib/init.lua',
2023-12-11 14:13:07 +07:00
--[[ '@es_extended/imports.lua', ]]
2023-12-10 04:48:31 +07:00
"config.lua",
2023-12-05 13:55:38 +07:00
"main.lua",
"impl.lua",
}
2023-12-10 04:48:31 +07:00
--[[ client_scripts {
2023-12-05 13:55:38 +07:00
"client/classes/*",
"client/impl/*"
2023-12-10 04:48:31 +07:00
} ]]
2023-12-05 13:55:38 +07:00
server_script {
'@oxmysql/lib/MySQL.lua',
"server/classes/*",
"server/impl/*"
}