forked from qbcore-redm-framework/qbr-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fxmanifest.lua
52 lines (44 loc) · 968 Bytes
/
fxmanifest.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
fx_version 'cerulean'
game 'rdr3'
rdr3_warning 'I acknowledge that this is a prerelease build of RedM, and I am aware my resources *will* become incompatible once RedM ships.'
description 'QBCore RedM Edition'
version '1.0.2'
shared_scripts {
'shared/locale.lua',
'locale/en.lua', -- replace with desired language
'config.lua',
'shared/main.lua',
'shared/items.lua',
'shared/jobs.lua',
'shared/horse.lua',
'shared/vehicles.lua',
'shared/gangs.lua',
'shared/weapons.lua'
}
client_scripts {
'client/functions.lua',
'client/loops.lua',
'client/events.lua',
'client/notify.js',
'client/drawtxt.lua',
'client/prompts.lua'
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/debug.lua',
'server/functions.lua',
'server/player.lua',
'server/events.lua',
'server/commands.lua',
'server/exports.lua'
}
ui_page 'html/index.html'
files {
'html/index.html',
'html/script.js',
'html/style.css'
}
dependencies {
'oxmysql',
}
lua54 'yes'