-
Notifications
You must be signed in to change notification settings - Fork 4
/
fxmanifest.lua
48 lines (42 loc) · 1.14 KB
/
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
fx_version 'cerulean'
games { '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.'
lua54 'yes'
description 'The Character service for the Feather Framework'
author 'Feather @Jannings'
name 'feather-character'
version '0.0.4'
github_version_check 'true'
github_version_type 'release'
github_ui_check 'false'
github_link 'https://github.com/FeatherFramework/feather-character'
shared_scripts {
'config.lua',
'shared/imports.lua',
'locale/*.lua',
'shared/data/setup.lua',
'shared/data/general.lua',
'shared/data/clothing.lua',
'shared/data/attributes.lua',
'shared/data/features.lua',
'shared/data/hair.lua'
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'server/imports.lua',
'server/controllers/*.lua',
'server/services/*.lua'
}
client_scripts {
'@feather-core/shared/services/dataview.lua',
'client/imports.lua',
'client/helpers/*.lua',
'client/services/*.lua',
'client/main.lua',
'client/services/character/*.lua'
}
dependencies {
'oxmysql',
'feather-menu',
'feather-core'
}