-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfxmanifest.lua
70 lines (53 loc) · 1.31 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
fx_version 'cerulean'
game 'gta5'
use_fxv2_oal 'yes'
lua54 'yes'
name 'atl-core'
author 'Atlas Framework Developers'
version '0.0.1'
repository 'https://github.com/AtlasFw/atl-core'
shared_scripts {
'data/config/shared.lua',
'data/locale.lua',
}
client_scripts {
'data/appearance.lua',
'data/config/client.lua',
'client/main.lua',
'client/functions/callbacks.lua',
'client/functions/request.lua',
'client/functions/blip.lua',
'client/functions/anim.lua',
'client/functions/pool.lua',
'client/events/vehicle.lua',
-- Holds all the functions relating to the player
'client/export.lua',
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'data/config/server.lua',
'data/jobs.lua',
'server/main.lua',
'server/classes/player.lua',
'server/functions/logs.lua',
'server/functions/helpers.lua',
'server/functions/players.lua',
'server/functions/entities.lua',
'server/functions/callbacks.lua',
'server/events/player.lua',
'server/events/character.lua',
'server/others/version.lua',
'server/others/commands.lua',
-- Holds all the functions relating to the player
'server/export.lua',
}
files {
-- Our import file
'import.lua',
'data/locales/*.lua',
}
dependencies {
'/onesync',
'oxmysql',
}
provide 'core' -- Instead of saying 'stop atl-core', you can just say 'stop core'